Tagged Questions

0
votes
1answer
21 views

derby.log (etc) control in a webapp

Derby has a series of configuration options that are controlled by system properties. It's quite painful to arrange system property settings in a webapp. Has anyone come up with a …
0
votes
0answers
20 views

Derby gets stuck closing?

I've got unit tests (in maven) that use derby. At the end of the test run, there is a very long pause, with these log messages before the pause. INFO: Closing Hibernate SessionFa …
1
vote
6answers
1k views

Delete all tables in Derby DB

How do i delete all the tables in the schema on Apache Derby DB using JDBC?
1
vote
4answers
56 views

Using two different databases with identical hibernate mapping files

Basically the idea is to use the same hibernate mapping files for two different underlying databases. In production the underlying database is MySQL5 and for testing purposes I'd l …
-1
votes
2answers
72 views

ClassNotFoundException

I'm getting the following error when I try to run a Java class which interacts with Java DB. I try loading driver with : Class.forName("org.apache.derby.jdbc.EmbeddedDriver"); …
0
votes
3answers
170 views

Using SQL in Java with package java.sql

Hello, during a lecture my professor gave examples of several actions involving databases and the java.sql package. These examples were supposed to be uploaded online in a pdf file …
0
votes
3answers
74 views

SQLite , Derby vs file system

Hi All, I'm working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database …
0
votes
1answer
117 views

Update several columns at once in Derby

DB2 supports this syntax: UPDATE DEST D SET (AAA,BBB) = ( SELECT MAX(Z.AAA), MAX(Z.BBB) FROM OTHER O WHERE O.ID = D.ID ) i.e. I can run a select which returns more than one …
4
votes
11answers
260 views

SQL LIKE Performance with only the wildcard (%) as a value

I am wondering what the performance of a query would be like using the LIKE keyword and the wildcard as the value compared to having no where clause at all. Consider a where claus …
1
vote
2answers
286 views

How do you start derby in network server mode and still get an embedded connection?

I just want to know how I can start derby in network server mode and still be able to get an embedded connection? Thank you.
1
vote
3answers
52 views

Limit Derby Log File Size

Hi All, Our app sends the contents of the derby.log file to our server whenever Apache Derby throws a SQLException in our app. In order to get detailed logs, we are setting the ' …
0
votes
1answer
26 views

Listing Apache Derby Active Connections

Is it possible to query apache derby for a list of current connections/active sessions? Any system tables etc? thanks, Phillip
0
votes
2answers
87 views

Managing concurrent access to an Apache Derby database

Hi, I have an Apache Derby database running (in networked mode) inside a java swing application, I connect to it through direct JDBC calls via a java client application. This is a …
1
vote
6answers
860 views

Apache Derby: how can I do “insert if not exists”?

I'm giving Apache Derby, aka JavaDB a spin. I can't seem to get around duplicate key issues when inserting records that may already exist. Is there a Derby equivalent to "insert …
5
votes
6answers
352 views

Which embedded database has maximum SQL compliance, and concurrency support?

My application at present uses Microsoft Access, but now may be hosted on Linux boxes. Additionally while being accessed from multiple computers, one of these may update the record …

1 2 3 next
15 30 50 per page