Recent content by Domingo Garc

  1. D

    Oracle Error ORA-22990

    Everything works fine now, Thanks!! I know it's a weird piece of code, but it's necessary. Does the following: The table works like an internal dictionary of columns (just like the COLS view in the Oracle Dictionary). When the administrator of the application revokes a table privilege from a...
  2. D

    Oracle Error ORA-22990

    I thought it was fixed, but I was wrong!! I have discovered that you can't have two OracleDataSets pointing to the same table selecting CLOBs fields. This sample code shows it: DataSet1 -> (SELECT * FROM [TABLE] ) DataSet2 -> (SELECT * FROM [TABLE] ) DataSet1.First; while not DataSet1.EOF do...
  3. D

    Oracle Error ORA-22990

    It works now, thank you Domingo Garc
  4. D

    Oracle Error ORA-22990

    Hi, I'm inserting records into a Table in Oracle 8 and Delphi 4 using TOracleDataSet with the following SQL: SELECT [TABLE].ROWID, [TABLE].* FROM [TABLE] The table contains a CLOB field, and when I write any text into the field (using a DBMemo) and call Post, I get the following message...
Back
Top