Subject | feature not supported? |
---|---|
Author | txwhytboy |
Post date | 2002-07-08T23:21:22Z |
I have this code...
with DataModule1.IBDSQL1 do
begin
if not Prepared then
Prepare;
ParamByName('Field1').AsInteger := 0;
Execute;
end;
running on a TIB_DSQL component with the SQL...
Insert into Table1 (Field1) VALUES(:Field1)
However, when it goes to run the ParamByName.... I get a '-901
feature not supported error'...
Anyone seen this before.. or know what that error is?
- Roger
with DataModule1.IBDSQL1 do
begin
if not Prepared then
Prepare;
ParamByName('Field1').AsInteger := 0;
Execute;
end;
running on a TIB_DSQL component with the SQL...
Insert into Table1 (Field1) VALUES(:Field1)
However, when it goes to run the ParamByName.... I get a '-901
feature not supported error'...
Anyone seen this before.. or know what that error is?
- Roger