simoc
simoc
Add querying of CSV files from a URL. This will enable Google Sheets spreadsheets (and other data publicly available on the internet as CSV files) to be queried directly, without...
Add an SQL function to convert a date or timestamp to a string. The java.time.format.DateTimeFormatter class will be used to do the conversion and format will be a pattern used...
Add an SQL function to convert a string to a date/timestamp. The java.time.format.DateTimeFormatter class will be used to convert the string and format will be a pattern used by java.time.format.DateTimeFormatter....
C code comment should be `/* io.h is implemented ...`, not `/* io.h is implement ...`. Removed unnecessary "the" from io C code comment. Added missing semi-colon in `fb_write_cell` function....
Add a DECODE function like in PostreSQL to convert a hexadecimal or base 64 text string to a BLOB data type. For example, DECODE('FF7F00FC', 'hex') DECODE('aGVsbG8=', 'base64') This makes it...
Changed GitHub Actions file `.github/workflows/maven-package.yml` to build CsvJdbc with java version 17, instead of java version 11. Closes #154