1. Can an embedded Derby database be accessed for analysis from a program like MS Access/ExcelP stackoverflow.comHello
|
2. What to keep alive and what to recreate in a simple embedded database? stackoverflow.comIn 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.comI have a Java app that has an embedded Derby database (no hibernate though). The app is using the following properties:
Everything is working ... |
4. Specify at run-time where to create or open Derby embedded database stackoverflow.comI 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.comNeed 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.comI'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.comhow much data java derby DB can store? |
8. fail to create embedded derby java stackoverflow.comI created a embedded derby in JDBC mode but when I try to access it in java class it gives me error:
|
9. java embedded derby table/view stackoverflow.comI 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.comI'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.comI'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.orgPosted: 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.orgThis 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.comHello 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.comHi 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.comIf 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.comI 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 ... |