1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
# tdbc.tcl -- connector for tdbc, the Tcl database abstraction layer
#
# Copyright 2024 The Apache Software Foundation
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
package require tdbc
package require DIO 1.2
package provide dio_Tdbc 1.2
namespace eval DIO {
::itcl::class Tdbc {
inherit Database
private variable connector_n
private variable connector
private variable tdbc_connector
private variable tdbc_arguments [list -encoding \
-isolation \
-readonly \
-timeout]
constructor {interface_name args} {eval configure -interface $interface_name $args} {
set connector_n 0
set connector ""
# I should check this one: we only accept connector
# interfaces that map into one of tdbc's supported drivers
#puts "tdbc interface: $interface_name"
set connector_name [::string tolower $interface_name]
if {$connector_name == "oracle"} {
set connector_name "odbc"
} elseif {$connector_name == "postgresql"} {
set connector_name "postgres"
}
set tdbc_connector "tdbc::${connector_name}"
uplevel #0 package require ${tdbc_connector}
}
destructor { }
private method check_connector {} {
if {$connector == ""} { open }
}
public method open {} {
set connector_cmd "${tdbc_connector}::connection create ${tdbc_connector}#$connector_n"
if {$user != ""} { lappend connector_cmd -user $user }
if {$db != ""} { lappend connector_cmd -db $db }
if {$pass != ""} { lappend connector_cmd -password $pass }
if {$port != ""} { lappend connector_cmd -port $port }
if {$host != ""} { lappend connector_cmd -host $host }
if {$clientargs != ""} { lappend connector_cmd {*}$clientargs }
#puts "evaluating $connector_cmd"
set connector [eval $connector_cmd]
incr connector_n
}
public method close {} {
if {$connector == ""} { return }
$connector close
set connector ""
}
protected method handle_client_arguments {cargs} {
set clientargs {}
lmap {k v} $cargs {
if {[lsearch $k $tdbcarguments] >= 0} {
lappend clientargs $k $v
}
}
}
public method exec {sql} {
$this check_connector
# tdbc doesn't like ';' at the end of a SQL statement
if {[::string index $sql end] == ";"} {set sql [::string range $sql 0 end-1]}
set is_select [regexp -nocase {^\(*\s*select\s+} $sql]
set tdbc_statement [$connector prepare $sql]
# errorinfo is a public variable of the
# parent class Database. Not a good
# object design practice
if {[catch {set tdbc_result [$tdbc_statement execute]} errorinfo]} {
set result_obj [$this result TDBC -error 1 -errorinfo [::list $errorinfo] -isselect false]
} else {
# we must store also the TDBC SQL statement as it owns
# the TDBC results set represented by tdbc_result. Closing
# a tdbc::statement closes also any active tdbc::resultset
# owned by it
set result_obj [$this result TDBC -resultid $tdbc_result \
-statement $tdbc_statement \
-isselect $is_select \
-fields [::list [$tdbc_result columns]]]
}
return $result_obj
}
}
::itcl::class TDBCResult {
inherit Result
public variable isselect false
public variable statement
public variable rowid
public variable cached_rows
public variable columns
constructor {args} {
eval configure $args
set cached_rows {}
set columns {}
set rowid 0
set rownum 0
set statement ""
}
destructor {}
public method destroy {} {
if {$statement != ""} { $statement close }
Result::destroy
}
public method current_row {} {return $rowid}
public method cached_results {} {return $cached_rows}
public method nextrow {} {
if {[llength $cached_rows] == 0} {
if {![$resultid nextrow -as lists row]} {
return ""
}
} else {
set cached_rows [lassign $cached_rows row]
}
incr rowid
return $row
}
public method numrows {} {
if {$isselect} {
# this is not scaling well at all but tdbc is not telling
# the number of columns for a select so must determine it
# from the whole set of results
if {[llength $cached_rows] == 0} {
set cached_rows [$resultid allrows -as lists -columnsvariable columns]
}
return [expr [llength $cached_rows] + $rowid]
} else {
return [$resultid rowcount]
}
}
}
}
|