vote up 1 vote down star

does binding variables to parameters in ADOdb for PHP prevent SQL injection in any way? I thought ADOdb also did data sanitation or escaping within the same functionality by default. Or am I just confusing it with Code Igniter's built-in processes?

flag

3 Answers

vote up 1 vote down check

Correct - bound parameters are not vulnerable to SQL injection attacks.

link|flag
vote up 1 vote down

yes, you pass the array of parameters.

$rs = $db->Execute('select * from table where val=?', array('10'));

Rest of their docs can be found here,
http://adodb.sourceforge.net/#docs

link|flag
vote up 0 vote down

Thanks, I've been using them for a while and over the weekend a client came to me in a panic saying I was not validating data before processing and they didn't believe me that ADOdb was doing it for me.

Granted the extra level of security wouldn't hurt.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.