Recent content by Bernhard Geyer

  1. B

    Wrong Position for definition of {$I Oracle.inc}

    Please move {$I Oracle.inc} to position after line "unit". I want to add some line {$IFDEF UNICODE} {$RTTI EXPLICIT METHODS([]) PROPERTIES([]) FIELDS([])} {$ENDIF UNICODE} but this only work if this include is after unit-line
  2. B

    Wrong declaration f TColor in OracleVisual

    When NONVISUAL is defined, the application can't be compiled when rangechecks are active. It stop on the line TColor = $80000000..$7FFFFFFF; This must be changed to TColor = -$7FFFFFFF..$7FFFFFFF;
  3. B

    Please Fix all Compiler Warnings and Hints

    When we update DOA to a new version, we will allways have to fix the 20 warnings and hints by our self. Please fix this so we can use it without any modifications.
  4. B

    Send "PING" after a specific idle time

    Thank you, I will try it.
  5. B

    Send "PING" after a specific idle time

    We have found that the IT department of a customer has installed a firewall between our application and the Oracle server. The firewall is configured to keep the ports stateful so tags can be given to a packet stream. When the packet stream stops (such as with an idle application) the state is...
  6. B

    'Logon' method causes CPU window to appear

    This is a Oracle bug which misses to remove all Breakpoints from their Oracle-Version that you installed.
  7. B

    DLL commands

    Do you mean DDL (Data Definiton Language)?
  8. B

    how to use DOA on linux...???

    Kylix is dead, so why do you want it for new apps?
  9. B

    Support of Oracle 11g

    Oracle presents Oracle 11. Are there maid some tests from which Version of ODAC is compatible with Oracle 11g? - When connecting to new Server - When new Client is installed
  10. B

    DOA issues with 9i upgrade

    DOA Version 4.0.6.0?
  11. B

    DOA for Delphi2007

    > We will upgrade to Delphi2007 within the next 2 weeks. You get it befor end of March? Normally you can update every Package you have by your own to support new Delphi Version if you have the sourcecode of the components. Normally add only some $IFDEF's to the Include-Files for the new...
  12. B

    DOA 4.1

    Bevore Duke Nukem Forever (Sorry, can't resist) What about a Beta-Version for registered User?
  13. B

    Can't read back a UTF8 clob.

    That are Oracle-Bugs. Not all Version of Oracle NET-Client work with all Version of Oracle-Server and Server-Coding. So if it doesn't work: Try a other Server or Client-Version. The fewest errors you will get if Client and Server works with UTF8
  14. B

    Unicode and not

    You don't need to wait for V4.1. Set NLS_LANG to AMERICAN_AMERICA.UTF8 (and be aware that the database can also save it as UTF8) and code/decode all Data to UTF-8 in you DB-Layer. If you use DB-Sensitive Controls like ElPack or TNTWare you have to set them to UTF8-Mode.
  15. B

    doa345 in 10g

    > Its uncompatible doa 345 and oracle10g? Yes, but there are two problems: - DOA only checks for Version 7/8/9 in DB-Version. Only minor changes in source needed to get access over Client 9i to Oracle 10 - Oracle changes dramatically Client-API in Version 10. You will need new DOA-Version > I...
Back
Top