DataSources[] returns a list of information about named data sources made available through DatabaseResourcesPath.DataSources[name] returns a list of information about the ...
JDBCDriver[args] specifies the configuration for connecting to a database produced by a specific vendor.
SQLArgument[arg1, arg2, ...] holds a sequence of arguments to an SQL query.
SQLBinary[data] represents raw binary data that can be stored in a database.
SQLConnection[...] is an object that represents a connection to a data source.
SQLConnectionPool[...] is an object that represents a connection pool to a data source.
SQLExecute[conn, command] executes a command in an SQL connection.SQLExecute[conn, command, args] passes arguments to the command.
SQLResultSetCurrent[rs] reads the current row from a result set.
SQLResultSetPosition[rs] returns an integer that specifies the current position in a result set.
SQLResultSetRead[rs] shifts the current position and then reads a row from a result set.SQLResultSetRead[rs, num] reads num rows from a result set.