Apache Derby, an Apache DB subproject, is an open source relational database implemented entirely in Java and available under the Apache License, Version 2.0.

learn more… | top users | synonyms (1)

-1
votes
0answers
9 views

J2me and apache derby

Hello someone could give me an example of a connection from a j2me application with embedded database derby, would greatly appreciate it to be detailed because I have many doubts. regards here my ...
0
votes
2answers
21 views

How to run Derby as a background process in Linux

I am using derby on a remote Ubuntu 12.04 server. The standard derby commands are all working correctly and I am able to open my databases and access them via ij. I need to be able to start and stop ...
0
votes
2answers
13 views

Using cast on a view in a Derby database that has multiple columns

This question is a quick one. I know that you could say something like SELECT CAST(someColumn AS otherType) FROM myView, where myView is a view in a Derby database, but is it combinable with other ...
1
vote
0answers
10 views

Unable to stop Derby database

I have Glassfish 3.1.2 installed in my local machine. I tried starting the asadmin database using the command asadmin start-database It started fine. Now, when I am trying to stop it, it gives me ...
1
vote
1answer
16 views

Netbeans and Derby : access denied

I have just downloaded and installed Netbeans 7.2.1. Goind on the service tab and trying to start JavaDB. I have the following error : java.security.AccessControlException: access denied ...
2
votes
2answers
54 views

Java SQL Exception Invalid Cursor State - no current row

I've been having a hard time trying to figure this out. First I have an insertProduct(Product p) method that is supposed to check if a product with the specified code exists in the database. If so, ...
0
votes
1answer
40 views

Which method is better for updating database?

Suppose you have a bunch of records in a table, and in another table, you analyze all those records. Take, for example, my math game database. It has two tables for all the raw data that is the ...
0
votes
0answers
11 views

Columnnames in Selectstatements get ignored in embedded Derby

i'm using derby10.10 as embedded database and found a, in my eyes, strange behaviour i couldn't solve yet. I'm making a select of 29 columns from alot of tables (inner and left outer joins) some of ...
1
vote
1answer
16 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 ...
1
vote
4answers
64 views

Strange NullPointer Exception in main

I'm trying to do an exercise from a java book. The code comes as is and I have not added anything to the code besides setting the path for the database. I'm on OSX, so I had to install Apache Derby. ...
1
vote
0answers
17 views

Derby database connection with Tomcat

There is simple code, but cant get connection to Derby with it, what is wrong? CustomerBean.java: package com.corejsf; import java.sql.Connection; import java.sql.ResultSet; import ...
0
votes
1answer
39 views

ResultSet and the SQL functions

I am using Derby database, and would like to know something: is a ResultSet a table? If so, that means I could invoke MIN(ResultSet.someColumn) (or MAX() or AVG()), right? Or would I have to dump the ...
1
vote
2answers
37 views

Derby Db rows merging

