Re: [sqlite] Newbie question: sqlite.exe command usage?

2004-11-18 Thread Clay Dowling
Josh Don said: > I have read http://www.sqlite.org/sqlite.html > > I want to get something like this working: > > [C:\test.js] > WS=new ActiveXObject('WScript.Shell') > WS.Run('C:\\sqlite.exe "C:\\test.db" .read "C:\\query.txt" .output > "C:\\OUT.txt" ') > > [C:\query.txt] contains... > select * fr

Re: [sqlite] Newbie question: sqlite.exe command usage?

2004-11-18 Thread yesso
hello :) how can i store an image as a blob in sqlite about the java wrapper classes? thX yesso

[sqlite] Newbie question: sqlite.exe command usage?

2004-11-17 Thread Josh Don
I have read http://www.sqlite.org/sqlite.html I want to get something like this working: [C:\test.js] WS=new ActiveXObject('WScript.Shell') WS.Run('C:\\sqlite.exe "C:\\test.db" .read "C:\\query.txt" .output "C:\\OUT.txt" ') [C:\query.txt] contains... select * from sqlite_master; What's up

[sqlite] Newbie question: sqlite.exe command usage?

2004-11-17 Thread Josh Don
I have read http://www.sqlite.org/sqlite.html I want this to work: [C:\test.js] WS=new ActiveXObject('WScript.Shell') WS.Run('C:\\sqlite.exe "C:\\test.db" .read "C:\\query.txt" .output "C:\\OUT.txt" ') [C:\query.txt] contains... select * from sqlite_master; What's up? I have searched fo