AdamHull Posted January 9, 2015 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
Coly010 Posted January 9, 2015 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
Script47 Posted January 9, 2015 Posted January 9, 2015 Since MySQL is deprecated I either use MySQLi or PDO. Generally I use PDO in my projects. Quote
Jax Posted January 9, 2015 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
krballard94 Posted January 9, 2015 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
CodingKid Posted January 10, 2015 Posted January 10, 2015 I use MySQLi and PDO for personal projects, at work I use Doctrine. Quote
KyleMassacre Posted January 10, 2015 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
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.