embed « derby « Java Database Q&A





1. Can an embedded Derby database be accessed for analysis from a program like MS Access/ExcelP    stackoverflow.com

Hello
I would like to access data stored in an embedded Derby database by my Java application from a program like MS Access/Excel, Open Office, etc?
Is there a way of doing this? ...

2. What to keep alive and what to recreate in a simple embedded database?    stackoverflow.com

In a desktop application with an embedded Derby database, what should I keep alive (as opposed to recreating each time when talking with the database) for the whole lifetime of the ...

3. Apache Derby Embedded Mode Deployment    stackoverflow.com

I have a Java app that has an embedded Derby database (no hibernate though). The app is using the following properties:

datasource.driverClassName = org.apache.derby.jdbc.EmbeddedDriver
datasource.url = jdbc:derby:C:/derby/mydb;
datasource.username = 1234
datasource.password = 1234
Everything is working ...

4. Specify at run-time where to create or open Derby embedded database    stackoverflow.com

I want to be able to define the folder where a Derby embedded database will be created after I start my application (which will someday migrate to a web application). The ...

5. Using Embedded JavaDB    stackoverflow.com

Need to move the database and log files of JavaDB (derby) db files into deployment directories. The database is working in the application startup directory as JavaDB creates a folder ...

6. Setting up an embedded Derby database in a standalone Java application    stackoverflow.com

I'm trying to setup an embedded Derby database for a standalone Java application, but after pouring through all sorts of documentation, I just can't seem to find any simple explanations or ...

7. how much capacity Embedded derby has?    stackoverflow.com

how much data java derby DB can store?

8. fail to create embedded derby java    stackoverflow.com

I created a embedded derby in JDBC mode but when I try to access it in java class it gives me error:

java.sql.SQLException: Failed to create database 'myDB', see the next ...

9. java embedded derby table/view    stackoverflow.com

I created Embedded Derby database it give me error.although I have APP schema in which table REST created java.sql.SQLSyntaxErrorException: Table/View 'REST' does not exist. at org.apache.derby.impl.jdbc.SQLExceptionFactory40.getSQLException(Unknown Source) at org.apache.derby.impl.jdbc.Util.generateCsSQLException(Unknown Source) at org.apache.derby.impl.jdbc.TransactionResourceImpl.wrapInSQLException(Unknown Source) at org.apache.derby.impl.jdbc.TransactionResourceImpl.handleException(Unknown Source) at ...





10. Using a given embedded Derby database within a .war on different systems    stackoverflow.com

I'm currently working with GWT on a Web app and I create a Derby database through the ant build.xml and pack it within the .war. The .war file can be deployed ...

11. Embedded (pure Java) database for Clojure    stackoverflow.com

I'm in need for an embedded database for a Clojure application. Maybe it's the same criteria as for any other Java application but I rather get some other people's opinion anyway. ...

12. embedded derby database url?    forums.netbeans.org

Posted: Wed Jan 27, 2010 8:30 pm Post subject: embedded derby database url? I have checked this list and not found an answer to the problem I am ...

13. Directory permission for embedded Derby DB in a java app    forums.netbeans.org

This is a very frustrating issue. I created a java app with an embedded Derby DB for WIndows Vista. I have no issues when bringing up the App via Netbeans. HOWEVER, after I created an installation package and installed it, the Derby DB can not open the *.lck file. As a result it is opened in a Read-Only mode, i.e. I ...

14. Embedding Derby    coderanch.com

Hello Campbell, Thank you for your reply and I've already found how to install Derby from it's official web site. My question is about whether that installation is required when using that Embedding technology. If I have to install derby before using my standalone application it's little bit painful as my application depends on the installation of the DB. Instead, What ...

15. datatypes in Derby embedded database    coderanch.com

Hi there, I'm developing a java system that is to read from a Derby embedded database, which will generate from a central Sybase database. I'm currently writing the code to create and populate this database. Some of the data fields in the central db are of the TEXT datatype (cos the data is 300-400 character length), and Derby seems to react ...

16. embedded derby - doesn't start automatically    coderanch.com

If i start the derby database manually inside netbeans, my java desktop app works. if not, i get an sql 8001 reason code 4000 - connection refused. From the Apache docs, it seems that it should start automatically. I quote: Load the Embedded JDBC Driver The SimpleApp application loads the Derby Embedded JDBC driver and starts Derby up with this code: ...





17. embedding a derby database    forums.oracle.com

I have recently written a small client/server program in java. I have the client connect to the server and send information back and forth. the server is on the same computer as the derby database, and handles all the communication between the java code and the derby database, ie: sql commands. Currently i am starting derby from inside the netbeans ide ...