Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
659bf5ca
Unverified
提交
659bf5ca
authored
1月 09, 2018
作者:
Noel Grandin
提交者:
GitHub
1月 09, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #730 from katzyn/JDBC_4_3
Implement enquoteIdentifier() and isSimpleIdentifier() from JDBC 4.3
上级
0c1f3a67
d82847be
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
71 行增加
和
0 行删除
+71
-0
Parser.java
h2/src/main/org/h2/command/Parser.java
+24
-0
JdbcStatement.java
h2/src/main/org/h2/jdbc/JdbcStatement.java
+30
-0
JdbcStatementBackwardsCompat.java
h2/src/main/org/h2/jdbc/JdbcStatementBackwardsCompat.java
+6
-0
TestStatement.java
h2/src/test/org/h2/test/jdbc/TestStatement.java
+11
-0
没有找到文件。
h2/src/main/org/h2/command/Parser.java
浏览文件 @
659bf5ca
...
@@ -6851,6 +6851,30 @@ public class Parser {
...
@@ -6851,6 +6851,30 @@ public class Parser {
return
s
;
return
s
;
}
}
/**
* @param s
* identifier to check
* @return is specified identifier may be used without quotes
*/
public
static
boolean
isSimpleIdentifier
(
String
s
)
{
if
(
s
==
null
||
s
.
length
()
==
0
)
{
return
false
;
}
char
c
=
s
.
charAt
(
0
);
// lowercase a-z is quoted as well
if
((!
Character
.
isLetter
(
c
)
&&
c
!=
'_'
)
||
Character
.
isLowerCase
(
c
))
{
return
false
;
}
for
(
int
i
=
1
,
length
=
s
.
length
();
i
<
length
;
i
++)
{
c
=
s
.
charAt
(
i
);
if
((!
Character
.
isLetterOrDigit
(
c
)
&&
c
!=
'_'
)
||
Character
.
isLowerCase
(
c
))
{
return
false
;
}
}
return
!
isKeyword
(
s
,
true
);
}
public
void
setLiteralsChecked
(
boolean
literalsChecked
)
{
public
void
setLiteralsChecked
(
boolean
literalsChecked
)
{
this
.
literalsChecked
=
literalsChecked
;
this
.
literalsChecked
=
literalsChecked
;
}
}
...
...
h2/src/main/org/h2/jdbc/JdbcStatement.java
浏览文件 @
659bf5ca
...
@@ -11,14 +11,17 @@ import java.sql.SQLException;
...
@@ -11,14 +11,17 @@ import java.sql.SQLException;
import
java.sql.SQLWarning
;
import
java.sql.SQLWarning
;
import
java.sql.Statement
;
import
java.sql.Statement
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
org.h2.api.ErrorCode
;
import
org.h2.api.ErrorCode
;
import
org.h2.command.CommandInterface
;
import
org.h2.command.CommandInterface
;
import
org.h2.command.Parser
;
import
org.h2.engine.SessionInterface
;
import
org.h2.engine.SessionInterface
;
import
org.h2.engine.SysProperties
;
import
org.h2.engine.SysProperties
;
import
org.h2.message.DbException
;
import
org.h2.message.DbException
;
import
org.h2.message.TraceObject
;
import
org.h2.message.TraceObject
;
import
org.h2.result.ResultInterface
;
import
org.h2.result.ResultInterface
;
import
org.h2.util.New
;
import
org.h2.util.New
;
import
org.h2.util.StringUtils
;
/**
/**
* Represents a statement.
* Represents a statement.
...
@@ -1295,6 +1298,33 @@ public class JdbcStatement extends TraceObject implements Statement, JdbcStateme
...
@@ -1295,6 +1298,33 @@ public class JdbcStatement extends TraceObject implements Statement, JdbcStateme
}
}
}
}
/**
* @param identifier
* identifier to quote if required
* @param alwaysQuote
* if {@code true} identifier will be quoted unconditionally
* @return specified identifier quoted if required or explicitly requested
*/
@Override
public
String
enquoteIdentifier
(
String
identifier
,
boolean
alwaysQuote
)
throws
SQLException
{
if
(
alwaysQuote
)
return
StringUtils
.
quoteIdentifier
(
identifier
);
return
Parser
.
quoteIdentifier
(
identifier
);
}
/**
* @param identifier
* identifier to check
* @return is specified identifier may be used without quotes
*/
@Override
public
boolean
isSimpleIdentifier
(
String
identifier
)
throws
SQLException
{
if
(
identifier
==
null
)
// To conform with JDBC specification
throw
new
NullPointerException
();
return
Parser
.
isSimpleIdentifier
(
identifier
);
}
/**
/**
* INTERNAL
* INTERNAL
*/
*/
...
...
h2/src/main/org/h2/jdbc/JdbcStatementBackwardsCompat.java
浏览文件 @
659bf5ca
...
@@ -32,4 +32,10 @@ public interface JdbcStatementBackwardsCompat {
...
@@ -32,4 +32,10 @@ public interface JdbcStatementBackwardsCompat {
long
executeLargeUpdate
(
String
sql
,
int
columnIndexes
[])
throws
SQLException
;
long
executeLargeUpdate
(
String
sql
,
int
columnIndexes
[])
throws
SQLException
;
long
executeLargeUpdate
(
String
sql
,
String
columnNames
[])
throws
SQLException
;
long
executeLargeUpdate
(
String
sql
,
String
columnNames
[])
throws
SQLException
;
// JDBC 4.3 (incomplete)
String
enquoteIdentifier
(
String
identifier
,
boolean
alwaysQuote
)
throws
SQLException
;
boolean
isSimpleIdentifier
(
String
identifier
)
throws
SQLException
;
}
}
h2/src/test/org/h2/test/jdbc/TestStatement.java
浏览文件 @
659bf5ca
...
@@ -330,6 +330,17 @@ public class TestStatement extends TestBase {
...
@@ -330,6 +330,17 @@ public class TestStatement extends TestBase {
assertTrue
(
stat
.
getWarnings
()
==
null
);
assertTrue
(
stat
.
getWarnings
()
==
null
);
assertTrue
(
conn
==
stat
.
getConnection
());
assertTrue
(
conn
==
stat
.
getConnection
());
assertEquals
(
"SOME_ID"
,
statBC
.
enquoteIdentifier
(
"SOME_ID"
,
false
));
assertEquals
(
"\"SOME ID\""
,
statBC
.
enquoteIdentifier
(
"SOME ID"
,
false
));
assertEquals
(
"\"SOME_ID\""
,
statBC
.
enquoteIdentifier
(
"SOME_ID"
,
true
));
assertEquals
(
"\"FROM\""
,
statBC
.
enquoteIdentifier
(
"FROM"
,
false
));
assertEquals
(
"\"Test\""
,
statBC
.
enquoteIdentifier
(
"Test"
,
false
));
assertTrue
(
statBC
.
isSimpleIdentifier
(
"SOME_ID"
));
assertFalse
(
statBC
.
isSimpleIdentifier
(
"SOME ID"
));
assertFalse
(
statBC
.
isSimpleIdentifier
(
"FROM"
));
assertFalse
(
statBC
.
isSimpleIdentifier
(
"Test"
));
stat
.
close
();
stat
.
close
();
}
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论