Does ADOdb do data sanitation or escaping within the same functionality by default? Or am I just confusing it with Code Igniter\'s built-in processes?
Does binding v
Correct - bound parameters are not vulnerable to SQL injection attacks.
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: