Re: creating a database

2018-04-08 Thread Bob M
got it now.. many thanks :) Bob M -- Sent from: http://apache-database.10148.n7.nabble.com/Apache-Derby-Users-f95095.html

Re: creating a database

2018-04-08 Thread Bryan Pendleton
You probably didn't really mean to create the database in the root level of your filesystem. (C:\) It's not uncommon for the root of the filesystem to have special security restrictions. Try making a folder in your home directory, and try creating your database there. On Sat, Apr 7, 2018 at 8:37

creating a database

2018-04-07 Thread Bob M
Hi when I try to create a dbase named us_copiosus_USDJPY I get the enclosed error message not sure where to go from here ? Bob M -- Sent from: http://apache-database.10148.n7.nabble.com/Apache-Derby-Use

Re: Enabling encryption using DataSource after creating a database

2008-10-20 Thread Iwud H8u
>> >> But this does not seem to enable encryption because when I shut down the >> database and try to reconnect to it by passing it the wrong >> bootpassword/no >> bootpassword, it boots up the database. Is there any way of enabling >> encryption using EmbeddedDataSource? >> >> Thanks, >> Jay > > -- > Knut Anders > > -- View this message in context: http://www.nabble.com/Enabling-encryption-using-DataSource-after-creating-a-database-tp20040339p20073274.html Sent from the Apache Derby Users mailing list archive at Nabble.com.

Re: Enabling encryption using DataSource after creating a database

2008-10-20 Thread Knut Anders Hatlen
Iwud H8u <[EMAIL PROTECTED]> writes: > Hi All, > > I am using EmbeddedDataSource to create a database and in a separate step > enable authentication and encryption on the database. I have enabled > authentication using the following code: > > // set authentication > Callab

Enabling encryption using DataSource after creating a database

2008-10-17 Thread Iwud H8u
Source.getConnection(); But this does not seem to enable encryption because when I shut down the database and try to reconnect to it by passing it the wrong bootpassword/no bootpassword, it boots up the database. Is there any way of enabling encryption using EmbeddedDataSource? Thanks, Jay

[Fwd: Re: Creating a database - network security]

2006-05-31 Thread David Van Couvering
--- Begin Message --- How are they blocked from running the program? Is it being loaded as an applet and they are running into security exceptions? Or is a firewall blocking them somehow? What exactly is happening? If it's the former, the way you handle this is by getting a certificate and

Re: creating a database from my application, best practice

2006-01-23 Thread Andrus Adamchik
Also Cayenne PetStore example contains code that bootstraps the database when the web app is deployed for the first time: http://objectstyle.org/confluence/display/CAY/Cayenne+PetStore It can be used as a template for new apps. It checks if the Derby schema is present, and if not, sets up th

Re: creating a database from my application, best practice

2006-01-23 Thread Daniel John Debrunner
Manjula G Kutty wrote: > You can write all your SQL statements in a sql file and just pass that > sql file name as a string in your application. I think your application > is in java, then you can pass the file name like this > > org.apache.derby.tools.ij.main(new String[ ] {"-fr", "schema.sql"}

Re: creating a database from my application, best practice

2006-01-23 Thread Manjula G Kutty
Ingimar Erlingsson wrote: Hello! Thank you for derby! I have a question, did follow the example in 'db-derby-10.1.2.1-bin\demo\simple\simpleapp.java' in the demo only one table is created. My database, which I have now in mysql has 8 tables and relationships between them. I would like to

creating a database from my application, best practice

2006-01-21 Thread Ingimar Erlingsson
Hello! Thank you for derby! I have a question, did follow the example in 'db-derby-10.1.2.1-bin\demo\simple\simpleapp.java' in the demo only one table is created. My database, which I have now in mysql has 8 tables and relationships between them. I would like to create my database from within my