Subject 'Error creating cursor handle'
Author Bob Jones
I'm trying to execute an update query as follows, but get an error: 'Error
creating cursor handle'. What am I missing?

with IB_Cursor1 do
begin
SQL.Clear;
SQL.Add('Update Immuniz set IM_Name = ''Test'' Where Immuniz_Id = 10');
Open;
end;

Thanks.