本文介绍了在HSQL中关闭表和列名称的大写字母?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在HSQL中关闭表名和列名的强制大写模式?

How to turn off forced upper-case mode for table and column names in HSQL?

<artifactId>hsqldb</artifactId>
<version>2.3.1</version>

操作系统: Windows 7 x64

推荐答案

HSQLDB文档:

  • 在处理之前,SQL语句的所有部分都转换为大写,除了双引号中的标识符和单引号中的字符串 引号
  • 然后,将
  • 未加引号和双引号的标识符视为区分大小写
  • 除了MySQL和MS SQLServer在某些方面,大多数数据库引擎遵循相同的规则.
  • all parts of SQL statements are converted to upper case before processing, except identifiers in double quotes and strings in single quotes
  • identifiers, both unquoted and double quoted, are then treated as case-sensitive
  • most database engines follow the same rule, except, in some respects, MySQL and MS SQLServer.

无法关闭此行为. (值得注意的是,当不使用带引号的标识符时,标准SQL不区分大小写.)但是如上所述,可以通过将引号括起来来指定小写的标识符,例如:

AFAIK this behaviour can't be turned off. (It's worth noting that standard SQL is case-insensitive when quoted identifiers aren't used.) But as mentioned above, a lower case identifier can be specified by enclosing in quotes, e.g:

CREATE TABLE "lowercasetablename" ("lowercasecolname" INT);
SELECT "lowercasecolname" FROM "lowercasetablename";

这篇关于在HSQL中关闭表和列名称的大写字母?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 08:31