Jump to content

prepared queries recommendation


Cardale

Recommended Posts

How many queries should I limit myself to preparing?  Is there any overhead I should be worried about?  Do the prepared queries only stay "prepared" for one session or does it stay prepared as long as the server hasn't restarted?

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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/

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.