Done
When an application and/or process has completed operations with the database, it must release resources by disconnecting from the database engine. Below is the code for Done(): procedure TForm1.Done; begin SimpleDataSet1.Active := false; SQLConnection1.Connected := false; end; |
|||