Hi, Саша Стаменковић wrote: > I don't know how to monitor mysqld, maybe get connection > from adapter with getConnection() and then retreive it from there and log?
No. Monitoring your mysqld has nothing to do with PHP. If you are on Unix or FreeBSD, you would use a tool like "mtop". If you are on Windows you can use the MySQL Administrator from mysql.org. P.s.: When you are quoting, how do you do that? $table = new MyZendTable(); $adapter = $table->getAdapter(); $quoted_string = $adapter->quote(...); If you are using "getConnection()" you will create an additional connection/object and won't use the existing one. Maybe this is your problem... -- Regards, Thomas
