Download the PHP package migliori/power-lite-pdo without Composer
On this page you can find all versions of the php package migliori/power-lite-pdo. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download migliori/power-lite-pdo
More information about migliori/power-lite-pdo
Files in migliori/power-lite-pdo
Package power-lite-pdo
Short Description PowerLitePdo is a PDO wrapper that provides a simple and powerful way to interact with a database.
License GPL-3.0-or-later
Homepage https://www.powerlitepdo.com/
Informations about the package power-lite-pdo
PowerLite PDO
PowerLite PDO is a lightweight, powerful PHP library that provides a simple and efficient way to interact with databases using PHP Data Objects (PDO). It supports multiple database drivers and includes features like easy connection management, query execution, result handling and pagination.
Table of Contents
- Features
- Requirements
- Documentation
- Installation
- Configuration
- Usage/Examples
- Running Tests
- Contributing
- License
Features
- Containerized Connections: The containers are used to connect your database and handle the configuration and dependencies seamlessly.
- Db & QueryBuilder Methods: Execute SQL queries and retrieve results using Db methods or the fluent QueryBuilder.
- Efficient Result Handling: Fetch single row, all rows, or specific column's value with dedicated methods.
- Comprehensive Database Operations: Provides a wide range of methods for diverse database interactions.
- Pagination Support: Handle paginated results effortlessly with the Pagination class.
- Error Management: User-friendly handling of database errors and exceptions.
- Debug Mode: Provides detailed information about the requests for debugging purposes.
- Prepared Statements: Support for prepared statements to prevent SQL injection attacks.
- Transaction Control: Manage database transactions with methods to start, commit, and rollback.
- High Code Quality Standards: The code follows best practices and coding standards.
Requirements
PHP ^7.4, PHP 8.x
Documentation
The documentation for PowerLite PDO is available on the PowerLite PDO website.
In addition to the documentation, a PHPDoc is also available here for more detailed information about the classes, methods, and their parameters.
Installation
Clone / download or install with Composer
Configuration
Open src/connection.php
in your code editor and replace the constant's values with your database connection settings (DB_HOST, DB_NAME, DB_USER, DB_PASS, DB_PORT, DB_CHARSET).
Security concerns
For enhanced safety, store the file outside of your web server's document root (the directory that is served to the internet) and change the path accordingly in the configuration file (src/config.php
). This prevents the file from being directly accessible via a URL.
Usage/Examples
Select records using the main Db class
-
Include the bootstrap file and get the Db instance from the container:
-
Use the select method from the Db class to select some records:
- Fetch the selected records one by one:
Select records using the fluent QueryBuilder
-
Include the bootstrap file and get the QueryBuilder instance from the container:
-
Use the QueryBuilder to select some records:
- Fetch the selected records one by one:
Select records with Pagination
-
Include the bootstrap file and get the Pagination instance from the container:
-
Select some records:
-
Fetch the selected records one by one:
- Display the pagination:
Running Tests
To run tests, run the following command
Dependencies
- Composer: A dependency management tool for PHP.
- PHP-DI: A dependency injection container for PHP.
- PDO: The PHP Data Objects extension for accessing databases.
- Database Drivers: The specific drivers for the databases you want to connect to (e.g., MySQL, PostgreSQL, Oracle, Firebird, ...).
Dev Dependencies
- PHPUnit: A testing framework for unit testing PHP code.
- PHPStan: A static analysis tool that helps find bugs in PHP code.
- PHP CodeSniffer: A set of rules to ensure that PHP code follows coding standards.
Contributing
Contributions are always welcome!
Please contact us for any improvement suggestions or send your pull requests