![]() | Products |
| Home » Technical Support » DBISAM Technical Support » Incident Reports » Incident Reports Addressed for Version 4.35 » View Incident Report |
| Reported By: Scott Rowat [CommonGoals Software] Reported On: 3/7/2013 For: Version 4.34 Build 7 |
Query:
SELECT SubdivisionCode, SubdivisionName, IsDefault
FROM CountrySubdivisions
WHERE CountryCode = :CountryCode
procedure TForm1.Button1Click(Sender: TObject);
begin
DBISAMQuery1.Close;
DBISAMQuery1.ParamByName('CountryCode').AsString := 'CA';
DBISAMQuery1.RequestLive := True; //if false no error raised
DBISAMQuery1.Open;
if DBISAMQuery1.locate('IsDefault',True,[]) then
showmessage('Yes')
else
showmessage('No');
DBISAMQuery1.Close
end;This web page was last updated on Wednesday, April 8, 2026 at 04:38 AM | Privacy Policy © 2026 Elevate Software, Inc. All Rights Reserved Questions or comments ? |

