-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCSV2SQL.PAS
200 lines (193 loc) · 5.05 KB
/
CSV2SQL.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
{ @author: Sylvain Maltais (support@gladir.com)
@created: 2023
@website(https://www.gladir.com/csv-tools)
@abstract(Target: Turbo Pascal 7, Free Pascal)
}
Program CSV2SQL(Input,Output);
Uses DOS;
Var
SourceCSV,TargetSQL:Text;
CurrLine,CurrWord,CurrField,TableName,FileName,TFileName:String;
I:Integer;
First:Boolean;
Function Path2Name(S:String):String;
Var
D:DirStr;
N:NameStr;
E:ExtStr;
Begin
FSplit(S,D,N,E);
Path2Name:=N;
End;
Function Path2Ext(S:String):String;
Var
D:DirStr;
N:NameStr;
E:ExtStr;
Begin
FSplit(S,D,N,E);
Path2Ext:=E;
End;
Function StringToSQLString(Source:String):String;
Var
I:Integer;
ConvStr:String;
Begin
ConvStr:='';
For I:=1 to Length(Source)do Begin
If Source[I]=''''Then ConvStr:=ConvStr+''''+'''';
ConvStr:=ConvStr+Source[I];
End;
StringToSQLString:=ConvStr;
End;
BEGIN
If(ParamStr(1)='/?')or(ParamStr(1)='--help')or(ParamStr(1)='-h')or
(ParamStr(1)='/h')or(ParamStr(1)='/H')Then Begin
WriteLn('CSV2SQL : Cette commande permet de convertir un fichier CSV en SQL.');
WriteLn;
WriteLn('Syntaxe : CSV2SQL source.CSV target.SQL');
WriteLn;
WriteLn(' fichier.CSV Nom du fichier a convertir');
WriteLn(' fichier.SQL Nom du fichier du resultat');
WriteLn;
End
Else
Begin
If ParamCount>0Then Begin
TableName:=Path2Name(ParamStr(1));
FileName:=FExpand(ParamStr(1));
If Path2Ext(FileName)=''Then FileName:=FileName+'.CSV';
Assign(SourceCSV,FileName);
{$I-}Reset(SourceCSV);{$I+}
If IoResult<>0Then Begin
WriteLn('Fichier CSV introuvable !');
Halt;
End;
If ParamStr(2)=''Then Begin
First:=True;
While Not EOF(SourceCSV)do Begin
ReadLn(SourceCSV,CurrLine);
If(First)Then Begin
First:=False;
Write('CREATE TABLE ',TableName,' (');
CurrWord:='';
For I:=1 to Length(CurrLine)do Begin
If CurrLine[I]=','Then Begin
If(CurrWord[1]='"')and(CurrWord[Length(CurrWord)]='"')Then Begin
Write(Copy(CurrWord,2,Length(CurrWord)-2),' TEXT,');
End
Else
Write(CurrWord,' TEXT,');
CurrWord:='';
End
Else
CurrWord:=CurrWord+CurrLine[I];
End;
Write(CurrWord,' TEXT');
CurrField:=CurrWord;
WriteLn(');');
End
Else
Begin
Write('INSERT INTO (');
CurrWord:='';
For I:=1 to Length(CurrLine)do Begin
If CurrLine[I]=','Then Begin
If(CurrWord[1]='"')and(CurrWord[Length(CurrWord)]='"')Then Begin
Write('''',StringToSQLString(Copy(CurrWord,2,Length(CurrWord)-2)),''',');
End
Else
Write('''',StringToSQLString(CurrWord),''',');
CurrWord:='';
End
Else
CurrWord:=CurrWord+CurrLine[I];
End;
Write('''',StringToSQLString(CurrWord),'''');
WriteLn(');');
End;
End;
Close(SourceCSV);
End
Else
Begin
TFileName:=FExpand(ParamStr(2));
If Path2Ext(TFileName)=''Then TFileName:=TFileName+'.SQL';
Assign(TargetSQL,TFileName);
{$I-}Rewrite(TargetSQL); {$I+}
If IoResult<>0Then Begin
WriteLn('Impossible de cr‚er le fichier SQL ',TFileName,' !');
Close(SourceCSV);
Halt;
End;
First:=True;
While Not EOF(SourceCSV)do Begin
ReadLn(SourceCSV,CurrLine);
If(First)Then Begin
First:=False;
Write(TargetSQL,'CREATE TABLE ',TableName,' (');
CurrWord:='';
For I:=1 to Length(CurrLine)do Begin
If CurrLine[I]=','Then Begin
If(CurrWord[1]='"')and(CurrWord[Length(CurrWord)]='"')Then Begin
Write(TargetSQL,Copy(CurrWord,2,Length(CurrWord)-2),' TEXT,');
End
Else
Write(TargetSQL,CurrWord,' TEXT,');
CurrWord:='';
End
Else
CurrWord:=CurrWord+CurrLine[I];
End;
Write(TargetSQL,CurrWord,' TEXT');
CurrField:=CurrWord;
WriteLn(TargetSQL,');');
End
Else
Begin
Write(TargetSQL,'INSERT INTO (');
CurrWord:='';
For I:=1 to Length(CurrLine)do Begin
If CurrLine[I]=','Then Begin
If(CurrWord[1]='"')and(CurrWord[Length(CurrWord)]='"')Then Begin
Write(TargetSQL,'''',StringToSQLString(Copy(CurrWord,2,Length(CurrWord)-2)),''',');
End
Else
Write(TargetSQL,'''',StringToSQLString(CurrWord),''',');
CurrWord:='';
End
Else
CurrWord:=CurrWord+CurrLine[I];
End;
Write(TargetSQL,'''',StringToSQLString(CurrWord),'''');
WriteLn(TargetSQL,');');
End;
End;
Close(TargetSQL);
Close(SourceCSV);
End;
End
Else
Begin
While Not EOF do Begin
ReadLn(Input,CurrLine);
Write('INSERT INTO (');
CurrWord:='';
For I:=1 to Length(CurrLine)do Begin
If CurrLine[I]=','Then Begin
If(CurrWord[1]='"')and(CurrWord[Length(CurrWord)]='"')Then Begin
Write('''',StringToSQLString(Copy(CurrWord,2,Length(CurrWord)-2)),''',');
End
Else
Write('''',StringToSQLString(CurrWord),''',');
CurrWord:='';
End
Else
CurrWord:=CurrWord+CurrLine[I];
End;
Write('''',StringToSQLString(CurrWord),'''');
WriteLn(');');
End;
End;
End;
END.