Hello,
First off, im an intern not a fultime programmer...
Well anyhow, i wrote some code with the typical use of an sql string. The string has data from the user in it. I know this has a threat of sql injection. I was told to use sql commands. But, as far as i knew that was a .NET feature. Could someone tell me how this is done in 3.0?
'Current code
Strsql= "my sql statement +" & userdata & "'"
Set rs_admin=Conn.Execute(strsql)
First off, im an intern not a fultime programmer...
Well anyhow, i wrote some code with the typical use of an sql string. The string has data from the user in it. I know this has a threat of sql injection. I was told to use sql commands. But, as far as i knew that was a .NET feature. Could someone tell me how this is done in 3.0?
'Current code
Strsql= "my sql statement +" & userdata & "'"
Set rs_admin=Conn.Execute(strsql)