mirror of
https://github.com/codeguy/php-the-right-way.git
synced 2025-08-18 03:21:18 +02:00
Update _posts/06-01-01-Databases.md
Found a typo on line 68: missing form another -> missing from another
This commit is contained in:
@@ -65,7 +65,7 @@ unless of course you are using persistent connections.
|
||||
## Abstraction Layers
|
||||
|
||||
Many frameworks provide their own abstraction layer which may or may not sit on top of PDO. These will often emulate features for
|
||||
one database system that another is missing form another by wrapping your queries in PHP methods, giving you actual database abstraction.
|
||||
one database system that another is missing from another by wrapping your queries in PHP methods, giving you actual database abstraction.
|
||||
This will of course add a little overhead, but if you are building a portable application that needs to work with MySQL, PostgreSQL and
|
||||
SQLite then a little overhead will be worth it the sake of code cleanliness.
|
||||
|
||||
|
Reference in New Issue
Block a user