Quazim0t0 commited on
Commit
1aeb4b3
·
verified ·
1 Parent(s): b0c4d64

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -5
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
- ### SQL Requirements:
271
- - Must contain valid SQL statements
272
- - Statements must be separated by semicolons
273
- - Should include CREATE TABLE and data insertion statements
 
 
 
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(