logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

tdbc - Tcl Database Connectivity

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  resultsets,  which represent the sets of rows that result from
       executing statements. All of these have manual pages of their own, listed under SEEALSO.

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

Keywords

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

Name

       tdbc - Tcl Database Connectivity

See Also

Tdbc_Init(3),       tdbc::connection(3tcl),        tdbc::mapSqlState(3tcl),        tdbc::resultset(3tcl),
       tdbc::statement(3tcl),  tdbc::tokenize(3tcl),  tdbc::mysql(3tcl), tdbc::odbc(3tcl), tdbc::postgres(3tcl),
       tdbc::sqlite3(3tcl)

Synopsis

       package require tdbc1.0
       package require tdbc::driverversiontdbc::driver::connectioncreatedb ?-optionvalue...?
________________________________________________________________________________________________________________

See Also