Is there any issue with always preparing SQL statements with PHP instead of executing them directly?
Not sure if database system matters, but it's DB2 on System i.
|
Is there any issue with always preparing SQL statements with PHP instead of executing them directly? Not sure if database system matters, but it's DB2 on System i. |
||||
|
|
|
You might take a slight performance hit, if they are real prepared statements and not just emulated in the driver. This is because you will have to make two calls to the database, rather than just one. |
|||
|
|