MySQL and closed-source

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

Not too happy to hear about this

Sun to begin developing features only for Enterprise server. While I’m glad Sun will continue development of MySQL, there are many things other than not having access to these advanced features. Mainly the splintering of development, the idea of paying for less-tested software, and whether it’s a trend.

Related posts

Zend Framework and PDO_MYSQL (4)
TriPUG . . . → Read More: Not too happy to hear about this

TriPUG and MySQL Talk on Memcache and PHP

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

Zend Framework and PDO_MYSQL

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