An open API service indexing awesome lists of open source software.

https://github.com/leclerca/mysql-databasewrapper

My own PHP/MYSQL database wrapper for easy query
https://github.com/leclerca/mysql-databasewrapper

php php56

Last synced: about 1 month ago
JSON representation

My own PHP/MYSQL database wrapper for easy query

Awesome Lists containing this project

README

          

# myOwnDataBaseWrapper
My own PHP database wrapper for easy query

[x] Make everything a preapred statement

[x] Put back the lastQuery, to check if the query is the same to need rePrepare it (it is faster)

[x] Make with so when a table is in another schema, the escapeWithBackSticks remove the dot from the string ( ex 'bob.table' => 'bob'.'table' )

[ ] Find a way to retrieve information like mysqli_info();

[x] Accept parameters for `WHERE IN (? ? ? ?)` *array_merge*

[ ] Set alias for table in the config

[ ] check `$this->connection->setAttribute(PDO::ATTR_EMULATE_PREPARES, false);` with `true`

[ ] Add to .CSV method (or other type of file)

[ ] Re-do all

[ ] Change the `execute` function to `select`,`insert`,`update`,`delete`

[ ] Delete this