Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
If Flights.ToWeight >= 5000 then
Tax := 80
else
Tax := 30;
SQL.Add('CREATE TABLE "qci"."invoice" (');
SQL.Add(' "Rec" varchar(10) NOT NULL default '',');
SQL.Add(' "InvTot" decimal(8,2) default NULL,');
SQL.Add(' PRIMARY KEY ("Rec")');
SQL.Add(') ENGINE=InnoDB DEFAULT CHARSET=latin1;');
Open
ZQuery.SQL.Add('SELECT * FROM Invoice WHERE invtot > 0;');
ZQuery.SQL.Add('SELECT Count(*) as Cnt FROM Invoice WHERE invtot > 0;');
ZQuery.SQL.Add('SELECT Count(*) as Cnt FROM invoice WHERE InvTot > 0;');