1.6 KiB
1.6 KiB
--- docs/api.html Wed Jul 22 21:54:38 1998
+++ docs/api.html Wed Jul 19 17:19:34 2000
@@ -1,2 +1,5 @@
+<HTML>
+<HEAD>
+</HEAD>
@@ -55,3 +58,3 @@
statement). Use with
-
-
-
+
fetchrow
and endquery
. -
sql query $conn "select * from sample where x > 3"
+ set query [sql query $conn "select * from sample where x > 3"]
@@ -62,3 +65,3 @@
is returned.-
while {[set row [sql fetchrow $conn]] != ""} { puts $row }
+ while {[set row [sql fetchrow $conn $query]] != ""} { puts $row }
@@ -66,4 +69,4 @@
-
-
Sample Usage:
++