Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bayfrontmedia/simple-pdo
A simple and secure database abstraction layer which utilizes the PDO interface and supports working with multiple databases.
https://github.com/bayfrontmedia/simple-pdo
database mysql pdo php sql
Last synced: about 5 hours ago
JSON representation
A simple and secure database abstraction layer which utilizes the PDO interface and supports working with multiple databases.
- Host: GitHub
- URL: https://github.com/bayfrontmedia/simple-pdo
- Owner: bayfrontmedia
- License: mit
- Created: 2021-01-29T22:23:55.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-09-17T01:23:48.000Z (about 2 months ago)
- Last Synced: 2024-09-17T05:12:49.211Z (about 2 months ago)
- Topics: database, mysql, pdo, php, sql
- Language: PHP
- Homepage:
- Size: 43 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
## Simple PDO
A simple and secure database abstraction layer which utilizes the PDO interface and supports working with multiple databases.
Simple PDO was designed to provide a collection of functions which ensure safe and secure database queries
with a simple-to-use interface without compromising speed - all the while supporting simultaneous connections of multiple databases.Simple PDO also utilizes prepared statements using named bindings to protect against SQL injections.
- [License](#license)
- [Author](#author)
- [Requirements](#requirements)
- [Installation](#installation)
- [Documentation](#documentation)## License
This project is open source and available under the [MIT License](LICENSE).
## Author
- [Bayfront Media homepage](https://www.bayfrontmedia.com?utm_source=github&utm_medium=direct)
- [Bayfront Media GitHub](https://github.com/bayfrontmedia)## Requirements
* PHP `^8.0`
* PDO PHP extension## Installation
```
composer require bayfrontmedia/simple-pdo
```## Documentation
See [documentation](docs/README.md).