Small. Fast. Reliable.
Choose any three.
*** 15,17 ****
--- 15,28 ----
    package require sqlite 2.0
  
  depending on how cautious you want to be--and assuming that you're using version 2 of the library! (The second and third choices are probably best in most cases. Use the first choice to find the most recent version you've installed.)
+ 
+ -----
+ If you want to use tclSqlite with ActiveState Tcl under windows. All you need to do is "load" the .dll file
+ 
+    load C:\\Tcl\\lib\\tclsqlite3.dll sqlite3
+    sqlite3 db1 testdb
+    db1 close
+ 
+ (I found this solution after a LONG search ... on the mailing list. The solution was given by Gerry Snyder. Thanks Gerry!)
+ 
+ This is not the cleanest install (and is very easy to break if you change the .dll location) but it works.