Hi,
is there any example for an access url to a file.gz. data source
Thanks.
|
HTT Text (CSV) supports seamlessly files and directories in ZIP and GZIP file formats(ZIP,JAR,TAR) in jdbc url and sql. It means no usage different between compressed file path and common file path. Your can use jdbc:csv:/c:/csvzipfile/testcsv.zip as or jdbc:csv:/c:/test/testcsv.jar/adir as jdbc url. select * from "testcsv.zip/adir".atable can work too. Now HXTT Text supports ZIP, JAR, and TAR suffix. I will try to complement .GZ suffix support too.
|
Hi,
in your documenration you wrote that you already supports .GZ??
|
Yeah. But I checked the code and found missed GZ suffix support. It will be availabe in 24 hour. Thanks for your patience.
|
GZ support has been enabled. You can download the latest package.
For instance:
1. jdbc url: jdbc:csv:/f:/textfiles/
sql: select * from "a.csv.gz".a
2. jdbc url jdbc:csv:/f:/textfiles/a.csv.gz
sql: select * from a
We will test more samples in 24 hours. Thanks for your patience.
|