Why, didn't ist Work with XE ????Marius2 wrote:Yes its easy, but it wil not work AFAIK.
Search found 3 matches
- 12.10.2010, 11:25
- Forum: ZeosLib 7.0 Beta Forum
- Topic: Edit a Query >>>> NO Function at DelphiXE
- Replies: 4
- Views: 821
- 12.10.2010, 10:47
- Forum: ZeosLib 7.0 Beta Forum
- Topic: Edit a Query >>>> NO Function at DelphiXE
- Replies: 4
- Views: 821
- 12.10.2010, 07:39
- Forum: ZeosLib 7.0 Beta Forum
- Topic: Edit a Query >>>> NO Function at DelphiXE
- Replies: 4
- Views: 821
Edit a Query >>>> NO Function at DelphiXE
This Function didn't works at Delphi XE
with Query do
begin
SQL.Clear,
SQL.add ('SELECT * FROM Tablename')
Open;
if RecordCount > 0 then
begin
Edit;
FieldByBName ('Field').asString := 'Hallo'; // ------> here comes an error-message
Post;
end;
with Query do
begin
SQL.Clear,
SQL.add ('SELECT * FROM Tablename')
Open;
if RecordCount > 0 then
begin
Edit;
FieldByBName ('Field').asString := 'Hallo'; // ------> here comes an error-message
Post;
end;