0
votes
1answer
45 views

Can Hibernate be used to lock a database table or row so that other programs can't access it?

I have batch program that gets a primary key value from a database table (Table_A). This batch program does some logic with this primary key value and then adds it to a new table (Table_B). I have a ...
0
votes
1answer
44 views

insert query with varchar as data type for primary key

The program is not accepting the query given below- public class loginDaos { public void create(loginBean bean) { ConnectionPool c = ConnectionPool.getInstance(); ...
1
vote
2answers
54 views

how to make my primary key in MySQL database Works for lower and higher case?

I wanna make database which has table contains username and password. and I want to make username primary key , to prevent duplication. when I tried to make that , For Example : 1-Admin 2-admin ...
4
votes
1answer
228 views

How to get generated keys from JDBC batch insert in Oracle?

I am inserting many records using JDBC batch inserts. Is there any way to get the generated key for each record? Can I use ps.getGeneratedKeys() with batch inserts? I am using ...
1
vote
3answers
72 views

Webservice increment variable for id use singleton/synchronize

I am implementing a webservice witch is used to attack one DB. i need to generate ID for objects that i store and i don't know what's the best way to do it. i need to increment a INT. Obviously the ...
1
vote
2answers
46 views

What to do to handle PK overflows?

What should one do to accommodate the case where a PK could overflow ? It is unlikely but still possible. I've seen a newsletter opt-out form not function as it probably had many requests. What can ...
1
vote
3answers
147 views

MySQL custom primary key generator

I have written an invoice module for our reservation system. So when I create a new invoice, I automatically generate a primary key through MySQL. However for the moment this is just a simple ...
0
votes
1answer
48 views

How to add series of keys on an Entity? Openjpa

I have this entity named product. Is there a way to add a series of multiple keys? Like A key for Serial Number, a key for Serial Number and Model, a key for Model etc. How can you do this? Thank you ...
0
votes
1answer
101 views

How to get auto-incremented keys using JDBC and Microsoft Access?

I'm writing a computer program using Java (JDBC) and I'm having trouble getting auto-incremented keys from my Microsoft Access database. Currently I have three instances of Connection, Statement and ...
0
votes
1answer
68 views

Inserting and updating, deleting in DB

I had a ticket request with me and i am not knowing how to handle. Let me explain the whole scenario in a clear manner. In my database I have the primary key as firstCode which is six digit long ex: ...
0
votes
3answers
93 views

Generating Ticket Id in CRM [closed]

I am wroking on a help desk system and did some research before starting work on it. I noticed that all ticket id's start with current date followed by few digits. For eg -> 2012102620000033 I want ...
-1
votes
1answer
808 views

ConstraintViolationException: Duplicate entry for key 'PRIMARY' when using Hibernate and MySQL?

Session session = HibernateUtil.getTestSessionFactory().getCurrentSession(); session.beginTransaction(); session.save(test1); session.save(test2); session.save(test3); ...
0
votes
3answers
51 views

Need some modification in my code

This is a small part of the application where user can register any number of employees and employee id is generated by using a while loop....As i close the application & start filling the data ...
0
votes
2answers
96 views

numeric primary key with no sequence used; how to obtain the next value?

I know one is supposed to use a database sequence to obtain the value for the next key on a table (let's assume a single-column numeric Primary Key), but in case a sequence is not used, do you see any ...
0
votes
1answer
189 views

Short url-safe number encryption in Java?

I'm looking into encrypting a simple database primary key into a short, url safe string. I've looked into the jasypt encryption library, but the length of each encrypted number is at least 20 ...
1
vote
3answers
207 views

Generating unique reference number

Tech Stack: Java 1.6, JPA (Hibernate 3), Spring 3, Oracle 11g I am working on a project where one of the requirement is to give back the customers a ‘ReferenceNumber’. One option is to return the ...
0
votes
1answer
194 views

How to store Key-Value pairs using JDO (datanucleus & appengine)

I have defined a ConfigurationProperty class, which is basicly a key-value pair (with key being a strictly positive integer and value being a string): import javax.jdo.annotations.PersistenceCapable; ...
2
votes
2answers
79 views

order by primary key

I'm trying to do a comparison between the data of a table of a SQLServer database before and after some action. I'm saving the first data in a file (actually I'm saving the MD5 of the data, but not ...
1
vote
0answers
852 views

Hibernate identity primary key generator and foreign keys

Looked in many places and found that the hibernate with postgresql can use an IDENTITY primary key generator which maps into serial/bigserial table column. Suppose i have follow entity: @Entity class ...
2
votes
1answer
617 views

Custom UUID as primary key

I have been reading on the advantages and disadvantages of using a UUID as a primar key in a database. The main argument I have been hearing against such a practice is that if they aren't generated ...
5
votes
3answers
4k views

When does the JPA set a @GeneratedValue @Id

I have a simple JPA entity that uses a generated long "ID" as its primary key: @Entity public class Player { private long id; protected Player() { // Do nothing; id defaults to 0L } ...
8
votes
1answer
510 views

Can i use BigDecimal as an id type in hibernate hbm?

i am using hibernate. it has id column with 20 precisions as below but of NUMBER type. NUMBER(38,20) - this is the size given to id column of the table(Oracle database). This id is generated by our ...
1
vote
2answers
50 views

Concatenating ids with extension to keep multiple rows related to an entity in a single Column Family

I am concatenating two Integer ids through bitwise operations(as described below) to create a single primary key of type long. I wanted to know if this is a good practice. This would help me in ...
0
votes
4answers
89 views

What to use as a Primary Key of SQL Database of dates

I am making a SQLite database with Java interface where the user can input information for different dates. Basically its like a diary. But I am having trouble constructing a table for the database. I ...
3
votes
2answers
1k views

JPA primary key value is always 0

I have a post class and it kind of works, but there's one problem: the primary key doesn't increase. @Entity @Table(name="posts") public class Post extends GenericModel{ @Id ...
1
vote
1answer
4k views

Multiple Primary Keys Table - Hibernate NonUniqueObjectException

I have a table with 2 primary keys (so the combination of both of them should be unique). The schema is like this: TABLE="INVOICE_LOGS" INVOICE_NUMBER PK non-null INVOICE_TYPE PK non-null ...
3
votes
1answer
590 views

“No primary keys” error in NetBeans

In NetBeans7 when I'm trying to add "Entity Classes from Database" the following problem occurs: some of the tables on the left are greyed out and marked "(no primary keys)", so I can't add them. ...
2
votes
3answers
262 views

Generate SQL JOIN statements

Background The following data is a specific example of a general problem (sorted by column name): Primary Key: as_comp.companynamecurrent.companyid Primary Key: as_comp.companylocation.companyid ...
1
vote
2answers
709 views

Seam/Hibernate/JPA — Duplicate primary key exception?

I've got an object model that is persisted using Seam and JPA (Hibernate). It looks something like this: @Entity(name = "MyObject") public class MyObject { ... @Id @GeneratedValue(strategy = ...
0
votes
2answers
38 views

Generating primary keys: By Pulling from a stock of Ids, kept at the application layer of web application

I am building a web application using a distrbuted NoSQL DB. However, for generating Ids for the new entities, I am using MySQL as Flickr's ticket server I just stuck across an idea of keeping the ...
1
vote
2answers
513 views

Using a ticket server to generate primary ids?

I am building a distributed application on top of Java and Cassandra. To generate unique sequential 32bit & 64 bit IDs, is an approach like using Flickr's ticket servers to generate primary IDs, a ...
0
votes
1answer
809 views

Android SQLite3 problem enforcing primary key

I have a listview with a custom adapter that uses an sql cursor. When I add items to my listview, the item will be added to my sqlite3 database and the listview will refresh. My one problem is that ...
5
votes
1answer
4k views

JPA: is @PrimaryKeyJoinColumn(…) the same as @JoinColumn(…, insertable = ?, updatable = ?)?

Can you derive from the JPA spec, if @PrimaryKeyJoinColumn(...), which doesn't have the insertable and updatable parameters, is the same as @JoinColumn(..., insertable = false, updatable = false) ...
14
votes
4answers
1k views

Primary Key Type: int vs long

I know some software shops have been burned by using the int type for the primary key of a persistent class. That being said, not all tables grow past 2 billions. As a matter of fact, most don't. So, ...
3
votes
4answers
147 views

Is there any security concern with displaying the Key value to users in a URL?

I am using the Key value of entities in my datastore as the unique identifier in the URL for pulling up a record: http://mysite.appspot.com/myaction/1x7s3fgdlbnRlcklkcicLAbcXc2VyQWNjb3VudCIFYW9uZ ...
3
votes
10answers
285 views

Application Development: Should I check for a primary-key on a table or assume it should be there?

When building an application and you are using a table that has a primary key, should you check to see if the table has a primary key or does not have duplicate IDs? I ran into some code I'm ...
4
votes
9answers
1k views

Generate Primary key without using Database

I came across a question recently that was for "Generating primary key in a clustered environment of 5 App-Servers - [OAS Version 10] without using database". Usually we generate PK by a DB sequence, ...
2
votes
2answers
2k views

How to create an entity with a composite primary key containing a generated value

Using Hibernate + annotations, I'm trying to do the following: Two entities, Entity1 and Entity2. Entity1 contains a simple generated value primary key. Entity2 primary key is composed by a simple ...
3
votes
1answer
636 views

How to retrieve Google Appengine Objects by id (Long value)?

i have declared an entity the following way: public class MyEntity { @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) private Long id; @Persistent private String text; ...
0
votes
1answer
408 views

GraniteDS on GAE datastore JPA - Key class problem

I'm using GraniteDS(2.1.0RC2) on GAE with JPA annotiations. I have following class on flex side: [Bindable] [RemoteClass(alias="models.User")] public class User { public var key :String; ...
2
votes
2answers
320 views

Need to update the primary key on existing objects in GAE Java

I am building a web app using GAE Java. I have a class that uses a Long ID (generated by appengine) as its primary key. I now want to create a new class that would be the parent class to this ...
0
votes
3answers
2k views

Generate unique key in Java to be used as primary key in Oracle tables

I am trying to get a string of length 15 to be used as primary key in database tables. The following code in java returns some key with length 35 UUID.randomUUID().toString() Can I change it to ...
3
votes
3answers
1k views

Getting the primary key value after a merge command?

Is there some way to get a value from the last inserted or updated row? I am using the merge command to do an insert or an update if the row exists. I know how to get the autogenerated key after an ...
10
votes
6answers
22k views

how to make a composite primary key (java persistence annotation)

how to make it so that the table user_roles defines the two columns (userID, roleID) as a composite primary key. should be easy, just can't remember/find. in userdao @ManyToMany(fetch = ...
1
vote
9answers
566 views

Handling creation of ORM objects prior to persistence/generation of primary keys?

Bear with me as I try to simplify my issue as much as possible. I am creating a new ORM object. This object has an auto generated primary key which is created on the database using as an identity. ...
9
votes
4answers
9k views

Hibernate/persistence without @Id

I have a database view thar yields a result set that has no true primary key. I want to use Hibernate/Persistence to map this result set onto Java objects. Of course, because there is no PK, I cannot ...
1
vote
3answers
645 views

How do I return the last primary key of the last added item in java?

Have a linking (or ref) table which has a dual primary key. Need to return the last primary key which was auto generated from the current connection in a selected table. This is in java. The database ...
0
votes
5answers
234 views

What is the proper size for a sequence-generated primary key?

Currently, primary keys in our system are 10 digits longs, just over the limit for Java Integers. I want to avoid any maintenance problems down the road caused by numeric overflow in these keys, but ...