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
- Host: GitHub
- URL: https://github.com/leclerca/mysql-databasewrapper
- Owner: LeclercA
- License: mit
- Created: 2017-06-30T22:56:21.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-26T03:04:56.000Z (over 8 years ago)
- Last Synced: 2025-01-19T18:43:49.469Z (about 1 year ago)
- Topics: php, php56
- Language: PHP
- Homepage:
- Size: 77.1 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
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