将 OrmLite 与 android 一起使用,我尝试了一个简单的查询:
GenericRawResults<String[]> results = queryRaw("SELECT * FROM transaction");
不幸的是,我收到了一个例外:
near "transaction": syntax error: , while compiling: SELECT * FROM transaction
我发现这令人困惑,在逐步查看 Orm 通过编译语句生成的内容后,我意识到语法应该是:
GenericRawResults<String[]> results = queryRaw("SELECT * FROM `transaction`");
我只是有点困惑为什么需要这样做?