Re: [sqlite] append sql file

2010-12-06 Thread Teg
Hello CDN, Why don't you embed it as a blob? Make a table just for your text and feed it into the DB? Seems like a better idea than appending to a DB file that might just extend itself right over your text with the next insert. C Monday, December 6, 2010, 12:53:19 PM, you wrote: CM> Hi, CM>

Re: [sqlite] append sql file

2010-12-06 Thread Igor Tandetnik
CDN Mark wrote: > thanks Igor, that works, but without the period at the end, as in */ Of course. The period is there to signal the end of the sentence, as is customary in English prose. It was not part of comment syntax. -- Igor Tandetnik

[sqlite] append sql file

2010-12-06 Thread CDN Mark
thanks Igor, that works, but without the period at the end, as in */ Mark ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Re: [sqlite] append sql file

2010-12-06 Thread Igor Tandetnik
CDN Mark wrote: > was wondering if there was a way to have extra text on the end of an sql > file, after the COMMIT; ? > I'd like to combine two functions onto the one file, the text would be read > by another programme, but how can I tell SQLite to > ignore what's after

[sqlite] append sql file

2010-12-06 Thread CDN Mark
Hi, was wondering if there was a way to have extra text on the end of an sql file, after the COMMIT; ? I'd like to combine two functions onto the one file, the text would be read by another programme, but how can I tell SQLite to ignore what's after the COMMIT mtia Mark