Skip to content

Commit

Permalink
Implementação Unidac
Browse files Browse the repository at this point in the history
Implementado o Driver para o Unidac e Colocado os Icones dos Componentes.
  • Loading branch information
bittencourtthulio committed Oct 23, 2017
1 parent 34de1cb commit 33944cc
Show file tree
Hide file tree
Showing 242 changed files with 21,037 additions and 170 deletions.
1,452 changes: 1,365 additions & 87 deletions Sample/VCL_SImples/Unit3.dfm

Large diffs are not rendered by default.

110 changes: 84 additions & 26 deletions Sample/VCL_SImples/Unit3.pas
Expand Up @@ -5,47 +5,65 @@ interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls,
TBGConnection.View.Principal, FireDAC.Stan.Intf, FireDAC.Stan.Option,
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.VCLUI.Wait,
Data.DB, FireDAC.Comp.Client, TBGFiredacDriver.Model.Conexao,
FireDAC.Stan.Param, FireDAC.DatS, FireDAC.DApt.Intf, FireDAC.DApt,
FireDAC.Comp.DataSet, TBGFiredacDriver.View.Driver, FireDAC.Phys.FB,
Data.DB, FireDAC.Comp.Client, FireDAC.Stan.Param, FireDAC.DatS, FireDAC.DApt.Intf, FireDAC.DApt,
FireDAC.Comp.DataSet, FireDAC.Phys.FB,
FireDAC.Phys.FBDef, Vcl.Grids, Vcl.DBGrids, Datasnap.DBClient, Vcl.ExtCtrls,
Vcl.DBCtrls, TBGConnection.Model.Interfaces, Vcl.Mask, Data.FMTBcd,
Data.SqlExpr, Data.DBXFirebird, TBGDBExpressDriver.View.Driver,
Datasnap.Provider, ZAbstractRODataset, ZAbstractDataset, ZDataset,
ZAbstractConnection, ZConnection, TBGZeosDriver.View.Driver;
Vcl.DBCtrls, Vcl.Mask, Data.FMTBcd,
Data.SqlExpr, Data.DBXFirebird, Datasnap.Provider, ZAbstractRODataset, ZAbstractDataset, ZDataset,
ZAbstractConnection, ZConnection, Vcl.Imaging.jpeg,
TBGFiredacDriver.View.Driver, TBGDBExpressDriver.View.Driver,
TBGConnection.View.Principal, TBGZeosDriver.View.Driver, TBGConnection.Model.Interfaces,
MemDS, DBAccess, Uni, TBGUnidacDriver.View.Driver, UniProvider,
InterBaseUniProvider;

