This commit is contained in:
tim.minkenberg 2026-07-15 14:02:11 +02:00
parent 5e9ac89dcd
commit 723c360f0c
166 changed files with 717 additions and 893 deletions

View file

@ -5,7 +5,8 @@ uses
Unit1 in 'Unit1.pas' {main}, Unit1 in 'Unit1.pas' {main},
Vcl.Themes, Vcl.Themes,
Vcl.Styles, Vcl.Styles,
Str_Tool_UTF in '..\Str_Tool\Str_Tool_UTF.pas'; Str_Tool_UTF in '..\Str_Tool\Str_Tool_UTF.pas',
AppPath in 'D:\Components\Apppath\AppPath.pas';
{$R *.res} {$R *.res}

File diff suppressed because it is too large Load diff

View file

@ -1,10 +1,11 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<BorlandProject> <BorlandProject>
<Transactions> <Transactions>
<Transaction>1899.12.30 00:00:00.000.435,C:\Users\tminkenberg\Documents\Embarcadero\Studio\Projekte\Unit42.dfm=D:\Projekte\DBKonverter\Unit1.dfm</Transaction>
<Transaction>1899.12.30 00:00:00.000.616,C:\Users\tminkenberg\Documents\Embarcadero\Studio\Projekte\Project46.dproj=D:\Projekte\DBKonverter\DBKonverter.dproj</Transaction> <Transaction>1899.12.30 00:00:00.000.616,C:\Users\tminkenberg\Documents\Embarcadero\Studio\Projekte\Project46.dproj=D:\Projekte\DBKonverter\DBKonverter.dproj</Transaction>
<Transaction>1899.12.30 00:00:00.000.467,=D:\Projekte\Str_Tool\Str_Tool_UTF.pas</Transaction>
<Transaction>1899.12.30 00:00:00.000.312,=D:\Components\Apppath\AppPath.pas</Transaction>
<Transaction>1899.12.30 00:00:00.000.435,C:\Users\tminkenberg\Documents\Embarcadero\Studio\Projekte\Unit42.pas=D:\Projekte\DBKonverter\Unit1.pas</Transaction> <Transaction>1899.12.30 00:00:00.000.435,C:\Users\tminkenberg\Documents\Embarcadero\Studio\Projekte\Unit42.pas=D:\Projekte\DBKonverter\Unit1.pas</Transaction>
<Transaction>1899.12.30 00:00:00.000.301,=C:\Users\tminkenberg\Documents\Embarcadero\Studio\Projekte\Unit42.pas</Transaction> <Transaction>1899.12.30 00:00:00.000.301,=C:\Users\tminkenberg\Documents\Embarcadero\Studio\Projekte\Unit42.pas</Transaction>
<Transaction>2024.10.11 14:38:12.467,=D:\Projekte\Str_Tool\Str_Tool_UTF.pas</Transaction> <Transaction>1899.12.30 00:00:00.000.435,C:\Users\tminkenberg\Documents\Embarcadero\Studio\Projekte\Unit42.dfm=D:\Projekte\DBKonverter\Unit1.dfm</Transaction>
</Transactions> </Transactions>
</BorlandProject> </BorlandProject>

Binary file not shown.

Binary file not shown.

View file

@ -1,10 +1,10 @@
[Stats] [Stats]
EditorSecs=765 EditorSecs=3977
DesignerSecs=91 DesignerSecs=28
InspectorSecs=263 InspectorSecs=296
CompileSecs=41164 CompileSecs=126664
OtherSecs=249 OtherSecs=532
StartTime=19.12.2023 17:20:49 StartTime=19.12.2023 17:20:49
RealKeys=0 RealKeys=0
EffectiveKeys=0 EffectiveKeys=0
DebugSecs=1359 DebugSecs=7921

View file