I have following derby sql statement: SELECT DISTINCT MEETINGS.MEETING_ID, MEETINGS.TITLE, RECORDING_FRAME.STARTTIME, RECORDING_FRAME.ENDTIME, { fn ...
2
votes
1answer
28 views

42Y36: SELECT list may only contain grouping columns, grouping 'table.*' not allowed

The following query works like a beauty. Now I'm trying to select PRODUCT.* which leads to errorcode 42Y36: (Column reference '<value>' is invalid. For a SELECT list with a GROUP BY, the list ...
-1
votes
1answer
21 views

Derby Schema Error

I am trying to insert data into Derby embedded database for my Desktop Application. But Derby is giving me error of Schema Not found error. I have tried to solve error by creating schema as per ...
0
votes
2answers
49 views

Why does a Derby database take up so much space?

I am new to databases and I love how easy it is to get data from a relational database (such as a Derby database). What I don't like is how much data one takes up; I have made a database with two ...
-1
votes
1answer
33 views

Installing Java Desktop Application on Windows 7 O.S

I have a java desktop application connected to a derby database the derby database has some dummy data for trial purposes. The application is packaged together with the database(as embedded derby ...
5
votes
1answer
62 views

How to retrieve column names from an in memory database?

Here's the code that gives me headaches: public List<String> listColumnsForTable(String tableName) throws SQLException { List<String> columns = new ArrayList<String>(); ...
-2
votes
0answers
62 views

Adding Derby database to Java project in Netbeans 7.3 [closed]

I'm working on a GUI project in Java using Netbeans 7.3 It's basically a small application using local Derby database. Project was created as "New Project -> Java -> Java Application" and it currently ...
0
votes
0answers
27 views

Derby doesn't allow isolation level to be set at TRANSACTION_SERIALIZABLE for concurrent access

I'm using Derby database and trying to create DB objects concurrently. As we all know that the default isolation level in it is TRANSACTION_READ_COMMITTED. But I don't want to allow even phantom ...
0
votes
1answer
47 views

Java executing sql script anomaly ? Derby network server

I have made two classes, a SQL reader and a SQL Compiler. For testing purposes I read in and executed a set of scripts which came with derby, the derbytutor folder. What I cant figure out is why no ...
0
votes
0answers
21 views

Problems with Derby char encoding using mybatis

i'm developing an Java EE Project with Spring. For the persistence layer i'm using mybatis and a derby db. My intention is to create an USER-ROLE CRUD and i am finishing it. But i have an encoding ...
-3
votes
1answer
26 views

Non Atomic Batch Failure in Derby Update

What is Non Atomic Batch Failure in derby update via stmt.executeBatch() ?
0
votes
0answers
22 views

Maven: A JDBC Driver or DataSource class name must be specified in the ConnectionDriverName property

I am trying to Mavenize this sample project from RAD 8.5: http://publib.boulder.ibm.com/infocenter/radhelp/v8r5/topic/com.ibm.rad.samptut.doc/samples/ejb/topics/EJB31Sample.html Within the RAD 8.5, I ...
2
votes
2answers
28 views

get modified result from 2 tables

I have 2 tables: table1 id | name ----------------------------------------- 1 | abc 2 | def table2 table1id | nr_name | nr_val ----------------------------------------- 1 ...
0
votes
2answers
30 views

Derby Query is very slow

I am writing a query to load my data in a jlist public void showtitle(){ DefaultListModel model = new DefaultListModel(); booklist.setModel(model); try{ ...
0
votes
1answer
32 views

Apache derby multi-user control?

Keeping it short all i want to achieve is preventing client applications to connect to a derby network server if that connection has already been made. I have figured this would require some sort of ...
1
vote
2answers
50 views

Getting years from database

I have a database field of Date type in Derby. I need to get the years in all that are in the date. The program is in java swing. I tried the following code: SELECT year(DATE) FROM BILLING Then i ...
0
votes
1answer
58 views

Preveting distribution of java desktop application

I have developed a desktop based application in Java using derby as the database. The IDE that i am using is Netbeans. I am just on the verge of the deployment of the application on the client's ...
0
votes
1answer
37 views

Deleting row in java Derby database

I am on the last page of this tutorial: http://www.homeandlearn.co.uk/java/delete_a_record_from_a_database.html which is about deleting a record in a Derby database. My code for the delete-button is ...
0
votes
1answer
36 views

Scrolling through a database on click - java Derby

I'm trying to make a Java Derby database which must show the next record on click of a button. The tutorial I'm following is: homeandlearn.co.uk/java/database_scrolling_buttons.html In the method of ...
0
votes
1answer
41 views

speed up the commit of the entity manager for 3000 recordes

Im having 3 entities each entity with 5 members string and I want to persist 1000 records for each entity . when I did performance testing the entitymanager.commit() takes about 1.1 seconds , I think ...
0
votes
0answers
62 views

Embedded glassfish + JUnit testing (Eclipse / Maven)

When I try to run JUnit test from Eclipse (or Maven), I get these lines right in the beginning of the log: 23.4.2013 8:12:25 com.sun.enterprise.v3.server.CommonClassLoaderServiceImpl findDerbyClient ...
2
votes
1answer
36 views

JDBC Derby JPA Persistence testing issue “Internal Exception: java.sql.SQLSyntaxErrorException: Syntax error: Encountered 'USER'”

I have an entity class called User and when I do persistence testing with Arquillian I have always have an error... Internal Exception: java.sql.SQLSyntaxErrorException: Syntax error: Encountered ...
1
vote
2answers
36 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) ...
1
vote
3answers
42 views

SQL select items that span entire range of attribute

The title might sound a little unclear, hopefully my description will be clearer! Here is what I am trying to do. I have a table with 3 columns, id, value, and a binary attribute. i want to select ...
1
vote
2answers
24 views

SQL Pairing Columns from one Table

i need to pair 2 supplier names via the city they are located in. <name supplier a> <name supplier b> <location> I got that form via Crossjoining the one Supplier table - now i ...
2
votes
2answers
41 views

Connecting to Derby using JDBC

I am trying to connect to Derby database on my locahost using JDBC. I have started the database using the command: java -jar lib;derbyrun.jar server start, which starts successfully on port 1527. ...
4
votes
4answers
136 views

Prepared Statement SQL Exception “No Input Parameters”

so I'm trying to retrieve data from a DB. Maybe I have looked at it too much but I can't find the problem. Connection is fine, Statement is fine (works with static data), and data from the Item ...
1
vote
1answer
58 views

duplicate key error in entitymanager with correct object to persist

I have the following entity TitleScreenFormat and when i do entitymanager.commit I getting the following error Internal Exception: java.sql.SQLIntegrityConstraintViolationException: The statement ...
0
votes
0answers
56 views

Can't create JPA tables into derby with glassfish3

I am trying to create clone database(s) with JPA (2.0) into derby from a legacy database. The JPA entities were generated from an existing database (by JDidea tools I think), and now I am using ...
1
vote
1answer
35 views

SQL statement SQLSyntaxErrorException

I'm getting an error executing the following SQL statement: String sql = "CREATE TABLE RESERVATION ("; sql = sql + " UID VARCHAR,"; sql = sql + " ISBN INTEGER,"; sql = sql + " DATEISSUE DATE,"; sql = ...
0
votes
2answers
61 views

What ORM should I use for Spring MVC Project with Derby db?

i'm developing a web project which use Spring MVC and an apache derby embedded. This database contains a table for Users, Roles and Users-Roles. I have to do a typical CRUD. Due to it is my first time ...
1
vote
1answer
135 views

Hibernate4 + c3p0 + Derby - Memory Leak on Tomcat stop or web application reload

I have a very simple application template which includes an embedded apache derby database through hibernate. I have the following configuration: <property name="hibernate.dialect"> ...
0
votes
0answers
108 views

Hibernate and Foreign Key Constraints

I have several Hibernate mapping files with many-to-many and many-to-one sets referring to other objects. I am trying to implement a back office scheme that can delete objects but I constantly run ...
0
votes
1answer
40 views

Creating a database in distributed Java programs

I cannot understand how distributing Java programs that use a database works. Let's say I am using Derby as RDBMS and I want to store tasks and calendar entries in a database. I want each user of the ...
1
vote
1answer
30 views

How can I set up precision in a double column in Derby database?

I am using these codes to create a table in derby database. CREATE TABLE "USED_BANKACCOUNT" ( "FYEAR" VARCHAR(10), "NUM" DOUBLE, "USERNAME" VARCHAR(20) ); My ...
0
votes
0answers
35 views

Restore a Derby Database Backup to Override Existing Database

I developing a derby database with a swing application in the NetBeans IDE. the application has a backup and restore function the backup works just fine but Looks like the derby database is not ...
0
votes
0answers
13 views

Derby error while create NamedNativeQuery

i have got simply NamedNativeQuery @NamedNativeQuery(name = MessageArchive.GROUP_CHAT, query = "Select ma.conversationid from ofmessagearchive ma ") and i have got in my persistence.xml; ...
0
votes
0answers
126 views

entityManager.find() returning null

I am using a Derby Database, here is the entity that the find is executed on package ca.etsmtl.gti525.entity.presentation; import ca.etsmtl.gti525.commun.CommunService; import java.io.Serializable; ...

1 2 3 4 5 16