-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathdPrincipal.pas
151 lines (132 loc) · 4.87 KB
/
dPrincipal.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
unit dPrincipal;
interface
uses
System.IniFiles,
System.SysUtils, System.StrUtils,System.Classes, System.Variants,
FireDAC.Stan.Intf, FireDAC.Stan.Option,
FireDAC.Stan.Error, FireDAC.UI.Intf, FireDAC.Phys.Intf, FireDAC.Stan.Def,
FireDAC.Stan.Pool, FireDAC.Stan.Async, FireDAC.Phys, FireDAC.Phys.SQLite,
FireDAC.Phys.SQLiteDef, FireDAC.Stan.ExprFuncs, FireDAC.FMXUI.Wait,
System.IOUtils, FMX.Dialogs,
FireDAC.Comp.ScriptCommands, FireDAC.Stan.Util, FireDAC.Stan.Param,
FireDAC.DatS, FireDAC.DApt.Intf, FireDAC.DApt, IPPeerClient, IPPeerServer,
FireDAC.Comp.Client, Data.DB, FireDAC.Comp.DataSet, System.Tether.Manager,
System.Tether.AppProfile, FireDAC.Comp.Script, FireDAC.Phys.SQLiteWrapper.Stat;
type
TdmPrincipal = class(TDataModule)
SqLiteConnection: TFDConnection;
FDPhysSQLiteDriverLink1: TFDPhysSQLiteDriverLink;
SqLiteSecurity: TFDSQLiteSecurity;
SqLiteValidate: TFDSQLiteValidate;
SqLiteBackup: TFDSQLiteBackup;
ScriptVersao: TFDScript;
ScriptExecutar: TFDScript;
TetheringManager1: TTetheringManager;
TetheringAppProfile1: TTetheringAppProfile;
QuerySelect: TFDQuery;
QueryExecute: TFDQuery;
fdTabelas: TFDTable;
TabSelect: TFDQuery;
tabClientes: TFDQuery;
tabBuscaAvancada: TFDQuery;
tabAtendimentos: TFDQuery;
tabImagem: TFDQuery;
tabContas: TFDQuery;
tabMovimentos: TFDQuery;
tabUsuarios: TFDQuery;
procedure SqLiteConnectionBeforeConnect(Sender: TObject);
procedure SqLiteConnectionAfterConnect(Sender: TObject);
procedure UpdateVersion;
function GetVersion(var FDConexao :TFDConnection): Integer;
procedure DataModuleCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
PathDB :String;
tabTarefas :TFDQuery;
end;
var
dmPrincipal: TdmPrincipal;
implementation
{%CLASSGROUP 'FMX.Controls.TControl'}
uses uPrincipal;
{$R *.dfm}
procedure TdmPrincipal.SqLiteConnectionAfterConnect(Sender: TObject);
begin
SqLiteConnection.ExecSQL('CREATE TABLE IF NOT EXISTS sistema '+
'(Codigo INTEGER PRIMARY KEY AUTOINCREMENT,'+
'DataCadastro DATE DEFAULT (datetime('+QuotedStr('now')+ ','+QuotedStr('localtime ')+')),'+
'DataExclusao DATE ,'+
'Usuario integer,'+
'Versao integer default 100);'+
'CREATE TABLE IF NOT EXISTS sistema_log ('+
'Codigo INTEGER,'+
'DataCadastro DATE,'+
'DataExclusao DATE,'+
'Usuario integer,'+
'Versao integer,'+
'Tipo VARCHAR(1),'+
'Data DATE DEFAULT (datetime('+QuotedStr('now')+ ','+QuotedStr('localtime')+')))');
UpdateVersion;
tabTarefas := TFDQuery.Create(Self);
tabTarefas.Connection := sqLiteConnection;
end;
procedure TdmPrincipal.SqLiteConnectionBeforeConnect(Sender: TObject);
begin
SqLiteConnection.Params.Values['DataBase'] := 'demo.db';
// {$IF DEFINED(MSWINDOWS)}
// Config := TConfig.Create;
// try
// SqLiteConnection.Params.Values['DataBase'] := Config.DatabasePath;
// finally
// Config.Free;
// end;
// {$ENDIF}
end;
procedure TdmPrincipal.UpdateVersion;
var
i ,CurVer,NewVer,ScripVer :Integer;
begin
NewVer := uPrincipal.AppVersion;
CurVer := GetVersion(SqLiteConnection);
try
if CurVer < NewVer then begin
for i := 0 to ScriptVersao.SQLScripts.Count - 1 do begin
if ((LeftStr(ScriptVersao.SQLScripts[i].Name,4)).ToInteger > CurVer ) and
((LeftStr(ScriptVersao.SQLScripts[i].Name,4)).ToInteger <= NewVer) then begin
ScriptExecutar.ExecuteScript(ScriptVersao.SQLScripts[i].SQL);
SqLiteConnection.ExecSQL('UPDATE sistema SET versao = '+LeftStr(ScriptVersao.SQLScripts[i].Name,4));
end;
end;
end;
except
on E : Exception do
raise Exception.Create('Error Message'+ E.Message);
end;
end;
procedure TdmPrincipal.DataModuleCreate(Sender: TObject);
begin
SqLiteConnection.Connected := True;
end;
function TdmPrincipal.GetVersion(var FDConexao :TFDConnection): Integer;
var v :Variant;
begin
try
FDConexao.Open;
v := FDConexao.ExecSQLScalar('SELECT versao FROM sistema');
if not VarIsNull(v) then
if v = 0 then begin
FDConexao.ExecSQL('INSERT INTO sistema (versao) VALUES (100)');
Result := 100;
end else
Result := (v)
else
Result := -1;
except
on E:Exception do begin
raise Exception.Create('GetVersion ' + E.Message);
end;
end;
end;
end.