Recent content by smayberry

  1. S

    Inserting unsigned integers (10 digits)

    I figured out what I needed to do to get this to work. Use the otFloat type in the query, and a double variable in Delphi. I had tried just using a cast to double from cardinal (I switched to cardinal from longword since Delphi help says it is faster) but the compiler would complain about...
  2. S

    Inserting unsigned integers (10 digits)

    In Oracle8i I have a column defined as Number(10) to store a 32-bit IP address in. In order to perform comparisons on the address, I need it to be stored as an unsigned 32-bit integer. I have tried declaring the query field as otInteger, otFloat, otString... pretty much everything. But it is...
Back
Top