Subject | Re: [Firebird-Java] Re: What's the best way to store and get a true 64-bit int value? |
---|---|
Author | Roman Rokytskyy |
Post date | 2005-02-04T22:59:54Z |
> Sorry, didn't make myself clear. I can handle it fine in my JavaUse BIGINT data type like following:
> program. What do people do when they want to store it on a FB DB?
CREATE TABLE bla (
col1 INTEGER NOT NULL PRIMARY KEY,
col2 BIGINT
)
Roman