ODBC Library
The ODBC library has methods and properties for working with a
database in scripts. These methods and properties provide a high-level interface for
working with ODBC databases.
The Database object allows the user to create a connection
to a database which can then be queried, manipulated, and so forth through direct SQL
statements or by the Cursor object.
SQL statements stored inside the database are known
as stored procedures and can be called using the Stproc object, allowing for the use of
complex database-specific procedures from a script.
Finally, true ease of use is
provided by the SimpleDataset object, which is a combination of a Database object
and a Cursor object.
This allows a script to have detailed, low-level control of an ODBC database through
SQL statements and easy to use, high-level routines at the same time.
SimpleDataset instance methods
SimpleDataset static properties