Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 581 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 581 Bytes

Opencart easy sql / query builder

This allows information to be retrieved, inserted, and updated in your database with minimal scripting. In some cases only one or two lines of code are necessary to perform a database action. It provides a more simplified interface.

By means of this you not have to write long long sql query.

Thais will improve your coding speed, code readability

In sort, write beautifull code with minimum effort

Example:

$query = $this->db->get('mytable', 10, 20);

// Produces: SELECT * FROM mytable LIMIT 20, 10