如何判断 CakePHP 中的字段是 nvarchar
我想确保保存到数据库的字符串格式正确为 UTF-8。我已将一些字段转换为 nvarchar。为了正确保存字符串,我需要在所有字符串前加上 N 前缀。例如 N'my string'
。
然而,并非所有字段都必须是 nvarchar。在我使用的扩展 DboSource 的 DboSqlsrv 类中,只有一个字符串参数您可以指定为“varchar”或“nvarchar”。
有谁知道是否有一种“蛋糕”方式来询问数据库并检查字段是 varchar 还是 nvarchar?
I want to make sure that the strings I save to the database are properly formatted in UTF-8. I have converted some of the fields into nvarchar. To save the strings properly I need to prefix all strings with N. e.g. N'my string'
.
However not all fields are necessarily nvarchar. In the DboSqlsrv class that I am using that extends DboSource, there is just the one string parameter that you can either specify as 'varchar' or 'nvarchar'.
Does anybody know if there is a 'cake' way to interrogate the database and check if a field is varchar or nvarchar?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这? http://book.cakephp.org/view/1066/_schema
this? http://book.cakephp.org/view/1066/_schema