type
TForm3 = class(TForm)
Button1: TButton;
FDConnection1: TFDConnection;
BGFiredacDriverConexao1: TBGFiredacDriverConexao;
DataSource1: TDataSource;
DBNavigator1: TDBNavigator;
Button3: TButton;
Button2: TButton;
Edit1: TEdit;
Edit2: TEdit;
Edit3: TEdit;
Edit4: TEdit;
TesteConnection: TSQLConnection;
BGDBExpressDriverConexao1: TBGDBExpressDriverConexao;
TBGConnection1: TTBGConnection;
DBGrid1: TDBGrid;
ZConnection1: TZConnection;
Button4: TButton;
Button5: TButton;
Button6: TButton;
Button7: TButton;
GroupBox1: TGroupBox;
Edit1: TEdit;
Edit2: TEdit;
Label1: TLabel;
Label2: TLabel;
Image1: TImage;
ComboBox1: TComboBox;
Label3: TLabel;
SQLConnection1: TSQLConnection;
BGZeosDriverConexao1: TBGZeosDriverConexao;
TBGConnection1: TTBGConnection;
BGDBExpressDriverConexao1: TBGDBExpressDriverConexao;
BGFiredacDriverConexao1: TBGFiredacDriverConexao;
UniConnection1: TUniConnection;
BGUnidacDriverConexao1: TBGUnidacDriverConexao;
InterBaseUniProvider1: TInterBaseUniProvider;
procedure Button1Click(Sender: TObject);
procedure Button3Click(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure Button2Click(Sender: TObject);
procedure DataSource1DataChange(Sender: TObject; Field: TField);
procedure Button4Click(Sender: TObject);
procedure Button7Click(Sender: TObject);
procedure Button5Click(Sender: TObject);
procedure Button6Click(Sender: TObject);
private
{ Private declarations }
FQuery : iQuery;
public
{ Public declarations }
procedure preencherDados;
procedure SelecionaDriver;
end;

var
Expand All @@ -57,9 +75,14 @@ implementation

procedure TForm3.Button1Click(Sender: TObject);
begin
SelecionaDriver;
FQuery := TBGConnection1.Driver.Query;

FQuery
.DataSource(DataSource1)
.Open('SELECT * FROM NF');
.Open('SELECT * FROM CLIENTE');

FQuery.Fields.FieldByName('NOME').DisplayWidth := 105;
end;

procedure TForm3.Button2Click(Sender: TObject);
Expand All @@ -71,23 +94,58 @@ procedure TForm3.Button3Click(Sender: TObject);
begin
ShowMessage(
FQuery
.Fields
.FieldByName('DATA_EMISSAO')
.DataSet
.FieldByName('NOME')
.AsString
);
end;

procedure TForm3.Button4Click(Sender: TObject);
var
i : Integer;
begin
FQuery.DataSet.Insert;
end;

procedure TForm3.Button5Click(Sender: TObject);
begin
FQuery.DataSet.Edit;
end;

procedure TForm3.Button6Click(Sender: TObject);
begin
FQuery.DataSet.Delete;
end;

procedure TForm3.Button7Click(Sender: TObject);
begin
preencherDados;
FQuery.DataSet.Post;
end;

procedure TForm3.DataSource1DataChange(Sender: TObject; Field: TField);
begin
Edit1.Text := FQuery.Fields.FieldByName('DATA_EMISSAO').AsString;
Edit2.Text := FQuery.Fields.FieldByName('USUARIO_INCLUSAO_DES').AsString;
Edit3.Text := FQuery.Fields.FieldByName('HORA_EMISSAO').AsString;
Edit4.Text := FQuery.Fields.FieldByName('HORA_SAIDA').AsString;
if DataSource1.State = dsBrowse then
begin
Edit1.Text := FQuery.Fields.FieldByName('ID').AsString;
Edit2.Text := FQuery.Fields.FieldByName('NOME').AsString;
end;
end;

procedure TForm3.FormCreate(Sender: TObject);
procedure TForm3.preencherDados;
begin
FQuery := TBGConnection1.Driver.Query;
FQuery.DataSet.FieldByName('ID').Value := StrToInt(Edit1.Text);
FQuery.DataSet.FieldByName('NOME').Value := Edit2.Text;
end;

procedure TForm3.SelecionaDriver;
begin
case ComboBox1.ItemIndex of
0 : TBGConnection1.Driver := BGDBExpressDriverConexao1;
1 : TBGConnection1.Driver := BGFiredacDriverConexao1;
2 : TBGConnection1.Driver := BGZeosDriverConexao1;
3 : TBGConnection1.Driver := BGUnidacDriverConexao1;
end;
end;

end.
5 changes: 4 additions & 1 deletion Sample/VCL_SImples/VCLSimples.dpr
Expand Up @@ -2,14 +2,17 @@ program VCLSimples;

uses
Vcl.Forms,
Unit3 in 'Unit3.pas' {Form3};
Unit3 in 'Unit3.pas' {Form3},
Vcl.Themes,
Vcl.Styles;

{$R *.res}

begin
Application.Initialize;
//ReportMemoryLeaksOnShutdown := true;
Application.MainFormOnTaskbar := True;
TStyleManager.TrySetStyle('Silver');
Application.CreateForm(TForm3, Form3);
Application.Run;
end.
9 changes: 9 additions & 0 deletions Sample/VCL_SImples/VCLSimples.dproj
Expand Up @@ -59,6 +59,7 @@
<UWP_DelphiLogo44>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png</UWP_DelphiLogo44>
<UWP_DelphiLogo150>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png</UWP_DelphiLogo150>
<SanitizedProjectName>VCLSimples</SanitizedProjectName>
<Custom_Styles>Silver|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Silver.vsf</Custom_Styles>
</PropertyGroup>
<PropertyGroup Condition="'$(Base_Win32)'!=''">
<DCC_UsePackage>DBXSqliteDriver;fmxase;DBXDb2Driver;DBXInterBaseDriver;ZComponent;vclactnband;ZCore;vclFireDAC;tethering;svnui;TBGConnection;FireDACADSDriver;DBXMSSQLDriver;FBZabuuReplicator;DatasnapConnectorsFreePascal;FireDACMSSQLDriver;vcltouch;vcldb;bindcompfmx;svn;Intraweb;DBXOracleDriver;FMXForms;inetdb;emsedge;fmx;fmxdae;FireDACDBXDriver;dbexpress;IndyCore;DCEF_XE5;vclx;ZParseSql;dsnap;DataSnapCommon;DataSnapConnectors;VCLRESTComponents;vclie;bindengine;DBXMySQLDriver;FireDACOracleDriver;FireDACMySQLDriver;DBXFirebirdDriver;FireDACCommonODBC;DataSnapClient;IndyIPCommon;bindcompdbx;vcl;IndyIPServer;DBXSybaseASEDriver;IndySystem;FireDACDb2Driver;dsnapcon;FireDACMSAccDriver;fmxFireDAC;FireDACInfxDriver;vclimg;ZDbc;emshosting;CompEventos;FireDACPgDriver;FireDACASADriver;DBXOdbcDriver;FireDACTDataDriver;DbxCommonDriver;DataSnapServer;xmlrtl;DataSnapNativeClient;fmxobj;vclwinx;FireDACDSDriver;rtl;DbxClientDriver;DBXSybaseASADriver;CustomIPTransport;vcldsnap;bindcomp;appanalytics;ZPlain;DBXInformixDriver;FormFMXCadastro;IndyIPClient;bindcompvcl;dbxcds;VclSmp;adortl;FireDACODBCDriver;DataSnapIndy10ServerTransport;dsnapxml;DataSnapProviderClient;dbrtl;IndyProtocols;inetdbxpress;FireDACMongoDBDriver;DataSnapServerMidas;$(DCC_UsePackage)</DCC_UsePackage>
Expand All @@ -84,6 +85,8 @@
<DCC_RemoteDebug>false</DCC_RemoteDebug>
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
<AppEnableHighDPI>true</AppEnableHighDPI>
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
<VerInfo_Locale>1033</VerInfo_Locale>
</PropertyGroup>
<PropertyGroup Condition="'$(Cfg_2)'!=''">
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
Expand Down Expand Up @@ -123,6 +126,12 @@
<Source>
<Source Name="MainSource">VCLSimples.dpr</Source>
</Source>
<Excluded_Packages>
<Excluded_Packages Name="$(BDSBIN)\bcboffice2k250.bpl">Embarcadero C++Builder Office 2000 Servers Package</Excluded_Packages>
<Excluded_Packages Name="$(BDSBIN)\bcbofficexp250.bpl">Embarcadero C++Builder Office XP Servers Package</Excluded_Packages>
<Excluded_Packages Name="$(BDSBIN)\dcloffice2k250.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
<Excluded_Packages Name="$(BDSBIN)\dclofficexp250.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
</Excluded_Packages>
</Delphi.Personality>
<Deployment Version="3">
<DeployFile LocalName="Win32\Debug\VCLSimples.exe" Configuration="Debug" Class="ProjectOutput">
Expand Down
Binary file modified Sample/VCL_SImples/VCLSimples.identcache
Binary file not shown.
Binary file modified Sample/VCL_SImples/VCLSimples.res
Binary file not shown.
12 changes: 6 additions & 6 deletions Sample/VCL_SImples/VCLSimples.stat
@@ -1,10 +1,10 @@
[Stats]
EditorSecs=4221
DesignerSecs=507
InspectorSecs=203
CompileSecs=286427
OtherSecs=88
EditorSecs=6142
DesignerSecs=697
InspectorSecs=261
CompileSecs=554428
OtherSecs=543
StartTime=22/10/2017 10:20:01
RealKeys=0
EffectiveKeys=0
DebugSecs=720
DebugSecs=1029
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/TBGConnection.Model.Interfaces.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/TBGConnection.View.Interfaces.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/TBGConnection.View.Principal.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/TBGDBExpressDriver.Model.Conexao.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/TBGDBExpressDriver.Model.Query.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/TBGDBExpressDriver.View.Driver.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/TBGFiredacDriver.Model.Conexao.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/TBGFiredacDriver.Model.Query.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/TBGFiredacDriver.View.Driver.dcu
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/TBGZeosDriver.Model.Conexao.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/TBGZeosDriver.Model.Query.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/TBGZeosDriver.View.Driver.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/Unit3.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/VCLSimples.exe
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZAbstractConnection.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZAbstractDataset.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZAbstractRODataset.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZAbstractTable.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZAdoToken.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZClasses.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZCollections.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZCompatibility.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZConnection.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDataset.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDatasetUtils.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcASA.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcASAMetadata.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcASAResultSet.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcASAStatement.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcASAUtils.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcAdo.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcAdoMetadata.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcAdoResultSet.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcAdoStatement.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcAdoUtils.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcCache.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcCachedResultSet.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcConnection.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcDbLib.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcDbLibMetadata.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcDbLibResultSet.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcDbLibStatement.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcDbLibUtils.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcGenericResolver.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcInterbase6.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcInterbase6Metadata.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcInterbase6ResultSet.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcInterbase6Statement.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcInterbase6Utils.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcIntfs.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcLogging.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcMetadata.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcMySql.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcMySqlMetadata.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcMySqlResultSet.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcMySqlStatement.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcMySqlUtils.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcOracle.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcOracleMetadata.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcOracleResultSet.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcOracleStatement.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcOracleUtils.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcPooled.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcPostgreSql.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcPostgreSqlMetadata.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcPostgreSqlResultSet.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcPostgreSqlStatement.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcPostgreSqlUtils.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcResultSet.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcResultSetMetadata.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcSqLite.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcSqLiteMetadata.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcSqLiteResultSet.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcSqLiteStatement.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcSqLiteUtils.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcStatement.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZDbcUtils.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZEncoding.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZExprParser.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZExprToken.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZExpression.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZFastCode.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZFunctions.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZFunctionsConvert.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZFunctionsDateTime.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZFunctionsMath.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZFunctionsOther.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZFunctionsStrings.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZGenericSqlAnalyser.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZGenericSqlToken.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZInterbaseAnalyser.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZInterbaseToken.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZMatchPattern.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZMessages.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZMySqlAnalyser.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZMySqlToken.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZOracleAnalyser.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZOracleToken.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZPlainASAConstants.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZPlainASADriver.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZPlainAdo.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZPlainAdoDriver.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZPlainDbLibConstants.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZPlainDbLibDriver.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZPlainDriver.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZPlainFirebirdDriver.dcu
Binary file not shown.
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZPlainLoader.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZPlainMySqlConstants.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZPlainMySqlDriver.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZPlainOracleConstants.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZPlainOracleDriver.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZPlainPostgreSqlDriver.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZPlainSqLiteDriver.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZPostgreSqlAnalyser.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZPostgreSqlToken.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZScriptParser.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZSelectSchema.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZSequence.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZSqLiteAnalyser.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZSqLiteToken.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZSqlProcessor.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZSqlStrings.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZSqlUpdate.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZStreamBlob.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZSybaseAnalyser.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZSybaseToken.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZSysUtils.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZTokenizer.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZURL.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZVariables.dcu
Binary file not shown.
Binary file modified Sample/VCL_SImples/Win32/Debug/ZVariant.dcu
Binary file not shown.

0 comments on commit 33944cc

Please sign in to comment.