-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Check if SQLite is supported #62
Comments
Hello, I would like to use sqlitedb . Please let me know whether this support is already in place . |
Hello subeeshes, thanks for reminding me. sqlitedb is not yet part of the supported driver list. I expect it to work without too much problems, I'll try to add it to the next release (I have two bugfixes that need to be released) |
Thank you @realrolfje |
Anonimatron currently works with a concurrent updatable resultset. This allows for fast processing of records, as we run with a cursor through the resultset we can anonymize data in-place. SQLite does not support this use of resultset cursors due to technical limitations. When running Anonimatron against an SQLite jdbc url, it throws the following error:
To be able to support SQLite databases, Anonimatron must be able to:
|
@realrolfje . Yes, I also went through the code. Looks like there is some major code change needed. This is just for your info. The reason I am looking for sqlite3 is it helps to make file which is portable easily and it run without any DB server running on machine. This mainly helps in the automation and continuous delivery of the anonymized database file. sqlite3 is also having a lots of DB conversion tools to other DB which makes us to use it as a common delivery mechanism. |
The text was updated successfully, but these errors were encountered: