rfazendeiro
Well-known member
- Joined
- Mar 8, 2004
- Messages
- 110
hi to all,
Im currently workin in a aplication that is requires user autentication. Im using vs 2003 and access.
Now when i run my app the login form shows up for the user to input its username and password. If its the first time that the user is loging in (the password is blank) a form shows up to allow the user to change his password.
When the user submits its new password, the password is encripted and a query is submited, like the example below
to execute the query i use the following code
[csharp]
public static int ExecuteNonQuery(string query)
{
OdbcConnection cs;
OdbcCommand cmd;
try
{
cs = OdbcConnection connection = new OdbcConnection("APP");
cmd = new OdbcCommand(query, cs);
cs.Open();
cmd.ExecuteNonQuery();
cs.Close();
return 0;
}
catch(OdbcException ex)
{
MessageBox.Show("M
Im currently workin in a aplication that is requires user autentication. Im using vs 2003 and access.
Now when i run my app the login form shows up for the user to input its username and password. If its the first time that the user is loging in (the password is blank) a form shows up to allow the user to change his password.
When the user submits its new password, the password is encripted and a query is submited, like the example below
Code:
UPDATE Utilizadores SET User_password=.w\"2HXՏ,1\0#~@MV_KTF*uXlhN[*\tЭ#\aE, User_reset=0 where User_id=1
to execute the query i use the following code
[csharp]
public static int ExecuteNonQuery(string query)
{
OdbcConnection cs;
OdbcCommand cmd;
try
{
cs = OdbcConnection connection = new OdbcConnection("APP");
cmd = new OdbcCommand(query, cs);
cs.Open();
cmd.ExecuteNonQuery();
cs.Close();
return 0;
}
catch(OdbcException ex)
{
MessageBox.Show("M