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.

learn more… | top users | synonyms (1)

0
votes
0answers
13 views

Java db adding value into field with an autoincrement key using netbeans 7.3

I used only MySQL before so I have some troubles to manage Java DB in netbeans. I faced a problem while adding a new record into table. It contains the ID field with autoincrement key. In MySQL its ...
-1
votes
1answer
25 views

Violation on Foreign Key

Hi I am a beginner in java db netbeans., I have two tables namely transaction and checks tables in transaction table I have columns named [transID], [PayToOrder], [BankCode], [Checknumber]. in checks ...
0
votes
0answers
16 views

Why is BoneCP causing Derby ShutdownException after instantiation?

Basically I do: CONNECTION_POOL = new BoneCP(config); And then right after: CONNECTION_POOL.getConnection().createStatement("SELECT * FROM myTable"); which will sometimes (not always) throw a ...
0
votes
0answers
45 views

can two Java classes query the same table in the same database? [closed]

I have plans on allowing the beta-testers of my math game to see their data two ways. The first way is the default way; the tables will really be two views that query the GameDataRecords. They will ...
-2
votes
1answer
31 views

packaging a java application with java DB in an embedded mode in netbeans [closed]

I have developed a java application not a java desktop application with a java DB to interact with it, all in netbeans. Now i want to package it and deploy it for distribution. So i guess the java DB ...
0
votes
1answer
39 views

Performance Impact of turning Columns into Rows

I'm planning to use JavaDB (Derby) or PostgreSQL. I have the following problem: I need to store a large set of vectors. Currently all vectors contain a fixed number of elements. Hence the appropriate ...
0
votes
1answer
19 views

JavaDB Embedded IDE NetBeans

I am attempting to make a simple DB desk top application using JavaDB embedded. I am using NetBeans as my IDE which is why I decided to use JavaDB and I have the property ;create=true appended to my ...
1
vote
1answer
42 views

apache derby: specifying an ID for a column “GENERATED BY DEFAULT AS IDENTITY”

The following sql statements for apache derby works fine: connect 'jdbc:derby://uri'; create schema TEST02; set schema TEST02 ; create table T ( id INT not null primary key GENERATED BY ...
0
votes
0answers
26 views

How to Set properties of Java-db in netbeans in linux mint 13 (maya)

i am having a problem. i use linux mint 13 maya. i have installed open JDK 7. and netbeans 7.3.. but when i start to work with database in netbeans. i face a problem. when i right click in the Java ...
0
votes
1answer
21 views

How databases are saved

I am trying to implement databases into my Java applications, but before I am able to do that, I need to know: where will the data be stored? Will a person that is using my program be able to fully ...
0
votes
3answers
56 views

Database usage in a Java program

I have found out, from multiple sources, that object serialization is primarily for storing objects so that they could be sent across a network, to be remade. It even has to be tested: ...
-3
votes
1answer
60 views

Why this foreign key restriction is not allowed? And what would a good solution be? [closed]

I don't see why it does not allow this: create table item(" + "id varchar(200) primary key," + "name varchar(200)," + "borrowerid ...
0
votes
1answer
135 views

Java - Storing image as a Blob in JavaDB

I'm trying to insert an image into a database, but getting the following: java.sql.SQLDataException: An attempt was made to get a data value of type 'BLOB' from a data value of type ...
0
votes
0answers
49 views

How can easily view a table in netbeans JavaDB database that is created in the project folder

I created a JavaDB database in netbeans in my project folder using this (so that I can use the database on any PC without having to create it again and again): public static void main(String[] args) ...
1
vote
2answers
56 views

In JavaDB apache derby I dont know what is causing a Error: Syntax error: Encountered “)” at line 30, column 1. SQLState: 42X01

