You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### PHPFUI\ORM a minimal Object Relational Mapper (ORM) for MySQL, MariaDB and SQLite3
3
+
### PHPFUI\ORM a minimal Object Relational Mapper (ORM) for MySQL, MariaDB, PostGre and SQLite3
4
4
Why another PHP ORM? In writing minimal and fast websites, it was determined that existing PHP ORM solutions were overly complex. **PHPFUI\ORM** is a little more than 6.7K lines of code in 50 files. It is designed to have a minimal memory footprint and excellent execution times for most database needs.
5
5
6
-
Performance [comparison of PHPFUI\ORM to Eloquent](https://github.com/phpfui/php-orm-sql-benchmarks) for different SQL implementations.
6
+
**PHPFUI\ORM** demonstrates superior performance for both speed and memory usage verses other ORMs. This is proven by a [comparison of PHPFUI\ORM to Other ORMs](https://github.com/phpfui/php-orm-sql-benchmarks) for different SQL implementations.
7
7
8
8
**PHPFUI\ORM** is not an attempt to write an abstraction around SQL as other ORMs do, rather it is a way to work with SQL that closely matches the semantics of SQL, with the power of PHP objects. It allows PHP to manipulate SQL queries without having to write SQL in plain text. This is very useful for queries generated via user interfaces where the user is given a lot of flexability in how a query is defined.
9
9
@@ -23,7 +23,7 @@ You will need to run the \PHPFUI\ORM\Tool\Generate\CRUD class against your datab
23
23
-**Injection Safe** Uses PDO placeholders and field sanitation to prevent injection attacks.
24
24
-**Raw SQL Query Support** Execute any valid SQL command.
25
25
-**Multiple Database Support** Work with multiple databases simultaneously.
26
-
-**Multi-Vendor Support** Built on PDO with support for MySQL, MariaDB and SQLite.
26
+
-**Multi-Vendor Support** Built on PDO with support for MySQL, MariaDB, PostGre and SQLite.
0 commit comments