UnsatisfiedLinkError with sqlite4java Jar on Mac OS X NetBeans

前端 未结 4 2006
悲哀的现实
悲哀的现实 2020-12-11 08:49

I am getting experiencing a similar problem to this question:

UnsatisfiedLinkError with sqlite4java Jar on Mac OS X

However, I am running on a Mac, and I hav

4条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-11 09:05

    Not sure what exactly is the problem, but you can try running sqlite4java's diagnostics code from within your program and see if it shows the same loading sequence:

    public Database() {
        com.almworks.sqlite4java.SQLite.main(new String[] {"-d"});
        db = new SQLiteConnection(new File("./test.db"));
        ...
    

提交回复
热议问题