得到一个名为保留字的Oracle表,可能会出现哪些问题?

发布于 2024-10-14 00:00:19 字数 208 浏览 1 评论 0原文

我们刚刚外包了一个系统,乍一看我可以看到一些名称为 CASE 或 FROM 的表和字段。它是一个 Oracle 10g DB,我们将使用来自 Java、Hibernate、C#、C++ 的这些数据。

有什么特别我们应该注意的吗?

对于我在其他帖子中看到的情况,不建议这样做,因为它会影响代码的可读性,但是这可能会导致任何其他主要或更严重的问题吗?

谢谢!

We just got a system outsourced and at first glance i can see some tables and fields with names as CASE or FROM. It is an Oracle 10g DB and we are going to be consuming those data from Java, Hibernate, C#, C++.

Is there something special we should be aware of?

For what i've seen in other posts this is not recommended because it will affect readability of our code, but is there any other, major or more serious problems this could cause?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

计㈡愣 2024-10-21 00:00:19

要转义 Oracle 中的保留字,您需要将它们(在本例中为表名)括在双引号中。 IE:

SELECT *
  FROM "CASE"

否则,您将收到“ORA-00903:无效的表名”错误。 IIRC,Oracle 将双引号内的文本视为区分大小写,因此如果在使用示例查询时以小写形式创建表名,您仍然会收到错误。

除此之外,我只能看到命名不当的实体/属性的常见问题。

To escape reserved words in Oracle, you need to enclose them (in this case, the table name) in double quotes. IE:

SELECT *
  FROM "CASE"

Otherwise, you'll get an "ORA-00903: Invalid table name" error. IIRC, Oracle treats text inside of double quotes as case sensitive so you can still get the error if the table name was created in lowercase when using the example query.

Other than that, I can only see the usual issue with poorly named entities/attributes.

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