Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -259,7 +259,6 @@ with gr.Blocks() as demo:
|
|
259 |
Upload your data file to begin.
|
260 |
|
261 |
### Supported File Types:
|
262 |
-
- SQL (.sql): SQL file containing CREATE TABLE and INSERT statements
|
263 |
- CSV (.csv): CSV file with headers that will be automatically converted to a table
|
264 |
|
265 |
### CSV Requirements:
|
@@ -267,10 +266,13 @@ with gr.Blocks() as demo:
|
|
267 |
- First column will be used as the primary key
|
268 |
- Column types will be automatically detected
|
269 |
|
270 |
-
###
|
271 |
-
|
272 |
-
|
273 |
-
-
|
|
|
|
|
|
|
274 |
""")
|
275 |
|
276 |
file_input = gr.File(
|
|
|
259 |
Upload your data file to begin.
|
260 |
|
261 |
### Supported File Types:
|
|
|
262 |
- CSV (.csv): CSV file with headers that will be automatically converted to a table
|
263 |
|
264 |
### CSV Requirements:
|
|
|
266 |
- First column will be used as the primary key
|
267 |
- Column types will be automatically detected
|
268 |
|
269 |
+
### Based on ZennyKenny's SqlAgent
|
270 |
+
|
271 |
+
### SQL to CSV File Conversion
|
272 |
+
https://tableconvert.com/sql-to-csv
|
273 |
+
|
274 |
+
### Will work on the handling of SQL files soon.
|
275 |
+
|
276 |
""")
|
277 |
|
278 |
file_input = gr.File(
|