AdamHull Posted January 9, 2015 Share Posted January 9, 2015 This is a poll to see what the majority of the community uses to code their games and their websites. Quote Link to comment Share on other sites More sharing options...
Coly010 Posted January 9, 2015 Share Posted January 9, 2015 I don't have the understanding of PDO that I would like to be confident using it with projects, its a work in progress. Quote Link to comment Share on other sites More sharing options...
Sim Posted January 9, 2015 Share Posted January 9, 2015 I use them all. Quote Link to comment Share on other sites More sharing options...
Script47 Posted January 9, 2015 Share Posted January 9, 2015 Since MySQL is deprecated I either use MySQLi or PDO. Generally I use PDO in my projects. Quote Link to comment Share on other sites More sharing options...
Jax Posted January 9, 2015 Share Posted January 9, 2015 Depends on the language. PHP - MySQLi where possible, MySQL if nothing else available though never PDO Python - MySQL Perl - Mostly PostgreSQL Though I also use a variety of hybrid databases KV/EAV stores and document stores. Quote Link to comment Share on other sites More sharing options...
krballard94 Posted January 9, 2015 Share Posted January 9, 2015 PDO - Just purely on the fact its easy to change databases and all you have to edit is the DSN string. Just remember, it's only an data abstraction layer which uses the same methods regardless of whatever database you use. It's not a database abstraction layer. Quote Link to comment Share on other sites More sharing options...
CodingKid Posted January 10, 2015 Share Posted January 10, 2015 I use MySQLi and PDO for personal projects, at work I use Doctrine. Quote Link to comment Share on other sites More sharing options...
KyleMassacre Posted January 10, 2015 Share Posted January 10, 2015 I mostly use MySQL(i). I don't need to use a lot of the features in PDO since I don't deal with anything other MySQL (the database) Quote Link to comment Share on other sites More sharing options...
Guest Posted January 10, 2015 Share Posted January 10, 2015 Laravel, so in turn it uses PDO. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.