UniLoader.LoadFromDataSet method is giving this errror:
Following is my code:Error:
Dynamic SQL Error
SQL error code = -204
Implementation limit exceeded
block size exceeds implementation restriction
Code: Select all
//Operation stage 3
UniConnection1.Database := 'mydb'; //xxxxx----
UniConnection1.Open; //xxxxx----
UniConnection2.Open;
UniConnection2.ExecSQL('DELETE FROM Individual;',[]);
UniLoader1.TableName := 'Individual';
// UniLoader1.CreateColumns;
UniQuery3.SQL.Text := 'SELECT id, first_name, middle_name, last_name,' +
'suffix, id_number, street_line, city, state, zip_code,' +
'sex, eye_color, hair_color, height, weight, issued_date,' +
'expires_date, birth_date, last_scanned FROM individual;';
// UniQuery3.SQL.Text := 'SELECT id FROM individual;';
UniQuery3.Open;
UniLoader1.LoadFromDataSet(UniQuery3);
What is wrong?
Regards,
Steve Faleiro