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? ... |
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 ... |
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 ... |
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 ... |
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 ... |
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 ... |
how much data java derby DB can store?
|
|
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 ...
|
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 ... |
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 ... |
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. ... |
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 ... |
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 ... |
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 ... |
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 ... |
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: ... |
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 ... |