[Hsqldb-developers] using the connect string for text file support?

2002-03-03 Thread Mark D. Anderson
i just looked at bob preston's patch which adds some text file support to hsqldb. i'm wondering how hard it would be to add support for this in the jdbc connect string? that way (at least in the case that i'd like all my tables to be text files), i needn't make all my DDL be special cased, just b

[Hsqldb-developers] why not use Thread.setDaemon(true)?

2002-03-13 Thread Mark D. Anderson
i note that hsqldb is currently not using Thread.setDaemon(true) on its threads. That means that they behave like user threads, and will prevent a program from exiting, even after the main thread completes. -mda ___ hsqldb-developers mailing list [EM

Re: [Hsqldb-developers] why not use Thread.setDaemon(true)?

2002-03-13 Thread Mark D. Anderson
I should add: ... if any hsqldb connections are left open at completion of main(). If you close all your connections, then the program exits when main() completes. But note that this means that an uncaught exception may not exit your program, if it throws past connection closing. (this is all wi

[Hsqldb-developers] broken demo directory files

2002-03-15 Thread Mark D. Anderson
the html files in demo/ just can't possibly work, unless i'm missing something. for example, demo/memoryquery.html has: -mda ___ hsqldb-developers mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/hsqldb-developers

Re: [Hsqldb-developers] broken demo directory files

2002-03-24 Thread Mark D. Anderson
> There is no link between WebServerConnection.java and the codebase="../lib/" > in the demo html file. None whatsoever. > > I wrote the .html tags when I did the packaging for 1.60 and tested > QueryTool successfully as an applet. i'm guessing you aren't using hsqldb's mini web server then? my

Re: [Hsqldb-developers] broken demo directory files

2002-03-24 Thread Mark D. Anderson
> If you are using the WebServer, you can put a copy of the hsqldb.jar > ... right; i know how to make it work (otherwise this would be on the users discussion list :)). my point is that either it should be made to work with the WebServer (unlikely, since that would undermine file: url browsing),

Re: [Hsqldb-developers] On The Subject Of Prepared And Callable Statements:

2002-04-09 Thread Mark D. Anderson
The reason that in many databases a client prepare() call does not talk to the server, is that the server implements a parse cache which largely obviates it. In oracle they call this the "shared sql cache". This makes sense actually -- since it is primarily server work that is being saved, that