@ -91,26 +91,26 @@ BEGIN
FOR i := 0 TO T1.Fielddefs.count - 1 DO FOR i := 0 TO T1.Fielddefs.count - 1 DO
BEGIN BEGIN
IF T1.Fielddefs[i].Datatype = ftString THEN IF T1.Fielddefs[i].Datatype = ftString THEN
ZQ1.SQL.Add(T1.Fielddefs[i].Name + ' varchar(max) NULL,') ZQ1.SQL.Add('['+T1.Fielddefs[i].Name+']' + ' varchar(max) NULL,')
ELSE IF T1.Fielddefs[i].Datatype = ftMemo THEN ELSE IF T1.Fielddefs[i].Datatype = ftMemo THEN
ZQ1.SQL.Add(T1.Fielddefs[i].Name + ' varchar(max) NULL,') ZQ1.SQL.Add('['+T1.Fielddefs[i].Name+']' + ' varchar(max) NULL,')
ELSE IF T1.Fielddefs[i].Datatype = ftBoolean THEN ELSE IF T1.Fielddefs[i].Datatype = ftBoolean THEN
ZQ1.SQL.Add(T1.Fielddefs[i].Name + ' bit NULL,') ZQ1.SQL.Add('['+T1.Fielddefs[i].Name+']' + ' bit NULL,')
ELSE IF T1.Fielddefs[i].Datatype = ftFloat THEN ELSE IF T1.Fielddefs[i].Datatype = ftFloat THEN
ZQ1.SQL.Add(T1.Fielddefs[i].Name + ' float NULL,') ZQ1.SQL.Add('['+T1.Fielddefs[i].Name+']' + ' float NULL,')
ELSE IF T1.Fielddefs[i].Datatype = ftCurrency THEN ELSE IF T1.Fielddefs[i].Datatype = ftCurrency THEN
ZQ1.SQL.Add(T1.Fielddefs[i].Name + ' varchar(max) NULL,') ZQ1.SQL.Add('['+T1.Fielddefs[i].Name+']' + ' decimal(19,2) NULL,')
ELSE IF T1.Fielddefs[i].Datatype = ftDate THEN ELSE IF T1.Fielddefs[i].Datatype = ftDate THEN
ZQ1.SQL.Add(T1.Fielddefs[i].Name + ' date NULL,') ZQ1.SQL.Add('['+T1.Fielddefs[i].Name+']' + ' date NULL,')
ELSE IF T1.Fielddefs[i].Datatype = ftTime THEN ELSE IF T1.Fielddefs[i].Datatype = ftTime THEN
ZQ1.SQL.Add(T1.Fielddefs[i].Name + ' datetime NULL,') ZQ1.SQL.Add('['+T1.Fielddefs[i].Name+']' + ' datetime NULL,')
ELSE IF T1.Fielddefs[i].Datatype = ftSmallint THEN ELSE IF T1.Fielddefs[i].Datatype = ftSmallint THEN
ZQ1.SQL.Add(T1.Fielddefs[i].Name + ' int NULL,') ZQ1.SQL.Add('['+T1.Fielddefs[i].Name+']' + ' int NULL,')
ELSE IF T1.Fielddefs[i].Datatype = ftInteger THEN ELSE IF T1.Fielddefs[i].Datatype = ftInteger THEN
ZQ1.SQL.Add(T1.Fielddefs[i].Name + ' int NULL,') ZQ1.SQL.Add('['+T1.Fielddefs[i].Name+']' + ' int NULL,')
ELSE ELSE
BEGIN BEGIN
ZQ1.SQL.Add(T1.Fielddefs[i].Name + ' varchar(max) NULL,') ZQ1.SQL.Add('['+T1.Fielddefs[i].Name+']' + ' varchar(max) NULL,')
END; END;
END; END;
ZQ1.SQL[ZQ1.SQL.count - 1] := FilterChar(ZQ1.SQL[ZQ1.SQL.count - 1], ','); ZQ1.SQL[ZQ1.SQL.count - 1] := FilterChar(ZQ1.SQL[ZQ1.SQL.count - 1], ',');

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show more