-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A whole lot of stuff
- Loading branch information
Showing
19 changed files
with
6,148 additions
and
4,758 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
object DataModule1: TDataModule1 | ||
OldCreateOrder = False | ||
Height = 316 | ||
Width = 487 | ||
object ADOConnection1: TADOConnection | ||
Connected = True | ||
ConnectionString = | ||
'Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Users\DELL\Docum' + | ||
'ents\IT PAT 2021\Database1.mdb;Persist Security Info=False' | ||
LoginPrompt = False | ||
Mode = cmShareDenyNone | ||
Provider = 'Microsoft.Jet.OLEDB.4.0' | ||
Left = 32 | ||
Top = 16 | ||
end | ||
object tblDonations: TADOTable | ||
Connection = ADOConnection1 | ||
TableName = 'Donations' | ||
Left = 112 | ||
Top = 16 | ||
end | ||
object ADOQuery1: TADOQuery | ||
Connection = ADOConnection1 | ||
Parameters = <> | ||
Left = 176 | ||
Top = 16 | ||
end | ||
object DataSource1: TDataSource | ||
DataSet = ADOQuery1 | ||
Left = 248 | ||
Top = 16 | ||
end | ||
object tblUsers: TADOTable | ||
Active = True | ||
Connection = ADOConnection1 | ||
CursorType = ctStatic | ||
TableName = 'Users' | ||
Left = 64 | ||
Top = 120 | ||
end | ||
object tblEmployees: TADOTable | ||
Connection = ADOConnection1 | ||
TableName = 'Employees' | ||
Left = 304 | ||
Top = 120 | ||
end | ||
object tblInventory: TADOTable | ||
Connection = ADOConnection1 | ||
TableName = 'Inventory' | ||
Left = 224 | ||
Top = 144 | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
unit Datamodule; | ||
|
||
interface | ||
|
||
uses | ||
System.SysUtils, System.Classes, Data.DB, Data.Win.ADODB; | ||
|
||
type | ||
TDataModule1 = class(TDataModule) | ||
ADOConnection1: TADOConnection; | ||
tblDonations: TADOTable; | ||
ADOQuery1: TADOQuery; | ||
DataSource1: TDataSource; | ||
tblUsers: TADOTable; | ||
tblEmployees: TADOTable; | ||
tblInventory: TADOTable; | ||
private | ||
{ Private declarations } | ||
public | ||
{ Public declarations } | ||
end; | ||
|
||
var | ||
DataModule1: TDataModule1; | ||
|
||
implementation | ||
|
||
{%CLASSGROUP 'FMX.Controls.TControl'} | ||
|
||
{$R *.dfm} | ||
|
||
end. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.