What's the best database framework for PHP? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T13:26:36Zhttp://stackoverflow.com/feeds/question/266499http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/266499/whats-the-best-database-framework-for-php5What's the best database framework for PHP?nickf2008-11-05T20:21:58Z2009-10-23T15:27:54Z
<p>After graduating from calling the <code>mysql_*</code> functions directly in my code, I've stepped up to a home-brewed database abstraction class. Now, I'm beginning to think that I should really use a "professional" DB class instead.</p>
<p>I know there are a lot of them out there (ADODB, PDO, MDB2, etc) but I want to know which one I should try out. What do you feel is the best one and why?</p>
http://stackoverflow.com/questions/266499/whats-the-best-database-framework-for-php/266519#26651911Answer by Noah Goodrich for What's the best database framework for PHP?Noah Goodrich2008-11-05T20:27:17Z2008-11-05T20:45:41Z<p>I really like PDO for my database access layer for the following reasons:</p>
<ul>
<li>Object-Oriented</li>
<li>Supports Named Parameters</li>
<li>Part of the PHP Core as of 5.1.0 (thx to R. Bemrose for pointing this out)</li>
<li>Can be fairly easily extended to support custom features</li>
</ul>
<p>That said, I am looking at going from my own custom wrapper for PDO that provides dynamic querying, simplified functions and the like to a full-fledged framework. I really like the Zend Framework and one benefit that I know it offers is that you can use either MySQLi or PDO with support for named parameters (something you don't get with the core mysqli library). </p>
<p>I will mention that though I originally started with using MySQLi, I had to switch to PDO because MySQLi had issues with large blobs. I don't know if that's still the case or not though.</p>
http://stackoverflow.com/questions/266499/whats-the-best-database-framework-for-php/267818#2678188Answer by Eran Galperin for What's the best database framework for PHP?Eran Galperin2008-11-06T06:57:20Z2008-11-06T07:08:22Z<p>I use Zend_Db extensively, and I like it for several reasons - </p>
<ol>
<li>The Zend_Db package is self contained and can be used without the entire Zend Framework library</li>
<li>It works with plenty of database brands, so my code simply works even when PDO is not present</li>
<li>It creates prepared statements even without access to a PDO wrapper</li>
<li>It provides the foundation for more Zend_Db modules that are outsides the scope of PDO and which I use extensively (Zend_Db_Select, Zend_Db_Table, Zend_Db_Profiler and more)</li>
<li>The source is available in PHP, which makes it very easy to browse through it to see how things are done</li>
</ol>
http://stackoverflow.com/questions/266499/whats-the-best-database-framework-for-php/1614211#16142110Answer by eyze for What's the best database framework for PHP?eyze2009-10-23T15:27:54Z2009-10-23T15:27:54Z<p>Just study and use this one function:</p>
<pre><code>function MySQL($query)
{
static $db = null;
static $result = array();
if (is_null($db) === true)
{
$db = new PDO('mysql:' . $query, null, null, array(PDO::ATTR_ERRMODE => PDO::ERRMODE_WARNING));
}
else if (is_a($db, 'PDO') === true)
{
$hash = md5($query);
if (empty($result[$hash]) === true)
{
$result[$hash] = $db->prepare($query);
}
if (is_a($result[$hash], 'PDOStatement') === true)
{
if ($result[$hash]->execute(array_slice(func_get_args(), 1)) === true)
{
if (stripos($query, 'INSERT') === 0)
{
return $db->lastInsertId();
}
if (stripos($query, 'SELECT') === 0)
{
return $result[$hash]->fetchAll(PDO::FETCH_ASSOC);
}
return $result[$hash]->rowCount();
}
}
return false;
}
return true;
}
</code></pre>