MosOdbc
Last updated
Last updated
Name
Description
executeNonQuery(connectionString, query)
Executes an SQL script and does not return any result. Accepts ODBC string of connection to the database and query string as arguments.
executeScalar(connectionString, query)
Executes an SQL script and returns the first field of the first record of the resulting set returned by the query. Accepts ODBC string of connection to the database and query string as arguments.
openReader(connectionString, query)
Executes an SQL script and returns a MosOdbcReader object to navigate the resulting data set returned by the query. Accepts ODBC string of connection to the database and query string as arguments.