Recent content by sergio7

  1. S

    Query Builder does currently supports...

    D2009, Doa 4.1.1.0 I cannot use the query builder. When i try to use it this strange message apperar : query builder does currently sopports only select statements. If the SQL property is empty then the query builder say there is not an active session to connect to. With pl/sql developer all...
  2. S

    Another question about Floats

    Tanks, I have found that this is true for number(n) with n
  3. S

    Another question about Floats

    Ok, my table in this case contains only 1 record. The problem is that oracle stores the value as number(14) that is not a float and delphi treat this as float. Compare floating point is not so safe. Regards sergio sette
  4. S

    Another question about Floats

    Hi, i have a field ('MYFIELD') defined as number(14) This number is mapped as TFloatField. I have a procedure like this : var d: Double; begin d:= 100; MyQuery['MYFIELD'].AsFloat := d; MyQuery.Post; // reloads the same record MyQuery.Open; if MyQuery['MYFIELD'].AsFloat = d then...
  5. S

    Numbers, EURO and Float

    Hallo Markus, Delphi6 introduces new variant types and a true BCD field (TFMTBCDField). Are you planning to use bcd instead floats. Regards Sergio Sette
  6. S

    Numbers, EURO and Float

    Markus, if i have a number like number(6, 2) this can be mapped as a TBCDField that internally is a Currency (fixed point). Why have you choosed to allways rapresents numbers as Floats ? Regards Sergio Sette
  7. S

    PSStartTransaction problem

    I have a problem with the TOracleDataset's IProviderSupport implementation. After a call to PSStartTransaction the PSInTransaction methods returns true but the TSession.InTransaction method returns false. Why ? Regards Sergio Sette
  8. S

    Numbers, EURO and Float

    Hi, i have a little question. The number(x,y) oracle datatype is a fixed point type. DOA maps number(x, y) as Double (floating point type). Are there rounding errors risks ? I need to perform financial calculations and i have trouble using floats. Can i safetly use TFloatFields ? TIA Sergio Sette
  9. S

    TOracleDataset and user rights (grants)

    Hi, i have a problem with TOracleDataset. In my application some users have a role with only select grants assigned. The OracleDataset component seems to not recognize this returning an updateable resul set. Is there a way to make the dataset read only if the user has only select rights...
  10. S

    How to disable automatic master/detail configuration

    The state of a component is a read only property (!!)
  11. S

    ftFloat vs ftBCD type

    Ok, NUMBER(12,2) (i.e.) is not a float, but in DOA i see it as TFloatField, and not as TBCDField. This can be a problem because Float and BCD have not the same precision. Regards Sergio Sette
  12. S

    ftFloat vs ftBCD type

    Why are number(x,y) fields mapped to TFloatField and not to TBCDField? Are in oracle numbers really floating point? Sergio Sette
  13. S

    How to disable automatic master/detail configuration

    In some cases i need to diasable automatic master/detail configuration. It's a way to do this ? TIA sergio sette
Back
Top