check data availability
-
hi all, am new to C# programming and i got a little problem. i made a windows application form used for login to another form, it has "username" & "password" text boxes. it's connected to an Access database which stores the authorized usernames & passwords, so what i want is when the user clicks the "login" button..the program should check the user input whether it's found in the database, then it can tell user "access granted" or "access denied". thnx in advance
-
hi all, am new to C# programming and i got a little problem. i made a windows application form used for login to another form, it has "username" & "password" text boxes. it's connected to an Access database which stores the authorized usernames & passwords, so what i want is when the user clicks the "login" button..the program should check the user input whether it's found in the database, then it can tell user "access granted" or "access denied". thnx in advance
Hi there, Did you know how to connect to Access DB? if so, you just make an sql query to check if the user's input is valid or not... << >>
-
Hi there, Did you know how to connect to Access DB? if so, you just make an sql query to check if the user's input is valid or not... << >>
yes i made the connection already.....so how can i make this sql query to check for data existence in table ?!
-
yes i made the connection already.....so how can i make this sql query to check for data existence in table ?!
you just build an simple SELECT sql query...For this, you can refer from SQL Book Online which installed along with MS SQL. << >>