Tagged Questions
Java DB is Sun's supported distribution of the open source Apache Derby 100% Java technology database. It is fully transactional, secure, easy-to-use, standards-based SQL, JDBC API, and Java EE yet small, only 2.5 MB.
5
votes
1answer
351 views
Using Embedded JavaDB
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 with the name ...
4
votes
2answers
669 views
Retrieve id of record just inserted into a Java DB (Derby) database
I am connecting to a Java DB database with JDBC and want to retrieve the id (which is on auto increment) of the last record inserted.
I see this is a common question, but I see solutions using for ...
4
votes
2answers
1k views
Derby/JavaDB vs SQLiteJDBC
I found a lot of comparisions here, but not this one;
So, what is best in each one?
4
votes
2answers
422 views
user table with javaDB and Hibernate from within grails
let's see if I can ask this in an understandable way...
I started with grails and created a domain class called user. As far as I understand, Hibernate is used to map this domain class to the ...
3
votes
2answers
124 views
java.sql.SQLException: Schema 'ROOT' does not exist
i am using hibernate with embeded derby, and i want hibernate to create the database and the tables, so i tried the following configuration, but i am getting the error:
java.sql.SQLException: Schema ...
3
votes
1answer
176 views
JavaDB - Checking if a database exists
We created a java application which uses the JavaDB database in Netbeans IDE. We want the program to check every time it starts if the database's tables have already been created, and otherwise create ...
3
votes
1answer
361 views
JavaDB ( derby ) path to database?
Using the embedded driver I can connect to my derby database using the JDBC url:
jdbc:derby:mydbname
But, I usually put the full path for the db like:
jdbc:derby:/Users/oreyes/dbs/mydbname
Is ...
3
votes
3answers
504 views
How can I identify columns when SELECTing from multiple tables with JDBC?
I have two tables that I join on the id-column, they look like:
+-------+
| users |
+----+--+---+
| id | name |
+----+------+
+-------+
| posts |
+-------+------+---------+
| id | user_id | message ...
3
votes
1answer
135 views
JavaDB SQL command reduntant?
Correct me if I am wrong, but this SQL command:
create table MYTABLE (ID INTEGER NOT NULL PRIMARY KEY GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1))
does not need the NOT NULL part, ...
2
votes
2answers
120 views
How to SELECT data from in-memory Derby database table?
I have created an in-memory database table using JavaDB/Derby. I can INSERT data into the table. But it doesn't work when I try to SELECT data from the table.
I create the table with:
DECLARE GLOBAL ...
2
votes
2answers
156 views
INSERT, and get the auto-incremented value
Consider the following table:
create table language (
id integer generated always as identity (START WITH 1, INCREMENT BY 1),
name long varchar,
constraint language_pk primary key (id)
);
...
2
votes
1answer
58 views
JavaDB: get ordered records in the subquery
I have the following "COMPANIES_BY_NEWS_REPUTATION" in my JavaDB database (this is some random data just to represent the structure)
COMPANY | NEWS_HASH | REPUTATION | DATE
...
2
votes
1answer
110 views
PersistenceException with Umlaut in path
I experienced an odd behavior with a java desktop application that uses Toplink essentials as persistence provider.
I have a single directory containing all I need for my application: a jar, a lib ...
2
votes
0answers
359 views
Embedded nosql open source java database
I'm developing an open source product and need an embedded dbms.
Can you recommend an embedded open source database that ...
Can handle objects over 10 GB each
Has a license friendly to ...
2
votes
4answers
356 views
Is Derby/Java DB included in Java 6?
I've read in a couple of places that Derby/Java DB is included in Java SE 6, e.g. http://java.sun.com/developer/technicalArticles/J2SE/Desktop/javase6/beta2.html but I can't find anyone who has used ...
2
votes
1answer
222 views
How to use javadb as sql parser
About a month ago i built an application that used zSQL as the SQL parser to parse sql. However, just few days ago, a heave duty user sent in a multi row insert statement which zSQL doesnt support. ...
2
votes
1answer
87 views
How can I detect what version of JavaDB/Derby I'm using?
I use JavaDB (Derby) as an embedded database in my Java Swing application. I would like to detect and print the version of JavaDB I'm using. I have included derby.jar in my .jar-file for the ...
2
votes
1answer
2k views
Automatically start JavaDB (Derby) on GlassFish
I am planning to deploy GlassFish v3 open source edition to a production environment. It comes with JavaDB (Apache Derby) which is just want I need. The only problem is that JavaDB is not started by ...
2
votes
1answer
261 views
Distribute a database made with JavaDB with Java program
I'm creating a program in Java in which I have to use a lot of tables.
I made the decision to create all those tables in a JavaDB file.
However, now I want to distribute this filled JavaDB file with ...
2
votes
2answers
2k views
NETBEANS JAVADB - How do I integrate a JavaDB DataBase into my main Java Package
JAVA
I am working on a desktop application which uses JavaDB.
I am using NetBeans 6.8 and JDK 6 Update 20
I created the database I need and connected to it through my application using ClientDriver:
...
2
votes
1answer
624 views
How to deploy a Java Swing application with an embedded JavaDB database?
I have implemented an Java Swing application that uses an embedded JavaDB database. The database need to be stored somewhere and the database tables need to be created at the first run. What is the ...
2
votes
2answers
783 views
How should I store an Java Enum in JavaDB?
How should I store an Java Enum in JavaDB?
Should I try to map the enums to SMALLINT and keep the values in source code only? The embedded database is only used by a single application. Or should I ...
2
votes
1answer
942 views
How do I set up derby in eclipse on Ubuntu?
The question basically says it all. I'm trying setup up JavaDB on my virtualbox running Ubuntu 9.10.
I have the package downloaded and installed through the package manager, which I believe is the ...
2
votes
1answer
179 views
Making a connection between multiple databases
I'm using JAVA DB (derby)
I want to import a public view of my data to another database (also in java db).
I want to pass this data and save in to the other database. I'm having trouble since the ...
2
votes
1answer
106 views
JavaDB connection error (network protocol)
I'm trying to connect to derby using this:
dbProperties.put("create", "true");
dbProperties.put("dataEncryption", "true");
dbProperties.put("encryptionAlgorithm", "DES/CBC/NoPadding");
...
2
votes
3answers
1k views
JavaDB connection issues; database not found
I am having a problem with Java DB that I just don't know how to resolve. I am creating a DB and connecting to it using Java DB's native JDBC driver. If I relocate that database physically and try ...
1
vote
1answer
160 views
How to create an in-memory database table using Derby?
I would like to create an in-memory database for testing purposes using Derby/JavaDB. I have read Java DB Developer's Guide: Using in-memory databases and tested with this code with derby.jar from ...
1
vote
1answer
98 views
Hibernate Mapping Files and POJOs from DB (Reverse Engineering) doesn't generate Foreign Keys
I did this tutorial, and configured the Hibernate API and the mapping:
netbeans.org/kb/docs/web/hibernate-webapp.html
(i'm using the JavaDB API with the 'sample' DB not MySQL)
But i have a problem:
...
1
vote
2answers
51 views
Java DB checking against Date/Time fields (event handling)?
How can I come up with a mechanism in java where I could monitor the date/time fields inside a Java DB table and as soon as the the date/time fields for one or many of the records match the system ...
1
vote
1answer
221 views
calling derby (java db) 'show tables' from jdbc
I need to enumerate the tables in a Derby (aka Java DB) database using JDBC in a Java program. All I am aware of for doing this is the SHOW TABLES command.
I first tried with something similar to ...
1
vote
1answer
511 views
Connecting to an Apache Derby/JavaDB database using Oracle SQL Developer
I've been trying to connect to an Apache Derby/JavaDB embedded database using Oracle SQL Developer but without much success.
I've tried to create a new connection using the following JDBC URL:
...
1
vote
1answer
119 views
how to use 'BETWEEN' condetion two times in one sql statement for same column or diffrent columns
this is sql statement give only one value
SELECT count(pn1) FROM pledges
WHERE date1
BETWEEN '2011-05-05' AND '2011-06-06'
i want use "between" more than one time for same column or for different ...
1
vote
3answers
1k views
Java DB / Apache Derby with Android
Can I integrate Java DB or Apache Derby in my Android application? Or any inline or embedded database. Can anyone suggest code for it?
I need some code because i have to make examples, not in theory.
...
1
vote
1answer
554 views
What is Derby's equivalent of DB2's “NOT NULL WITH DEFAULT”
I'm investigating how feasible it is to change some unit tests (for an application running on DB2) to use Derby. Having found this question where the answer claims that DB2 and Derby are very ...
1
vote
2answers
229 views
What is the difference between HSQLDB and JavaDB? Which one is suitable for unit testing?
Could you tell me the differences between HSQLDB and JavaDB? And which one should I use in unit testing, assuming that I only use standard features? Thanks.
1
vote
0answers
87 views
Need help on loadin text file in database using java
I have a requirement to load text files in to access db.Fo example i have 10 test files saved in c://Input file names format is 123_File1.txt etc. The table contains two columns (Id,data).I want to ...
1
vote
3answers
6k views
Create autoincrement key in Java DB using NetBeans IDE
I'm coming from MySQL world, please help.
Is it possible to create autoincrement key from NetBeans IDE in JavaDB?
Do you use some more advanced db clients, which?
Thanks.
1
vote
1answer
169 views
what does mean “SQL Error: 30000, SQLState: XSAI3”?
I'm using javadb/derbydb 10.5.3.0 with hibernate 3.5-Final I get this error at the end of EM initialisation :
4427 [SwingWorker-pool-1-thread-1] WARN org.hibernate.util.JDBCExceptionReporter - SQL ...
1
vote
1answer
200 views
How to implement Auto_Increment per User, on the same table?
I would like to have multiple users that share the same tables in the database, but have one auto_increment value per user. I will use an embedded database, JavaDB and as what I know it doesn't ...
1
vote
1answer
346 views
JavaDB/Derby Error 08006
In the article Using Java DB in Desktop Applications the Address Book demo have a method disconnect which have a try-catch block that catch and ignores the exception. If you add a printStackTrace you ...
1
vote
2answers
307 views
JavaDB dual installation
on WIN XP SP3 and Netbeans 6.7.1 IDE,
I have installed Java SDK 6.17 which includes JavaDB. I set the JavaDB directory to ...\Java\JavaDB at the Java installation script with %DERBY_HOME% set ...
1
vote
2answers
710 views
In-memory Java DB
Are there any DBs for Java that can be run in an embedded mode with some tables being stored in-memory while loading others from disk? H2 and JavaDB seem to be the two leaders for Java DBs and I know ...
1
vote
2answers
2k views
Truncate a VARCHAR to specific length in Derby AUTOMATICALLY
How can I truncate a VARCHAR to the table field length AUTOMATICALLY in Derby using SQL?
To be specific:
CREATE TABLE A ( B VARCHAR(2) );
INSERT INTO A B VALUES ('1234');
would throw a ...
1
vote
2answers
4k views
JavaDB: Is it possible to change auto-increment offset on existing table?
Is it possible to change the auto-increment offset on a pre-existing table with JavaDB?
I'm having a problem where inserting new records usually (but not always) fails with an error complaining ...
0
votes
1answer
44 views
Creating a foreign key in Java db (Netbeans)
I've been having problems creating a foreign key in Java Db through Netbeans. I'm pretty sure I have to use an SQL command to change an attribute in the PLAYERS table into a foreign key as I can only ...
0
votes
0answers
20 views
JavaDB integration to a project
I would like to use JavaDB in my project so I will use a tutorial and learn how to make it work. However I have a few question before using it.
When the user will setup my application, how and where ...
0
votes
2answers
38 views
JavaDB wont start on App start, giving me a java.sql.SQLNonTransientConnectionException:
java.sql.SQLNonTransientConnectionException: java.net.ConnectException :
Error connecting to server localhost on port 1527 with message Connection refused: connect.
I am using Netbeans.
If I go to ...
0
votes
1answer
48 views
can JavaDB use SQL statements?
I need to make a project in java where I am going to create a database, but my problem is, I don't know what to pick, I have knowledge about SQL(Select * from ) so on and so forth, but the thing is ...
0
votes
3answers
59 views
JavaDB/Hibernate/Swing autosort
I have a Java swing application with Hibernate and network JavaDB/DerbyDB. There is a table which is like this in structure:
TestID QuestionID
T1234 Q1
T1234 Q2
T1234 Q3
T1234 Q4
..
...
0
votes
1answer
53 views
javac: package org.apache.derby.client.am does not exist
I'm trying to compile a java program that is using JavaDB/Derby. On the command line I can run
java org.apache.derby.tools.sysinfo
without errors, but the following line in several of the files ...