ucanaccess
ucanaccess copied to clipboard
Open-source pure Java JDBC driver for Microsoft Access databases. Allows Java developers and client programs (e.g. OpenOffice, LibreOffice, SQuirreL) to read and write various versions of Access datab...
Issue -------------------- Currently UCanAccess depends on `HSQLDB v2.7.1`, but at some point we will have to update this dependency. I updated HSQLDB to `v2.7.2`, to check if it runs stable,...
UCanAccess version 5.1.2-SNAPSHOT Attempting to insert an explicit NULL value into a column that is nullable and has a default value causes the default value to be inserted instead of...
Suggestion: Earlier versions of UCanAccess made a complete bin.zip file available for download from SourceForge, e.g., `UCanAccess-5.0.1.bin.zip` contained ``` UCanAccess-5.0.1.bin lib commons-lang3-3.8.1.jar commons-logging-1.2.jar hsqldb-2.5.0.jar jackcess-3.0.1.jar licenses apache-license-2.0.txt hsqldb_lic.txt hypersonic_lic.txt lgpl-2.1.txt...
The new fat jar added in https://github.com/spannm/ucanaccess/issues/7 helpfully bundles all driver dependencies. For example, in [ucanaccess-5.1.2-20240327.163958-57-fat.jar](https://s01.oss.sonatype.org/content/repositories/snapshots/io/github/spannm/ucanaccess/5.1.2-SNAPSHOT/ucanaccess-5.1.2-20240327.163958-57-fat.jar) I can see * com.zaxxer.sparsebits * org.apache.commons * org.hsqldb As only one version of...
I've created an internally used tool that reads some records from a csv file, and then inserts them into an access database. This was working before, but when I switched...