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 databases.
Version: ucanaccess 5.0.1;jdk 1.8.0
Problem:
i need to create and write different mdb files with multiple threads,the mdbs have different table struct;i found that when A thread creates Table A, and B thread sometimes will report an error when creating Table B. The reason for the error is due to the influence of A thread;
some log belows:
thread-3 should create PICINDEX,thread-2 should create FaultLevel,however, thread-2 create table failed,the error is " user lacks privilege or object not found: PICINDEX",but PICINDEX should create by thread-3.
when i use just one thread to deal all mdb files sequentially,no error wiil happen.
Question:
do you have know this problem,or does version 5.1.1 has fixed this problem.
Version: ucanaccess 5.0.1;jdk 1.8.0 Problem: i need to create and write different mdb files with multiple threads,the mdbs have different table struct;i found that when A thread creates Table A, and B thread sometimes will report an error when creating Table B. The reason for the error is due to the influence of A thread; some log belows:
thread-3 should create PICINDEX,thread-2 should create FaultLevel,however, thread-2 create table failed,the error is " user lacks privilege or object not found: PICINDEX",but PICINDEX should create by thread-3.
when i use just one thread to deal all mdb files sequentially,no error wiil happen. Question: do you have know this problem,or does version 5.1.1 has fixed this problem.