Re: [PHP-DB] CLOB-load() error (OCI8 against Oracle 10G )

2005-11-10 Thread Script This
okso as i put together a small testcase of this problem using the same table and all of the same code except the code between while (ocifetchinto()) { and } , the testcase worked. looks like we have a problem with a shallow copy of the clob occurring somewhere in our database class in the

Re: [PHP-DB] CLOB-load() error (OCI8 against Oracle 10G ) More Detail

2005-11-10 Thread Script This
The problem in more detail: I have a class called DbConn and in that class I have a function called select() which calls another function runQuery(). runQuery() executes the sql. select() loops over the result set with OCIFetchInto like this: 158

[PHP-DB] Mailing List Question: Outlook Express

2005-11-10 Thread Jason Aeschilman
There doesn't seem to be a way to get a response from the mailing list owner (you just get an automated Hey are you stupid? response), so I'm posting this here. My appologies. Are there any plans to make your digests work with Outlook Express? Yes, I know it's old. Yes, I know it's broken.

[PHP-DB] Re:Login Auth help?

2005-11-10 Thread Neil Smith [MVP, Digital media]
At 15:21 10/11/2005, you wrote: Message-ID: [EMAIL PROTECTED] Date: Thu, 10 Nov 2005 11:24:09 +1100 (EST) From: JeRRy [EMAIL PROTECTED] To: php-db@lists.php.net MIME-Version: 1.0 Content-Type: multipart/alternative; boundary=0-1489996746-1131582249=:37621 Content-Transfer-Encoding: 8bit Subject:

Re: [PHP-DB] MYSQL IN A PHP LOOP

2005-11-10 Thread Arie Nugraha
Multiple query can only be done in PHP 5 with MySQLI extension. In PHP 4 maybe you can use an array to store the query and execute each query with foreach : ?php $query[] = UPDATE bla.. bla..; $query[] = UPDATE bla.. bla..; $query[] = UPDATE bla.. bla..; foreach ($query as $eachquery){

[PHP-DB] RE: Mailing List Question: Outlook Express

2005-11-10 Thread JeRRy
There doesn't seem to be a way to get a response from the mailing list owner (you just get an automated Hey are you stupid? response), so I'm posting this here. My appologies. Are there any plans to make your digests work with Outlook Express? Yes, I know it's old. Yes, I know it's broken.

[PHP-DB] Re: Login Auth help?

2005-11-10 Thread JeRRy
Hi, Well I tried this code but it fails, if I enter a correct User and Pass set in the db it just prompts for the user/pass again. The error message that should apply if wrong three times appears but the sucessful message I can't get regardless of correct user pass or not, any help please?

Re: [PHP-DB] Re: Login Auth help?

2005-11-10 Thread Micah Stevens
I'd pull the addslashes() and use mysql_real_escape_string() instead. I'd also echo the query that's being sent to the database and compare to make sure it's doing what it should. -Micah On Thursday 10 November 2005 8:22 pm, JeRRy wrote: Hi, Well I tried this code but it fails, if I