Ticket #68 (new enhancement)
64 bit integer support?
| Reported by: | brianw221 | Owned by: | zork |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Component: | Archive interface | Version: | 1.4.x |
| Keywords: | Cc: | ywang221@… |
Description
I don't see how 64 bit integer can be supported?
Note: See
TracTickets for help on using
tickets.

There is no direct support for 64bit integer in 1.4.2. Adding this requires changes in low level dba::DbResult? interface by adding getInt64 and maybe replace current getInt with getInt32 and implementations for all supported database back-ends. After that we need Int64 filter that will convert read integers to c++ types.
As workaround you can use BIND_STR for this and create custom filter that will convert read strings on the fly. Although debea will generate SQL queries with string values, so this approach will force to use varchar field.
For which database and platform you need support for 64bit integers? What c++ type you need to map to?
Thanks, Łukasz