By drasch, on May 7th, 2008%
Apparently someone at Sun agreed with my sentiments about moving to a more closed-source model for MySQL.
While my original comments are self serving, apparently Sun believes that it will make better business sense in the long term to keep these components open-source. Hopefully this is a vote of confidence for the quality of . . . → Read More: MySQL and closed-source
By drasch, on May 3rd, 2007%
Memcache is an extension written by Danga for simple Key/Value pair caching for use with your favorite programming language. In this talk I demonstrate how to install, integrate, and leverage Memcache in PHP (using MySQL for a database). I build a sample application, demonstrate less than desirable performance and finally, return performance with a . . . → Read More: TriPUG and MySQL Talk on Memcache and PHP
By drasch, on February 6th, 2007%
I’ve been working with the Zend Framework a bit and in working with MySQL through PDO_MYSQL. I’ve run into a few problems trying to use parameters of queries.
I’ve narrowed the issue down to PDO itself and not the Zend Framework.
$dbh = new PDO(“mysql:host=localhost;dbname=db”,”user”,”pw”);
$query = “insert into silo_test_data (record_id, fieldname, value)
. . . → Read More: Zend Framework and PDO_MYSQL