guess the note blockquote will be live

This commit is contained in:
Larry Ullman
2014-10-12 22:16:25 -04:00
parent 88a3fcaa8a
commit 9db261f356

View File

@ -1,7 +1,7 @@
Database Access Objects
===============
[[Note: This section is under development.]]
> Note: This section is under development.
Yii includes a database access layer built on top of PHP's [PDO](http://www.php.net/manual/en/book.pdo.php). The database access objects (DAO) interface provides a
uniform API, and solves some inconsistencies that exist between different database applications. Whereas Active Record provides database interactions through models, and the Query Builder assists in composing dynamic queries, DAO is a simple and efficient way to execute straight SQL on your database. You'll want to use DAO when the query to be run is expensive and/or no application models--and their corresponding business logic--are required.