Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

hi to all,

 

I'm currently workin in a aplication that is requires user autentication. I'm 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 it's 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 it's new password, the password is encripted and a query is submited, like the example below

 

UPDATE Utilizadores SET User_password='.w\"2H�XՏ,1\0#~@�MV_KTF�*uX�lhN[*\tЭ#\aE', 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étodo: ExecuteNonQuery\r\n" + ex.ToString(), "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error);

return -2;

}

}

[/csharp]

 

 

it's here that i get the error.

System.Data.Odbc.OdbcException:ERROR[42000][Microsoft][ODBC Microsoft Access Driver] Syntax error in string query expression ''.w\"2H�XՏ,1'

 

The stange thing is the if i run the exact same query directly in access the query returns no error.

 

Can anybody help?

Posted

Somehow it seems like the ODBC-driver thinks the string ends at \0. Could it be that it treats those two characters as end of string delimiters?

If I were you I'd use a parameterized query instead of what seems like a concatenated statement.

There are lot's of threads here about parameterized queries

 

HTH

/Kejpa

Posted

I have had the same thing happen to me

 

What I do now is scrub my encryptions and force normal letters and numbers onto them

 

It might seem less secure and, in fact, it is, but there can come a day when you want to write your program into a Web app, and a minor inconvenience becomes a major heartache

Read the Fovean Chronicles

Because you just can't spend your whole day programming!

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...