Construct a new connection to the GeoPackage SQLite file
the database adapter
Execute an aggregate function
value or null
aggregate function
able name
distinct column flag
column name
where clause
arguments
Get a count of results
Optional
column: stringOptional
where: stringOptional
whereArgs: [] | Record<string, any>Delete from the table
number of rows deleted
table name to delete from
Optional
where: stringwhere clause
Optional
whereArgs: [] | Record<string, any>substitution parameters
Gets the maximum value from the column
table to query
column to get the max value from
Optional
where: stringwhere clause
Optional
whereArgs: [] | Record<string, any>substitution parameters
Gets the minimum value from the column
table to query
column to get the min value from
Optional
where: stringwhere clause
Optional
whereArgs: [] | Record<string, any>substitution parameters
Run the given SQL and return the results.
object: { "changes": number, "lastInsertROWID": number }
changes
: number of rows the statement changedlastInsertROWID
: ID of the last inserted rowsql to run
Optional
params: [] | Record<string, any>array of substitution parameters
Generated using TypeDoc
Represents a connection to the GeoPackage database