I'm looking for the alternative of mysql_real_escape_string() for MSSQL. Is addslashes() my best option or there is another alternative function that can be used?
Edit: Alternative for mysql_error() would also be useful.
|
I'm looking for the alternative of Edit: Alternative for
| ||||
|
feedback
|
|
Abstracted, that would be:
| |||||||||||||||
feedback
|
Some of the code here was ripped off from CodeIgniter. Works well and is a clean solution. | |||||||||||||||||
feedback
|
|
You could look into the PDO Library. You can use prepared statements with PDO, which will automatically escape any bad characters in your strings if you do the prepared statements correctly. This is for PHP 5 only I think. | |||||||||||
feedback
|
|
i know, litle bit late, but answer from 'Feb 22 '09 at 12:10' by chaos isn`t fit all queries. E.g: "CREATE LOGIN [0x6f6c6f6c6f] FROM WINDOWS" will give you exception p.s. look at mssql driver for php, http://msdn.microsoft.com/library/cc296181%28v=sql.90%29.aspx and sqlsrv_prepare function, which can binds params. p.s.s. which also didn`t helps you with query above ;) | |||
|
feedback
|
|
You could roll your own version of | |||
|
feedback
|