iDatabase - ThomasDC84/Proteus GitHub Wiki
Interface iDatabase
This interface is used by objects generated by the dbFactory Class. It has few methods but they are enough to use a database.
query($queryString)
It only runs a query to the connected database and return TRUE if everything was fine or FALSE instead.
getNumberOfRows()
This method will return the number of affected rows by the last query.
fetchResults()
With this method you can get an associative array with the results of the last query.