Tcl8.6.14/Tk8.6.14 Documentation > TDBC Package Commands, version 1.1.7 > tdbc

Tcl/Tk Applications | Tcl Commands | Tk Commands | [incr Tcl] Package Commands | SQLite3 Package Commands | TDBC Package Commands | tdbc::mysql Package Commands | tdbc::odbc Package Commands | tdbc::postgres Package Commands | tdbc::sqlite3 Package Commands | Thread Package Commands | Tcl C API | Tk C API | [incr Tcl] Package C API | TDBC Package C API

NAME

tdbc — Tcl Database Connectivity

SYNOPSIS

package require tdbc 1.0
package require tdbc::driver version

tdbc::driver::connection create db ?-option value...?

DESCRIPTION

Tcl Database Connectivity (TDBC) is a common interface for Tcl programs to access SQL databases. It is implemented by a series of database drivers: separate modules, each of which adapts Tcl to the interface of one particular database system. All of the drivers implement a common series of commands for manipulating the database. These commands are all named dynamically, since they all represent objects in the database system. They include connections, which represent connections to a database; statements, which represent SQL statements, and result sets, which represent the sets of rows that result from executing statements. All of these have manual pages of their own, listed under SEE ALSO.

In addition, TDBC itself has a few service procedures that are chiefly of interest to driver writers. SEE ALSO also enumerates them.

SEE ALSO

Tdbc_Init, tdbc::connection, tdbc::mapSqlState, tdbc::resultset, tdbc::statement, tdbc::tokenize, tdbc::mysql, tdbc::odbc, tdbc::postgres, tdbc::sqlite3

KEYWORDS

TDBC, SQL, database, connectivity, connection, resultset, statement

COPYRIGHT

Copyright (c) 2008 by Kevin B. Kenny.
Copyright © 2008 by Kevin B. Kenny.