Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 mysql 数据库中有一个名为 group 的表。当我将此表映射到 squeryl 时,我收到 SQL 语法错误,因为表名组没有被引用(应该是 select * from `group`)。
有什么方法可以告诉 squeryl 引用某些表名吗?
你有没有尝试过 :
val groups = table[Group]("`group`")
?
GROUP 是 SQL 中的保留字,因此我建议将您的表重命名为其他名称。(我猜这是这个问题的原因。)