Releases: scriptbox-app/easy_db
Releases · scriptbox-app/easy_db
v1.0
- Fluent interface for building queries:
select(),where(),join(),groupBy(),orderBy(), etc. - Safe parameter binding using PDO prepared statements to prevent SQL injection.
- Support for single and multiple
whereclauses,whereIn,like,between. - Aggregate functions:
count(),sum(),avg(),min(),max(). - Insert with retrieval of last inserted ID (
insertGetId()). - Table creation and dropping with
createTable()anddropTable(). - Pagination support returning JSON output.
- Configurable via
.envfile. - Debug mode enabled via environment variable.
- Written as a single PHP file with no dependencies.