Methods
-
select( statement, callback )
-
Description
Select multiple rows from the database
Parameters
Name Type Description statementstring Select Statement
callbackfunction selectCallback callback function
Details
-
get( statement, callback )
-
Description
Select a single row from the database. If no results are selected, this will return undefined. If more than 1 results are selected it will return the first result.
Parameters
Name Type Description statementstring Select Statement
callbackfunction getCallback callback function
Details
Type Definitions
-
selectCallback( error [, rows ] )
-
Description
This callback is performed after performing a SELECT query that can return multiple rows.
Parameters
Name Type Attributes Description errorError Database Query Error
rowsArray.<object> <optional> Selected rows
Details
-
getCallback( error [, row ] )
-
Description
This callback is performed after performing a SELECT query that will return the first row.
Parameters
Name Type Attributes Description errorError Database Query Error
rowobject <optional> First selected row
Details