new version, major breacking changes, updated docs/doc-blocks
-
The use of
namespacein theglobalfunctions ezFunctions.php file.
Usage of the global functions will require the user to begin a.phpfile something like:use function ezsql\functions\where; // Or use function ezsql\functions\{ getInstance, selecting, inserting, };
-
Class properties that was accessible by magic methods
get/set, now PSR 1 camelCase. -
update class libraries and tests to match PSR 1, but still backwards with previous way.
-
Renamed
selectofez_mysqlitodbSelect. -
Renamed class method and behavior of
selectingtoselect. -
selecting, and newinsertingmethods, can be called without table name, only the other necessary parameters:- The table name with prefix, can be preset/stored with methods
tableSetup(name, prefix), or setTable(name), setPrefix(append), if called without presetting,falseis returned. - This feature will be added to all database CRUD access methods , each method name will have an
ingending added.
- The table name with prefix, can be preset/stored with methods
-
Removed global functions where
tablename passed in, use functions as outlined above using preset table names ending withing.