CREATE TABLE "TravelerProfile" ( "idTravelerProfile" int NOT NULL, "AccountID" int NOT NULL, "GivenName" varchar(45) DEFAULT NULL, "FamilyName" varchar(45) DEFAULT NULL, "Title" varchar(45) ...
0
votes
0answers
17 views

JavaDB throws error when boolean is used. why?

This is the table I try to create in JavaDB. CREATE TABLE USER( userid INTEGER NOT NULL PRIMARY KEY GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1), displayName VARCHAR(20) not null, ...
0
votes
1answer
244 views

java.sql.SQLException: No suitable driver found for jdbc:derby://localhost:1527/Employees1

I researched on this problem but i did not find solution. Following is my Code: package database_console; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; /** ...
1
vote
0answers
58 views

Copying large database is slow. How can I speed up the process?

I am copying a database from Java DB to MySQL. All the tables are set up correctly in MySql, and I wrote a method for copying the database. There are no errors in the method, it works perfectly on ...
0
votes
1answer
184 views

JavaDB vs HSQL vs H2 for testing simple to complex Oracle SQL's

DB layer of my product uses MyBatis to execute queries on Oracle database. Wanted to test the DB layer and be able to run the SQLs which are Oracle specific and return the mock data. From the search ...
0
votes
1answer
78 views

Using Text Box Value as the 'Where' clause in SQL query

I'm using javadb(netbeans) for a project and I am a total beginner. I have a small app which searches an address database and brings back a data grid of results. The users tpyes in all, or part of a ...
2
votes
2answers
97 views

How to use the SQL RANDOM() function in a Netbeans JavaDB

I need to do a SQL call in a small local JavaDB in Netbeans 7.2 to pull a single random row from the database. SELECT * FROM JAVA2.FORTUNES ORDER BY RANDOM() So far, I've got it to work using the ...
0
votes
1answer
381 views

Class [org.apache.derby.jdbc.ClientDriver] not found. When trying to connect to db

I have set up a project in netbeans, created a script, made a new database with javadb. I can connect to it by gui - display the tables contents etc, but when i run an application with: ...
1
vote
2answers
165 views

Is there any difference between using Java DB and Derby?

I am new to Java-based databases. I want to start with Java DB as it comes as a part of JDK. I cannot find enough resources to understand: is Java DB and Apache Derby the same thing? If yes, which one ...
0
votes
1answer
61 views

How to insert a row into a that table has an increment id with CachedRowSet?

I'm trying to insert a row into a table that has an increment id with CachedRowSet(I'm using Java wit Java DB), but I got the following SQLException: java.sql.SQLException: Failed on insert row ...
4
votes
2answers
98 views

Execute db statements from file

I use embedded Apache derby for my application. I have a SQL script called createdb.sql that creates all tables in a database and populates it with initial data, e.g.: SET SCHEMA APP; CREATE TABLE ...
0
votes
0answers
37 views

Extracted all the data I need from various HTMLs and I need to populate a JavaDB

I have extracted some data I need from a medical dictionary website (using Jsoup to crawl/scrape HTMLs) and now I need to store them in a JavaDB. I'm thinking about using 1000 diseases with their ...
0
votes
1answer
43 views

How to create tables in JavaDB and prepareStatement?

I am having problems adding data to my database when I am adding "ALTER TABLE" to my tables. I am getting the information from a web page I am working on and is written to a java method that transfers ...
0
votes
0answers
104 views

Java DB (aka Derby) doesn't restore database from a backup

As I've read from the apache manuals, I tried to restore my embedded Java DB (AKA Derby) Database using this code: private void restoreBackup() { FileDialog fileDialog = new FileDialog(new ...
0
votes
0answers
141 views

how do i access multiple tables of a database using java in NetBeans

hey there i am working on a java database project.. i have one database with 5 tables 4 of them with reference keys ... how do i access different tales of a same database. I am using JavaDB. i have ...
0
votes
1answer
75 views

similar to last() in sql, what can i use in derby database?

Select Last(column_name) from table_name will return the last value in the column in standard SQL. What is a similar query that will work in derby to fetch the last value in the column? Please find ...
0
votes
1answer
119 views

Query to fetch last value in a column in derby database table

I want to fetch last value in a column in a row in a derby db table. Can someone help me?
0
votes
0answers
54 views

Netbeans calling SQL commands from a text file

I want to get Netbeans to look at a text file where I have written loads of SQL commands to be executed. I'm sure it can be done, but searched and cannot find how. I am using Netbeans 7.3 Beta 2, OS ...
0
votes
2answers
39 views

Derby - Getting RETURN_GENERATED_KEYS doesn't seem to be thread safe when using the same Connection to create the PreparedStatement

I run two INSERT sql calls one after the other with Statement.RETURN_GENERATED_KEYS each insert has it's own unique ID assigned to it. Each call is generated with connection.prepareStatement where ...
0
votes
1answer
95 views

How to Create Database IDs from Java Code?

I am manually incrementing my ID number in my database as I can't get it to work automatically. It is for a project and doesn't matter if it doesn't work automatically - I can try and solve that ...
0
votes
3answers
381 views

Inserting numeric data type using SQL statement in Java

I am writing a method which allows users to store their data within my database. The problem I have is storing a numeric datatype in my database, for a user's ID. Firstly, how can I tell if the ID ...
0
votes
2answers
49 views

How should I model my system - database implication

I have a main class, a login class and a gui class. Within my main I am creating a database connection using the Singleton pattern - only one instance of this connection. I want to access the ...
0
votes
3answers
296 views

How to check if another instance of Derby is already booted?

I'm writing some Java application that uses Java DB (i.e. Apache Derby) as database. I use the following method to connect to database: Connection getConnection() throws SQLException { ...
1
vote
1answer
90 views

Java DB error when creating a table in Netbeans

I am creating a table within my database in Netbeans (Java DB). I have created the database and I am connected to it. This is my first and only table: and the error I am receiving is this: I ...
-1
votes
2answers
118 views

java DB and jar file

we have a standalone project. we are using Java DB and we are writting our code on netbeans. we can conncet to DB with using IDE and we can do what we want but when we make it jar file it couldnt ...
0
votes
0answers
126 views

I can't start javadb in netbeans anymore

Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/derby/drda/NetworkServerControl Caused by: java.lang.ClassNotFoundException: org.apache.derby.drda.NetworkServerControl at ...
2
votes
1answer
397 views

Starting Derby Programmatically

Please have a look at the following code DataBaseConnector.java import java.sql.*; import javax.swing.*; public class DataBaseConnector { private Connection con; public ...
1
vote
2answers
661 views

Database not found error in Apache Derby

First, this is my first time with Apache Derby. I am using netbeans, willing to use embedded apache derby, and I followed the following tutorial for configuring and installing the database ...
1
vote
0answers
35 views

Java DB doesn't run without NetBean [duplicate]

Possible Duplicate: How can I start apache derby programmatically jar file? I have created a desktop application that holds some customer's information. The program private void ...
0
votes
1answer
251 views

How to insert data to different table and rollback if transaction fails in Java DB derby [closed]

How to Insert / delete / Update two or more queries. Commit the Transaction if all query executed else roll back to previous.
0
votes
0answers
187 views

.jar file doesn't update javaDB database when run outside of netbeans

I've written a fairly basic program which connects to a javaDB database and insert a row of data upon a button press in the GUI. Everything works perfectly when this is run inside netbeans and the new ...
0
votes
1answer
92 views

Replacing derby.jar from Oracle with derby.jar from Apache

Short version: Can I replace the derby.jar that came with my JDK (from Oracle) with the latest derby.jar from Apache? Long version: I've been using the Java DB (Oracle's supported distribution of ...
2
votes
1answer
215 views

Derby JavaDB Query ON DUPLICATE KEY UPDATE

I know that MySQL supports this query (ON DUPLICATE KEY UPDATE) for example: INSERT INTO UserFailure (Realm, Username, DateOfFailure, CountOfFailure) VALUES (?,?,?,?) ON DUPLICATE KEY UPDATE ...
0
votes
1answer
449 views

attach derby database into jar file

I am midway through a database application(SWING). I am using Java DB and NetBeans 7.1.2. Within the IDE, the app runs good, provided I initially connect the database manually in the 'services' ...
0
votes
0answers
273 views

Issue with JPA call to createEntityManager() in Netbeans Platform app on Ubuntu with Embedded Derby

UPDATE 2: Tested this on a Ubuntu 12.04 Virtual Machine on VMWare player so issue might be with my Ubuntu workstation. UPDATE 1: I tested this on windows 7 and an installed version works there so I ...
0
votes
2answers
168 views

How to run my Java+Glassfish+JavaDB webapp outside of Netbeans

Each time I need to run my application I need to run it from Netbeans, because it automatically runs Glassfish server and JavaDB, but Netbeans consumes lots of memory and I would like to run my webapp ...

1 2 3 4