Author: IchBinIchBin Date: Oct 3, 2006 17:15
Joydeep wrote:
> Hi,
> [snip]
> schemas (named "INFORMATION_SCHEMA" & "PUBLIC") which are not created
> by me & at the same time I see a text file named "j2" is created with
> the following code :
>
INFORMATION_SCHEMA and PUBLIC SCHEMA are automatically built in a
database. If you do not define a database with a schema it is put under
a public schema. "INFORMATION_SCHEMA" is the information about the
database and contents.
Look at the documentation...
[snip]
> try
> {
> Class.forName("org.hsqldb.jdbcDriver");
> con =DriverManager.getConnection("jdbc:hsqldb:e:/j2",
> "","");
Your connect statement does not look correct:
|