Recent content by remq

  1. R

    Big problem with inserting records

    Hello, I had been using Delphi application with DOA 3.6. Oracle version was 10.1 with NLS_CHARACTERSET=UTF8. There had been problem with changing numeric fields. Whenever user tried edit numeric field in client program "Record is locked by another user" was returned even if there were no locked...
  2. R

    Translating error messages

    Hello, In my Delphi application I use TOracleDataset with usemessagetable=true in order to display translated error messages. However, some operations are executed through PL-SQL code and I need to catch exceptions returned when executing stored procedures by TOraclePackage component. In my...
  3. R

    messagetable doesn't work with "not null" constraints

    Thanks a lot for help!!
  4. R

    messagetable doesn't work with "not null" constraints

    Hello, here is an example of DDL script for one of the tables: Create table privilleges ( id Number Constraint privillege_id_nn NOT NULL , code Varchar2(20) Constraint privillege_code_nn NOT NULL , name Varchar2(50) Constraint privillege_name_nn NOT NULL , description Varchar2(50)...
  5. R

    messagetable doesn't work with "not null" constraints

    Hello, can anybody help me with messagetable problem in TOracleDataset? I use DOA version 3.4.6.4 with Oracle 10. In my Delphi5 application I use message table to translate Oracle messages to user. Everything works fine if foreign key or unique index constraints are used, the messages from...
Back
Top