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 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
|
# dio_Sqlite.tcl -- DIO interface for sqlite
# Copyright 2004 The Apache Software Foundation
# Licensed 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.
# $Id: dio_Sqlite.tcl 1388916 2012-09-22 22:51:20Z mxmanghi $
package provide dio_Sqlite 0.1
namespace eval DIO {
variable sqlite_seq -1
catch { ::itcl::delete class Sqlite }
::itcl::class Sqlite {
inherit Database
private variable dbcmd ""
public variable interface "Sqlite"
constructor {args} {eval configure $args} {
if {[catch {package require sqlite}] && \
[catch {package require sqlite3}]} {
return -code error "No Sqlite Tcl package available"
}
eval configure $args
}
destructor {
close
}
method open {} {
variable ::DIO::sqlite_seq
if {$dbcmd != ""} { return }
set dbcmd dbcmd[incr sqlite_seq]
::sqlite3 $dbcmd $db
set dbcmd [namespace which $dbcmd]
}
method close {} {
catch { $dbcmd close }
}
method exec {req} {
open
if {[$dbcmd complete $req] == 0} {
append req ";"
if {[$dbcmd complete $req] == 0} {
return -code error "Incomplete SQL"
}
}
set obj [::DIO::SqliteResult #auto -request $req -dbcmd $dbcmd -select 0]
# If it's a select statement, defer caching of results.
# if {[regexp {^[^[:graph:]]*([[:alnum:]]*)} $req _ word]}
if {[::string range [::string trim $req] 0 5] == "select"} {
$obj configure -select 1
} else {
# Actually perform the query
$obj cache
}
return [namespace which $obj]
}
method list {req} {
open
set result ""
$dbcmd eval $req a {
lappend result $a([lindex $a(*) 0])
}
return $result
}
method sql_limit_syntax {limit {offset ""}} {
set sql " LIMIT $limit"
if {![lempty $offset]} { append sql " OFFSET $offset" }
return $sql
}
## If they change DBs, we need to close the database. It'll be reopened
## on the first exec
public variable db "" {
if {"$dbcmd" != ""} {
close
set dbcmd ""
}
}
#
# quote - given a string, return the same string with any single
# quote characters preceded by a backslash
#
method quote {string} {
regsub -all {'} $string {''} string
return $string
}
method makeDBFieldValue {table_name field_name val {convert_to {}}} {
if {[info exists specialFields(${table_name}@${field_name})]} {
switch $specialFields(${table_name}@${field_name}) {
DATE {
set secs [clock scan $val]
set my_val [clock format $secs -format {%Y-%m-%d}]
return "date('$my_val')"
}
DATETIME {
set secs [clock scan $val]
set my_val [clock format $secs -format {%Y-%m-%d %T}]
return "datetime('$my_val')"
}
NOW {
switch $convert_to {
# we try to be coherent with the original purpose of this method whose
# goal is to provide to the programmer a uniform way to handle timestamps.
# E.g.: Package session expects this case to return a timestamp in seconds
# so that differences with timestamps returned by [clock seconds]
# can be done and session expirations are computed consistently.
# (Bug #53703)
SECS {
if {[::string compare $val "now"] == 0} {
# set secs [clock seconds]
# set my_val [clock format $secs -format "%Y%m%d%H%M%S"]
return [clock seconds]
} else {
# the numbers of seconds must be returned as 'utc' to
# be compared with values returned by [clock seconds]
return "strftime('%s',$field_name,'utc')"
}
}
default {
if {[::string compare $val, "now"] == 0} {
set secs [clock seconds]
} else {
set secs [clock scan $val]
}
set my_val [clock format $secs -format {%Y-%m-%d %T}]
return "datetime('$my_val')"
}
}
}
default {
# no special code for that type!!
return "'[quote $val]'"
}
}
} else {
return "'[quote $val]'"
}
}
}
catch { ::itcl::delete class SqliteResult }
# Not inheriting Result because there's just too much stuff that needs
# to be re-done when you're deferring execution
::itcl::class SqliteResult {
constructor {args} {
eval configure $args
if {"$request" == "--"} {
return -code error "No SQL code provided for result"
}
if {"$dbcmd" == "--"} {
return -code error "No SQLite DB command provided"
}
}
destructor {
clear
}
method clear {} {
set cache {}
set cache_loaded 0
}
method destroy {} {
::itcl::delete object $this
}
method resultid {args} {
if [llength $args] {
set resultid [lindex $args 0]
}
if ![info exists resultid] {
return $request
}
return $resultid
}
method numrows {args} {
if [llength $args] {
set numrows [lindex $args 0]
}
if ![info exists numrows] {
if ![load_cache] { return 0 }
}
return $numrows
}
method fields {args} {
if [llength $args] {
set fields [lindex $args 0]
}
if ![info exists fields] {
if ![load_cache] { return {} }
}
return $fields
}
method errorcode {args} {
if [llength $args] {
set errorcode [lindex $args 0]
}
if ![info exists errorcode] {
check_ok
}
return $errorcode
}
method error {args} {
if [llength $args] {
set error [lindex $args 0]
}
if ![info exists error] {
check_ok
}
return $error
}
method errorinfo {args} {
if [llength $args] {
set errorinfo [lindex $args 0]
}
if ![info exists errorinfo] {
check_ok
}
if $error {
return $errorinfo
}
return ""
}
method autocache {args} {
if [llength $args] {
set autocache $args
}
return $autocache
}
method cache {} {
load_cache
}
protected method load_cache {} {
if {$error_exists} { return 0 }
if {$cache_loaded} { return 1 }
if [catch {
set numrows 0
set cache {}
# Doing a loop here because it's the only way to get the fields
$dbcmd eval $request a {
incr numrows
set names $a(*)
set row {}
foreach field $names {
lappend row $a($field)
}
lappend cache $row
}
# some SQL commands actually don't run the script
# argument of method 'eval'. We therefore rely on
# the method 'changes' which returns the number
# of affected rows
# (http://www.sqlite.org/tclsqlite.html#changes)
if {($numrows == 0) && ($select == 0)} {
set numrows [$dbcmd changes]
}
if {[info exists names] && ![info exists fields]} {
set fields $names
} else {
set fields ""
}
} err] {
return [check_ok 1 $err]
}
set cache_loaded 1
return [check_ok 0]
}
method forall {type varname body} {
upvar 1 $varname var
if $cache_loaded {
foreach row $cache {
setvar $type var $row
uplevel 1 $body
}
} else {
set numrows 0
$dbcmd eval $request a {
incr numrows
set names $a(*)
set row {}
foreach field $names {
lappend row $a($field)
}
if $autocache {
lappend cache $row
}
if ![info exists fields] {
set fields $names
}
setvar $type var $row
uplevel 1 $body
}
if $autocache {
set cache_loaded 1
check_ok 0
}
}
}
method next {type varname} {
if ![load_cache] { return -1 }
if {$rowid + 1 > $numrows} { return -1 }
upvar 1 $varname var
incr rowid
setvar $type var [lindex $cache $rowid]
return $rowid
}
protected method setvar {type varname row} {
upvar 1 $varname var
switch -- $type {
-list {
set var $row
}
-array {
foreach name $fields value $row {
set var($name) $value
}
}
-keyvalue {
set var {}
foreach name $fields value $row {
lappend var -$name $value
}
}
default {
return -code error "Unknown type $type"
}
}
}
protected method check_ok {{val -1} {info ""}} {
if {$error_checked} { return [expr !$error] }
if {$val < 0} {
set val [catch {$dbcmd onecolumn $request} info]
}
set error $val
set errorcode $val
set error_checked 1
set error_exists $val
if {$val > 0} {
set errorinfo $info
} else {
set rowid -1
}
return [expr !$val]
}
public variable autocache 0
public variable error
public variable errorcode
public variable errorinfo
public variable fields
public variable numrows
public variable resultid
public variable rowid -1
public variable select 0
public variable request "--"
public variable dbcmd "--"
protected variable cache
protected variable cache_loaded 0
protected variable error_checked 0
protected variable error_exists 0
} ; ## ::itcl::class SqliteResult
}
|