Is anybody successfully using the sqlite interface
(http://arclanguage.org/item?id=2186) on linux?
I have installed and compiled everything. Then started sqarc and typed some test queries like this: uvl@DL:~$ arc
Use (quit) to quit, (tl) to return here after an interrupt. arc> (= ff (db+ "test3")) (#<input-port> #<output-port>) arc> (sql ff "create table foo (id integer primary key, text varchar(255))") nil arc> (sql ff" insert into foo (text) values ('first');") Error: "tcp-write: error writing (Broken pipe; errno=32)" arc> What's my error? |