Re: [sqlite] tclsqlite3.dll Errors

2005-03-18 Thread Peter G. Brown
Thank you... For any future rookie: I upgraded to 8.4.9 and putting the following in a file: load c:/tcl/lib/tclsqlite/tclsqlite3.dll sqlite3 sqlite3 db test.db db eval {CREATE TABLE t1(a,b,c)} db eval {INSERT INTO t1 VALUES(1,2,3)} db eval {INSERT INTO t1 VALUES('hello',NULL,'world')} db close ...

Re: [sqlite] tclsqlite3.dll Errors

2005-03-18 Thread D. Richard Hipp
On Fri, 2005-03-18 at 12:19 -0500, Peter G. Brown wrote: > Hello, > > OS: Windows XP SP2 > Directory: D:\Program Files\Tcl > Path has D:\Program Files\Tcl in it. > Tcl: Tcl/Tk 8.3 for Windows, Binary Distribution > Sqlite: sqlite 3.1 > tclsqlite: tclsqlite-3.1 > The first thing I would do is try

[sqlite] tclsqlite3.dll Errors

2005-03-18 Thread Peter G. Brown
Hello, OS: Windows XP SP2 Directory: D:\Program Files\Tcl Path has D:\Program Files\Tcl in it. Tcl: Tcl/Tk 8.3 for Windows, Binary Distribution Sqlite: sqlite 3.1 tclsqlite: tclsqlite-3.1 tclsqlite3.dll is in D:\Program Files\Tcl\lib\tclsqlite I have the following piece of code: load tclsqlite sqli