- Methods: All Methods Documented Methods Hide Methods
- Source: Display Source Hide Source
- Variables: Show Variables Hide Variables
Class ::acs::db::nsdbi
::acs::db::nsdbi create ... \Database interface based on the nsdbi driver of NaviServer
[ -backend backend ] \
[ -dbn (default "") ] \
[ -driver driver ]
Defined in packages/acs-tcl/tcl/acs-db-00-procs.tcl
Class Relations
::nx::Class create ::acs::db::nsdbi \ -superclass ::acs::db::DriverMethods (to be applied on instances)
list (scripted, public)
<instance of acs::db::nsdbi> list [ -dbn dbn ] [ -bind bind ] \ [ -prepare prepare ] qn sqlReturn a Tcl list, where each element contains just the first the column values of the tuples returned by the provided SQL query.
- Switches:
- -dbn (optional)
- database identifier
- -bind (optional)
- optional bind variables for the SQL query
- -prepare (optional)
- not used for NSDBI, providing interface compatibility with NSDB
- Parameters:
- qn (required)
- name of the SQL query
- sql (required)
- SQL query
- Testcases:
- No testcase defined.
if {$sql eq ""} { set sql [:get_sql $qn] } set dbn [:map_default_dbn $dbn] set flat [:uplevel [list ::dbi_rows -columns __columns {*}[expr {$dbn ne "" ? [list -db $dbn] : ""}] {*}[expr {$bind ne "" ? [list -bind $bind] : ""}] -- $sql]] if {[:uplevel {llength $__columns}] > 1} { error "query is returning more than one column" } return $flatlist_of_lists (scripted, public)
<instance of acs::db::nsdbi> list_of_lists [ -dbn dbn ] \ [ -bind bind ] [ -prepare prepare ] qn sqlReturn a Tcl list, where each element consists of a list of the column values corresponding to the values of the tuples returned by the provided SQL query.
- Switches:
- -dbn (optional)
- database identifier
- -bind (optional)
- optional bind variables for the SQL query
- -prepare (optional)
- not used for NSDBI, providing interface compatibility with NSDB
- Parameters:
- qn (required)
- name of the SQL query
- sql (required)
- SQL query
- Testcases:
- No testcase defined.
if {$sql eq ""} { set sql [:get_sql $qn] } set dbn [:map_default_dbn $dbn] return [:uplevel [list ::dbi_rows {*}[expr {$dbn ne "" ? [list -db $dbn] : ""}] {*}[expr {$bind ne "" ? [list -bind $bind] : ""}] -result lists -max 1000000 -- $sql]]
- Methods: All Methods Documented Methods Hide Methods
- Source: Display Source Hide Source
- Variables: Show Variables Hide Variables