Releases: shencangsheng/easydb_app
Releases · shencangsheng/easydb_app
Release v2.6.0
- Optimized query result paging loading, loading 200 rows per page
- Optimized column name completion to automatically use double quotes to wrap, avoiding SQL syntax errors
- Optimized the problem that the right side will appear blank when the data column is not filled
Release v2.5.0
- Optimized automatic use of read_text() function when dragging non-csv, xlsx, json, parquet file suffixes
- Optimized completion prompts, will use header names already in the list as completion prompts
- The default number of query rows has been changed from 200 to 1000
Release v2.4.1
- Fixed the problem that the delimiter parameter in read_csv() and read_tsv() functions supports escape sequences (e.g., \t, \n, \r, \)
Release v2.4.0
- Fixed the problem that the data table rendering is stuck by @Gzbox in #5
- Fixed the problem that when the file has no data, it returns an error instead of displaying an empty table by @caelansar in #6
- Fixed the problem that
read_ndjson()function is mistakenly written asread_dnjson()
Release v2.3.0
- Fixed the problem that nested queries cannot be executed
- Optimized read_excel() to select the first sheet instead of Sheet1 as the default sheet
Release v2.2.0
- Added has_header, delimiter, and file_extension parameters to read_csv() and read_tsv() functions
- Added the ability to select database dialect when exporting SQL statements, supporting MySQL and PostgreSQL
- Optimized the performance of exporting large files in SQL statements
Release v2.1.2
- Fixed the problem that the extension of read_tsv() is required to be .csv
Release v2.1.1
- Fixed the problem that the table name input automatically completes the first letter of the table name to uppercase when exporting SQL statements
- Fixed the problem that only one of the sheet_name and infer_schema parameters can take effect when using read_excel()
Release v2.1.0
- Added read_mysql() function, supporting MySQL database queries
- DataFusion version upgraded to 50.3.0
- SQL intelligent completion function optimization
Release v2.0.1
- Corrected errors in the example documentation