/usr/lib/aolserver4/modules/tcl/nsdb.tcl is in aolserver4-daemon 4.5.1-15.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #
# The contents of this file are subject to the AOLserver Public License
# Version 1.1 (the "License"); you may not use this file except in
# compliance with the License. You may obtain a copy of the License at
# http://aolserver.com/.
#
# Software distributed under the License is distributed on an "AS IS"
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
# the License for the specific language governing rights and limitations
# under the License.
#
# The Original Code is AOLserver Code and related documentation
# distributed by AOL.
#
# The Initial Developer of the Original Code is America Online,
# Inc. Portions created by AOL are Copyright (C) 1999 America Online,
# Inc. All Rights Reserved.
#
# Alternatively, the contents of this file may be used under the terms
# of the GNU General Public License (the "GPL"), in which case the
# provisions of GPL are applicable instead of those above. If you wish
# to allow use of your version of this file only under the terms of the
# GPL and not to allow others to use your version of this file under the
# License, indicate your decision by deleting the provisions above and
# replace them with the notice and other provisions required by the GPL.
# If you do not delete the provisions above, a recipient may use your
# version of this file under either the License or the GPL.
#
#
# $Header: /cvsroot/aolserver/aolserver/tcl/nsdb.tcl,v 1.5 2009/01/19 12:21:08 gneumann Exp $
#
#
# nsdb.tcl --
#
# Database services utils.
#
nsv_set _nsdb months [list January February March April May June \
July August September October November December]
#
# ns_dbquotename -
#
# If name contains a space, then it is surrounded by double quotes.
# This is useful for names in SQL statements that may contain spaces.
#
proc ns_dbquotename {name} {
if {[string match "* *" $name]} {
return "\"$name\""
} else {
return $name
}
}
#
# ns_dbquotevalue -
#
# Prepares a value string for inclusion in an SQL statement:
# "" is translated into NULL.
# All values of any numeric type are left alone.
# All other values are surrounded by single quotes and any
# single quotes included in the value are escaped (ie. translated
# into 2 single quotes).
proc ns_dbquotevalue {value {type text}} {
if {$value eq ""} {
return "NULL"
}
if {$type eq "decimal" \
|| $type eq "double" \
|| $type eq "integer" \
|| $type eq "int" \
|| $type eq "real" \
|| $type eq "smallint" \
|| $type eq "bigint" \
|| $type eq "bit" \
|| $type eq "float" \
|| $type eq "numeric" \
|| $type eq "tinyint"} {
return $value
}
regsub -all "'" $value "''" value
return "'$value'"
}
#
# ns_localsqltimestamp -
#
# Return an SQL string for the current time.
#
proc ns_localsqltimestamp {} {
set time [ns_localtime]
return [format "%04d-%02d-%02d %02d:%02d:%02d" \
[expr {[ns_parsetime year $time] + 1900}] \
[expr {[ns_parsetime mon $time] + 1}] \
[ns_parsetime mday $time] \
[ns_parsetime hour $time] \
[ns_parsetime min $time] \
[ns_parsetime sec $time]]
}
#
# ns_parsesqldate -
#
# Parse and SQL date string fro month, day, or year.
#
proc ns_parsesqldate {opt sqldate} {
scan $sqldate "%04d-%02d-%02d" year month day
switch $opt {
month {return [lindex [nsv_get _nsdb months] [expr {$month - 1}]]}
day {return $day}
year {return $year}
default {error "Unknown option \"$opt\": should be year, month or day"}
}
}
#
# ns_parsesqltime -
#
# Parse and SQL timestamp string for time or ampm spec.
#
proc ns_parsesqltime {opt sqltime} {
if {[scan $sqltime "%02d:%02d:%02d" hours minutes seconds] == 2} {
set seconds 0
}
switch $opt {
time {
if {$hours == 0} {
set hours 12
} elseif {$hours > 12} {
set hours [incr hours -12]
}
if {$seconds == 0} {
return [format "%d:%02d" $hours $minutes]
} else {
return [format "%d:%02d:%02d" $hours $minutes $seconds]
}
}
ampm {
if {$hours < 12} {
return AM
} else {
return PM
}
}
default {error "Unknown command \"$opt\": should be time or ampm"}
}
}
#
# ns_parsesqltimestamp --
#
# Parse and SQL timestamp string for month, day, year, time,
# or ampm spec.
#
proc ns_parsesqltimestamp {opt sqltimestamp} {
switch $opt {
month -
day -
year {return [ns_parsesqldate $opt [lindex [split $sqltimestamp " "] 0]]}
time -
ampm {return [ns_parsesqltime $opt [lindex [split $sqltimestamp " "] 1]]}
default {error "Unknown command \"$opt\": should be month, day, year, time or ampm"}
}
}
#
# ns_buildsqltime -
#
# Create an SQL timestamp.
#
proc ns_buildsqltime {time ampm} {
if {"" eq $time && "" eq $ampm} {
return ""
}
if {"" eq $time || "" eq $ampm} {
error "Invalid time: $time $ampm"
}
set seconds 0
set num [scan $time "%d:%d:%d" hours minutes seconds]
if {$num < 2 || $num > 3 \
|| $hours < 1 || $hours > 12 \
|| $minutes < 0 || $minutes > 59 \
|| $seconds < 0 || $seconds > 61} {
error "Invalid time: $time $ampm"
}
if {$ampm eq "AM"} {
if {$hours == 12} {
set hours 0
}
} elseif {$ampm eq "PM"} {
if {$hours != 12} {
incr hours 12
}
} else {
error "Invalid time: $time $ampm"
}
return [format "%02d:%02d:%02d" $hours $minutes $seconds]
}
#
# ns_buildsqldate -
#
# Create and SQL date string.
#
proc ns_buildsqldate {month day year} {
if {"" eq $month \
&& "" eq $day \
&& "" eq $year} {
return ""
}
if {![ns_issmallint $month]} {
set month [expr {[lsearch [nsv_get _nsdb months] $month] + 1}]
}
if {"" eq $month \
|| "" eq $day \
|| "" eq $year \
|| $month < 1 || $month > 12 \
|| $day < 1 || $day > 31 \
|| $year < 1\
|| ($month == 2 && $day > 29)\
|| (($year % 4) != 0 && $month == 2 && $day > 28) \
|| ($month == 4 && $day > 30)\
|| ($month == 6 && $day > 30)\
|| ($month == 9 && $day > 30)\
|| ($month == 11 && $day > 30) } {
error "Invalid date: $month $day $year"
}
return [format "%04d-%02d-%02d" $year $month $day]
}
#
# ns_buildsqltimestamp -
#
# Create and SQL timestamp string.
#
proc ns_buildsqltimestamp {month day year time ampm} {
set date [ns_buildsqldate $month $day $year]
set time [ns_buildsqltime $time $ampm]
if {"" eq $date || "" eq $time} {
return ""
}
return "$date $time"
}
#
# ns_writecsv -
#
# Write an SQL table to an open file in csv format.
#
proc ns_writecsv {datafp db table {header 1}} {
set row [ns_db select $db "select * from [ns_dbquotename $table]"]
set rowsize [ns_set size $row]
if {$header} {
regsub -all "\"" [ns_set key $row 0] "\"\"" value
puts -nonewline $datafp "\"$value\""
for {set i 1} {$i < $rowsize} {incr i} {
regsub -all "\"" [ns_set key $row $i] "\"\"" value
puts -nonewline $datafp ",\"$value\""
}
puts -nonewline $datafp "\r\n"
}
while {[ns_db getrow $db $row]} {
regsub -all \" [ns_set value $row 0] "\"\"" value
puts -nonewline $datafp "\"$value\""
for {set i 1} {$i < $rowsize} {incr i} {
regsub -all \" [ns_set value $row $i] "\"\"" value
puts -nonewline $datafp ",\"$value\""
}
puts -nonewline $datafp "\r\n"
}
}
|