DAO.cfc 中的动态表名?

发布于 2024-08-02 23:01:07 字数 383 浏览 2 评论 0原文

我正在编写一个子系统,表可以在项目之间重命名。

而不是要求我的子系统的用户搜索&使用前先更换,这样有效吗?

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

也只是曾经 2024-08-09 23:01:07

当然,那会起作用的。 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文