Hi,
I have the following code
If lob field is directly in the table then all is Ok, but if that field is a field of the object (e.g. field mumu.m.c in following example) :
I receive the following error from the post method Invalid SQL statement.
Oracle monitor shows that text of that statement is empty. IS something wrong with my code or is it a DOA bug?
Thanks in advance.
)
I have the following code
Code:
if not (LOBField.DataSet.State in [dsEdit,dsInsert]) then begin
LOBField.DataSet.Edit;
TMemoField(LOBField).LoadFromFile(odLOB.FileName);
LOBField.DataSet.Post;
end;
Code:
create type tmum as object (x number, c clob);
create table mumu (y number, m tmum);
Oracle monitor shows that text of that statement is empty. IS something wrong with my code or is it a DOA bug?
Thanks in advance.
)