INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |
-- creation procedure; uses default session object
-- ...
-- connect to data source via stardard ODBC prompt
-- connect to data source
-- parameters:
-- 'dsn' - data source name
-- 'uid' - user ID
-- 'pwd' - password
-- connect to data source with specified connection string
-- or via the Driver Manager's connection dialog
-- parameters:
-- 'hwnd' - Windows handler - parent of dialog (0 allowed)
-- 's' - connection string (Void allowed)
-- 'dc' - defines scenario of connecting
-- see also the 'browse_connect' in advanced features section
-- disconnect from data source
-- begin new transaction or does nothing if transactions aren't
-- supported in this DBMS
-- break current transaction or does nothing if transactions aren't
-- supported in this DBMS
-- end current transaction or does nothing if transactions aren't
-- supported in this DBMS
-- the simplest way to create and execute a query; although,
-- it supposed, there won't be any results, latter are
-- available via the 'recordset' feature
-- returns list of data types of this database
-- returns list of tables of this database
-- returns list of stored procedures of this database
-- returns a recordset if available after 'execute'
-- returns a table with specified name or Void if there's no
-- such table in this database
-- returns a stored procedure with specified name or Void
-- if no such procedure in this database
-- returns True only if the given data source supports
-- stored procedures
-- returns True only if the given data source supports
-- stored procedures and ODBC allows to enumerate them
-- returns True if connected database is MS Access
-- returns True if connected database is MS SQL Server
-- returns True if connected database is Informix
-- returns True if connected database is Oracle
-- returns True if connected database is DB/2
-- terminator SQL string for all databases
-- terminator SQL string for current database
-- is this driver completion code valid?
INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |