I have a form where I can edit the game configurations that has the following components all linked to the same DataSource, which is liked to a ZQuery and then to a ZConnection to the database.
The components I have are
Code: Select all
GameProfiles: TDBGrid;
GameName: TDBEdit;
GameIWad: TDBLookupComboBox;
GamePWADList: TDBListBox;
GameParams: TDBEdit;
Code: Select all
procedure TDoomMainForm.AddProfile1Click(Sender: TObject);
begin
GameProfiles.DataSource.DataSet.Append;
end;
Is this a bug ? Something I'm doing wrong, or something to do with sqllite, I don't seem to remember having this problem with MySQL.
I may temportally change the backend to MySQL and see if the problem still exists there.
Cheers.
Phill.