Jump to content

prepared queries recommendation


Cardale

Recommended Posts

You can create stored procedures/functions which pretty much have the same advantages.

 

The main point of prepared statements in web application is to avoid SQL injections. For desktop type application they can also bring some performance benefit.

How so? The SQL is precompiled so the queries can't be broken.

 

You still have the problem of passing the procedure call to the database server along with the user input, and if you generate a query by concatenating strings in the stored procedure, you are back to the original problem. A quick search on Google and some MS SQL stuff: http://palisade.plynt.com/issues/2006Jun/injection-stored-procedures/

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.