Re: [PHP-DB] another strange MYSQL problem

2004-05-08 Thread Radek Zajkowski
Run those queries again and send in the result set. Maybe they're being sorted but it looks off, also what is the data type for you 'tip' column. Post your db schema if possible. R> Quoting Marcjon Louwersheimer <[EMAIL PROTECTED]>: > > > > - Original message - > From: [EMAIL PROTECT

[PHP-DB] MySQL persistent connections

2004-06-11 Thread Radek Zajkowski
Hey there PHP fiends, I have a bit of cookie here. We're designing a PHP based app that uses MySQL as the data storage. Scalability is an issue, we want to be able to handle up to 1 people utilizing the system (not at once of course). Question is, should I be connecting and disconnecting fr

[PHP-DB] Slow performance (PHP & MYSQL)

2002-06-05 Thread Radek Zajkowski
I am making pages for a client signed up with verio under signature hosting. The pages are very simple request from db for thumbnails, which are displayed 4 at a time etc. could it be because I'm generating the entire pages via PHP eg. echo("") echo("") echo("I'm so slow") echo("") etc. etc

[PHP-DB] Lost Mysql password

2002-08-14 Thread Radek Zajkowski
I know it's a mysql question but you guys have been kind enough to answer such in the past: I made myself a brand spanking new server wik PHP, Mysql etc. I set up mysql and changed the root pass did some other work and it does not work now, there is a slight chance I mistyped. Unistalling rpms

[PHP-DB] Dumping MySQL data

2003-03-07 Thread Radek Zajkowski
How do I dump mysql data via PHP? Thanks in advace. R> -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Mysqli returning result set from a function to calling script

2008-02-09 Thread Radek Zajkowski
Hi all, we've trying to write a wrapper class that would execute a prepared statement and return obtained dataset/resultset to the calling script. It would: 1. Prepare statement 2. execute 3. call something like $stmt->store_result(); (which we could assing to a var or return) 4

Re: [PHP-DB] Mysqli returning result set from a function to calling script

2008-02-11 Thread Radek Zajkowski
fetchAll function? http://php.net/manual/en/function.PDOStatement-fetchAll.php /Tobias Radek Zajkowski wrote: Hi all, we've trying to write a wrapper class that would execute a prepared statement and return obtained dataset/resultset to the calling script. It would: 1. Prepare stat