ruby - DataMapper怎么指定表名?
天蓬老师
天蓬老师 2017-04-24 09:10:15
0
1
687

初学DataMapper,建了以下类:

rubyclass Node
  include DataMapper::Resource

  property :nid,         Serial
  property :title,       String
end

但报错:
~ Table 'NWST.nodes' doesn't exist (code: 1146, sql state: 42S02, query: SELECT nid, title FROM nodes ORDER BY nid, uri: mysql:root@127.0.0.1/NWST?scheme=mysql&user=root&password=&host=127.0.0.1&port=&path=/NWST&query=&fragment=&adapter=mysql)

这是因为表名是node,DM自动改为复数名,如何才能指定表名?

天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

reply all(1)
巴扎黑

DM is automatically changed to a plural name. How can I specify the table name?

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!