Search found 3 matches

by Red-Flash
12.10.2010, 11:25
Forum: ZeosLib 7.0 Beta Forum
Topic: Edit a Query >>>> NO Function at DelphiXE
Replies: 4
Views: 811

Marius2 wrote:Yes its easy, but it wil not work AFAIK.
Why, didn't ist Work with XE ????
by Red-Flash
12.10.2010, 10:47
Forum: ZeosLib 7.0 Beta Forum
Topic: Edit a Query >>>> NO Function at DelphiXE
Replies: 4
Views: 811

I know the UPDATE function,

BUT ist is very easy to edit a query, as an UPDATE...

and it works everytime with Delphi7.

but DelphiXE ????????
by Red-Flash
12.10.2010, 07:39
Forum: ZeosLib 7.0 Beta Forum
Topic: Edit a Query >>>> NO Function at DelphiXE
Replies: 4
Views: 811

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;