DAO.cfc 中的动态表名?
我正在编写一个子系统,表可以在项目之间重命名。
而不是要求我的子系统的用户搜索&使用前先更换,这样有效吗?
<cfquery name="local.foo" datasource="#dsn#">
SELECT col1, col2, col3
FROM #tableName#
</cfquery>
如果没有
,它会变得不可缓存吗?或任何其他问题? (假设 SQL 注入不是问题)
我认为我不能使用
作为表名,对吧?
谢谢。
I'm writing a subsystem that tables might be renamed from project to project.
Instead of asking the user of my subsystem to search & replace before using it, does this work?
<cfquery name="local.foo" datasource="#dsn#">
SELECT col1, col2, col3
FROM #tableName#
</cfquery>
Without <cfqueryparam>
, will it become non-cacheable? or any other issues? (assume SQL-injection is not an issue)
I don't think I can use <cfqueryparam>
for table name, right?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然,那会起作用的。 CF 只是将所有变量转换为其值并将字符串发送到数据库驱动程序。
不过,要非常非常小心。正如您所暗示的,这可能会导致一些令人讨厌的 SQL 注入。
That'll work, sure. CF simply converts all variables to their values and sends the string to the database driver.
Be very, very careful, though. As you've implied, this could set you up for some nasty SQL injection.