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.
使用QxOrm,有没有办法命名表名? 例如,我有一个名为ClassA. 而我想要的ClassA是对应数据库中命名table_a的一个表。怎么做?
QxOrm
ClassA
table_a
我找到了答案。 在 qx::register_class() 方法中,使用: t.setName("table_a");
t.setName("table_a");