Subject Re: [Firebird-Java] Re: What's the best way to store and get a true 64-bit int value?
Author Roman Rokytskyy
> Sorry, didn't make myself clear. I can handle it fine in my Java
> program. What do people do when they want to store it on a FB DB?

Use BIGINT data type like following:

CREATE TABLE bla (
col1 INTEGER NOT NULL PRIMARY KEY,
col2 BIGINT
)

Roman