Sorry for the uncertainty in terminology.
I do not know what proper terminology should be used.
I knew the possibility that software in integrated mode
might behave differently from the stand alone mode.
For example, BeanShell bundled in OO might work
differently from BeanShell stand alone.
Here is the convention that I have been using
from the beginning of this discussion thread:
** software labels
BeanShell stand alone:
BeanShell running without any involvement of OO
the bsh.jar downloaded directly from www.bsh.org
invoked by "java.exe bsh.Interpreter"
OO BeanShell:
the BeanShell integrated in OO
invoked through OO from (OO dir)/program/classes/bsh.jar
OO HSQL:
the hsqldb.jar integrated in OO
invoked through OO Base from (OO dir)/program/classes/hsqldb.jar
HSQL stand alone:
HSQL running without any involvement of OO
the hsqldb.jar downloaded from www.hsqldb.org
invoked in MS DOS command line dialog window
by one of the following
"java -cp d:/hsqldb/lib/hsqldb.jar org.hsqldb.util.DatabaseManagerSwing"
"java -cp d:/hsqldb/lib/hsqldb.jar org.hsqldb.util.DatabaseManager"
** DB file labels
HSQL stand alone file
the convention of HSQL DB engine
a set of separate files as <root name>.<extension>
including <root name>.script (the SQL content)
I mainly test the following variety:
type HSQL Database Engine Standalone
driver org.hsqldb.jdbcDriver
URL jdbc:hsqldb:file:<drive>:/<dir>/<root name>
I have not tested:
type HSQL Database Engine Server
driver org.hsqldb.jdbcDriver
URL jdbc:hsqldb:hsql://<localhost>/
OO HSQL file (*.odb):
HSQL DB files wrapped (embedded) in OO zip package
HSQL DB files in database/<extension>
including database/script (the SQL content)
I rarely test *.odb files:
for JDBC connection
*.odb acting as memorized conneciton agent
containing no actual data (HSQL files not embedded)
** connection labels
OO JDBC connection:
OO Base connection to HSQL stand alone files
There is no database directory in the *.odb file.
There are no database/* files in the *.odb file.
HSQL DB files are not embedded in the *.odb file.
HSQL DB files are separate and outside of the *.odb file.
OO JDBC connection test:
the "test connection" button
in the OO JDBC connection
in the user account dialog
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]