Recent content by Sven

  1. S

    Delete of record

    Yes, but assume the following SQl-Statement select id, name from tablename to delete a record DOA makes select * from tablename. If there are a lot of clob or long field, this take on a 64 k line very much time. (and DOA can only compare the fields id and name) Sven
  2. S

    Delete of record

    Hi Marco, if i delete a record with TOracleDataSet.Delete the following is done by DOA 1. create savepoint 2. reads ALL data of the record "for Update" 3. Delete record with rowid 4. commit Why does DOA reads all! data in 2. ? In my case it reads all longs and lobs, but this is not needed and...
  3. S

    rounding of floats

    Arggh, my fault. I entered a wrong DisplayFormat it should be 0.00 not 0,00 (like in germany, but not in delphi) Thx Sven
  4. S

    rounding of floats

    Hmm, i will try, but i suppose i will have no luck. Sven
  5. S

    rounding of floats

    Marco, no, i linked it to a twwdbgrid. Result is rounded. No idea why.... This makes absolutly no sense, because older DataSets works correctly, only new one. ?????? Greetings Sven
  6. S

    rounding of floats

    Hi, i have a very stupid behaviour of a TDataSet and a TOracleDataSet. The following statement select 3.1415926 from dual creates 3 as a result. All my other DataSet and query are running normal. Only if i add new queries i get this.?????? The PLSQL-Developer creates the right output. I...
  7. S

    Connecting to a database through the internet. How to?

    Not a great think. The listener "hears" at port 1521 or 1526 (or what ever you configure). Just connect to this ports. I made this between Berlin/Frankfurt/Bremen. There is no difference between local net and Internet. So, no Problem (as long the line is stable) But be aware, that a windows...
  8. S

    Orpheus

    Jups, it works. I make heavy use of the orpheus library. No problems beetwen doa and orpheus Sven
  9. S

    wish for Package Wizard

    Hi all, the package wizard is a great tool. To extend the capabilities Is it possible that the constant declaration are also visible in the TCustomPackage. As a property or function ? Now i have to declare these constants in the package and in delphi. Regards S. Heuer
  10. S

    Compress LOB-Data

    Hey, sounds very good. If you need a beta tester ... Sven
  11. S

    Compress LOB-Data

    I use a simple TDBRichEdit control to save text in the db using a lob. On a LAN this is not a great problem. But now i have to use a
  12. S

    How to compile invalid objects

    arrgh. tomatoes on my eyes, I set DBMS_DDL.Name := 'dbms_ddl'; instead of DBMS_DDL.PackageName := 'dbms_ddl'; Sorry for bothering you and thanks again. Sven
  13. S

    How to compile invalid objects

    Many thanks Johan, i have trouble to get you example running This i added to the code. DBMS_DDL := OraclePackage.Create(NIL); DBMS_DDL.Session := MySession; DBMS_DDL.Name := 'DBMS_DDL'; ?? If i execute CallProcedure i get an error: Identifier 'ALTER_COMPILE' must be...
  14. S

    How to compile invalid objects

    hi, I added some function, views procs... to a new database. When i compile these with a toraclequery i fetch after some time an "ora-0604: error occured at recursive SQL level 1 ora-0100 maximum open cursors exceeded." My (pseudo)code is like this qry1.SQL := Select all Invalid Objects...
  15. S

    Question on ALERTS

    Keep in mind, if two sessions are sending the same alert with no commit, that the latter session will wait on the first until the first session is comitted... Sven
Back
Top