[PHP] Stored procedures in Mysql

2004-09-30 Thread Sagar C Nannapaneni
Hi folks, I wonder whether Mysql supports procedures and triggers :? /sagar

Re: [PHP] Stored procedures in Mysql

2004-09-30 Thread Jason Davidson
I suppose if you are thinking that mysql and zend may have collaborated to make stored procedures available in veriosn 5, then i suppose this is on topic.. otherwise, check the mysql list. Jason Sagar C Nannapaneni [EMAIL PROTECTED] wrote: Hi folks, I wonder whether Mysql supports

[PHP] RE: **[SPAM]** [PHP] Stored procedures in Mysql

2004-09-30 Thread Jay Blanchard
[snip] I wonder whether Mysql supports procedures and triggers [/snip] I wonder if people RTFM or STFW any more? http://dev.mysql.com/doc/mysql/en/ANSI_diff_Triggers.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Stored procedures in Mysql

2004-09-30 Thread Gareth Williams
Not Really. On 30 Sep 2004, at 21:50, Sagar C Nannapaneni wrote: Hi folks, I wonder whether Mysql supports procedures and triggers :? /sagar -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Stored procedures in Mysql

2004-09-30 Thread Ed Lazor
-Original Message- Not Really. Are you sure? http://dev.mysql.com/doc/mysql/en/Stored_Procedures.html On 30 Sep 2004, at 21:50, Sagar C Nannapaneni wrote: Hi folks, I wonder whether Mysql supports procedures and triggers :? /sagar -- PHP General Mailing

Re: [PHP] Stored procedures in Mysql

2004-09-30 Thread Marek Kilimajer
Ed Lazor wrote: -Original Message- Not Really. Are you sure? http://dev.mysql.com/doc/mysql/en/Stored_Procedures.html snip Stored procedures and functions are a new feature in MySQL version 5.0. /snip That means you can only experiment with them, not realy use them in your projects. --

Re: [PHP] Stored procedures in Mysql

2004-09-30 Thread Gareth Williams
Well, if you are running you own server at home, or have a dedicated server, you can install your own MySQL server, and use version 5, which has all this, but if you have a shared space, then you are probably running version 4.whatever, and don't have them. That's why I said not really,

RE: [PHP] Stored Procedures

2002-07-05 Thread Lazor, Ed
I have no idea of how to create postgres stored procedures, but a search on Google brought up a lot of information that you might find helpful: http://www.google.com/search?hl=enie=UTF-8oe=UTF-8q=postgre+stored+proced ure You can also visit their web site at http://www.postgresql.org

Re: [PHP] Stored Procedures

2002-07-05 Thread B i g D o g
Try http://techdocs.postgresql.org or techdoc.postgresql.org B i g D o g - Original Message - From: David Busby [EMAIL PROTECTED] To: php-general [EMAIL PROTECTED] Sent: Friday, July 05, 2002 1:30 PM Subject: [PHP] Stored Procedures List, I'm using a postgres datbase for my PHP

Re: [PHP] Stored Procedures + Answer

2002-07-05 Thread David Busby
List, I read the documentation on postgres site (http://techdocs.postgres.sql) and then also the Google search and came up with this: The way PostgreSQL usees stored procedures is like this: A stored procedure is really a function It just does more...like INSERT/UPDATE/DELETE, multiple

Re: [PHP] Stored Procedures + Answer

2002-07-05 Thread B i g D o g
... B i g D o g - Original Message - From: David Busby [EMAIL PROTECTED] To: php-general [EMAIL PROTECTED] Sent: Friday, July 05, 2002 2:16 PM Subject: Re: [PHP] Stored Procedures + Answer List, I read the documentation on postgres site (http://techdocs.postgres.sql) and then also

Re: [PHP] Stored Procedures

2002-07-05 Thread Alberto Serra
David Busby wrote: List, I'm using a postgres datbase for my PHP project, how do I make stored procedures? Or if no SPs then what would be recomendation for building simple/reuseable Put and Get procedures for my data? /B ðÒÉ×ÅÔ! Stored procedures ARE much better, (I have a