RE: [PHP-DB] Google Code Search

2006-10-11 Thread Ankur Dave
Another list for code search. Good then google. http://www.koders.com/ http://www.bigbold.com/snippets/ http://www.krugle.com/ 10x, Ankur Dave -Original Message- From: Philipp Schwarz [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 11, 2006 12:30 PM To:

[PHP-DB] Oracle Stored Procedures

2006-10-11 Thread David Skyers
Hi, Can anyone help. I'm trying to access an out parameter from an Oracle Stored Procedure. But I get the following message. I think it might have something to do with the configuration of our server but I'm not sure. Warning: ociexecute(): OCIStmtExecute: ORA-06550: line 1, column 20:

[PHP-DB] EXISTS syntax for SELECT INTO?

2006-10-11 Thread Tony Grimes
I have a script that creates a table copy using SELECT INTO, but I want it to check if the new table already exists first. Does SQL support the EXISTS keyword for SELECT INTO statements (I'm running PG7)? If not, is there another way to do it in SQL? I'd rather not do it programmatically. Thanks

Re: [PHP-DB] Oracle Stored Procedures

2006-10-11 Thread Chris
PLS-00553: character set name is not recognized ORA-06550: line 0, The error message gives you a lot of detail. Does this work ok if you don't do it through php but directly through oracle? -- Postgresql php tutorials http://www.designmagick.com/ -- PHP Database Mailing List

Re: [PHP-DB] EXISTS syntax for SELECT INTO?

2006-10-11 Thread Chris
Tony Grimes wrote: I have a script that creates a table copy using SELECT INTO, but I want it to check if the new table already exists first. Does SQL support the EXISTS keyword for SELECT INTO statements (I'm running PG7)? If not, is there another way to do it in SQL? I'd rather not do it