oscarotero / simple-crud

PHP library to provide magic CRUD in MySQL/Sqlite databases with zero configuration
MIT License
242 stars 58 forks source link

Why not Postgresql #10

Closed elieobeid7 closed 7 years ago

elieobeid7 commented 7 years ago

It says it uses pdo, and pdo supports many databases, so why you only support mysql and sqlite by default?

oscarotero commented 7 years ago

This library creates automatically the database queries and not all databases supported by PDO have the same syntax. For example, there's some differences between mysql and sqlite. I never used Postgresql