Re: [PERFORM] Stored procedures

2006-01-20 Thread Rikard Pavelic
Hi, Will simple queries such as SELECT * FROM blah_table WHERE tag='x'; work any faster by putting them into a stored procedure? IMHO no, why do you think so? You can use PREPARE instead, if you have many selects like this. I tought that creating stored procedures in database means

[PERFORM] Stored Procedures

2006-01-19 Thread Benjamin Arai
Hi, Will simple queries such as "SELECT * FROM blah_table WHERE tag='x'; work any faster by putting them into a stored procedure? Benjamin Arai [EMAIL PROTECTED] http://www.benjaminarai.com

Re: [PERFORM] Stored Procedures

2006-01-19 Thread Andreas Kretschmer
Benjamin Arai [EMAIL PROTECTED] schrieb: Hi, Will simple queries such as SELECT * FROM blah_table WHERE tag='x'; work any faster by putting them into a stored procedure? IMHO no, why do you think so? You can use PREPARE instead, if you have many selects like this. HTH, Andreas --