Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
c6adedd3
提交
c6adedd3
authored
10月 10, 2010
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Documentation.
上级
37dddac6
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
35 行增加
和
31 行删除
+35
-31
Expression.java
h2/src/main/org/h2/expression/Expression.java
+21
-16
JavaFunction.java
h2/src/main/org/h2/expression/JavaFunction.java
+1
-7
TableFunction.java
h2/src/main/org/h2/expression/TableFunction.java
+2
-6
TestCallableStatement.java
h2/src/test/org/h2/test/jdbc/TestCallableStatement.java
+11
-2
没有找到文件。
h2/src/main/org/h2/expression/Expression.java
浏览文件 @
c6adedd3
...
...
@@ -11,6 +11,7 @@ import java.sql.ResultSetMetaData;
import
java.sql.SQLException
;
import
org.h2.engine.Database
;
import
org.h2.engine.Session
;
import
org.h2.message.DbException
;
import
org.h2.table.Column
;
import
org.h2.table.ColumnResolver
;
import
org.h2.table.TableFilter
;
...
...
@@ -301,6 +302,7 @@ public abstract class Expression {
/**
* If this expression consists of column expressions it should return them.
*
* @param session the session
* @return array of expression columns if applicable, null otherwise
*/
public
Expression
[]
getExpressionColumns
(
Session
session
)
{
...
...
@@ -332,9 +334,9 @@ public abstract class Expression {
* @param session the session
* @param rs the result set
* @return an array of expression columns
* @throws SQLException
*/
public
static
Expression
[]
getExpressionColumns
(
Session
session
,
ResultSet
rs
)
throws
SQLException
{
public
static
Expression
[]
getExpressionColumns
(
Session
session
,
ResultSet
rs
)
{
try
{
ResultSetMetaData
meta
=
rs
.
getMetaData
();
int
columnCount
=
meta
.
getColumnCount
();
Expression
[]
expressions
=
new
Expression
[
columnCount
];
...
...
@@ -350,6 +352,9 @@ public abstract class Expression {
expressions
[
i
]
=
expr
;
}
return
expressions
;
}
catch
(
SQLException
e
)
{
throw
DbException
.
convert
(
e
);
}
}
}
h2/src/main/org/h2/expression/JavaFunction.java
浏览文件 @
c6adedd3
...
...
@@ -6,13 +6,11 @@
*/
package
org
.
h2
.
expression
;
import
java.sql.SQLException
;
import
org.h2.command.Parser
;
import
org.h2.constant.SysProperties
;
import
org.h2.engine.Constants
;
import
org.h2.engine.FunctionAlias
;
import
org.h2.engine.Session
;
import
org.h2.message.DbException
;
import
org.h2.table.ColumnResolver
;
import
org.h2.table.TableFilter
;
import
org.h2.util.StatementBuilder
;
...
...
@@ -161,11 +159,7 @@ public class JavaFunction extends Expression implements FunctionCall {
switch
(
getType
())
{
case
Value
.
RESULT_SET
:
ValueResultSet
rs
=
getValueForColumnList
(
session
,
getArgs
());
try
{
return
getExpressionColumns
(
session
,
rs
.
getResultSet
());
}
catch
(
SQLException
e
)
{
throw
DbException
.
convert
(
e
);
}
case
Value
.
ARRAY
:
return
getExpressionColumns
(
session
,
(
ValueArray
)
getValue
(
session
));
}
...
...
h2/src/main/org/h2/expression/TableFunction.java
浏览文件 @
c6adedd3
...
...
@@ -6,7 +6,6 @@
*/
package
org
.
h2
.
expression
;
import
java.sql.SQLException
;
import
java.util.ArrayList
;
import
org.h2.constant.ErrorCode
;
import
org.h2.engine.Database
;
...
...
@@ -150,10 +149,7 @@ public class TableFunction extends Function {
}
public
Expression
[]
getExpressionColumns
(
Session
session
)
{
try
{
return
getExpressionColumns
(
session
,
getTable
(
session
,
getArgs
(),
true
,
false
).
getResultSet
());
}
catch
(
SQLException
e
)
{
throw
DbException
.
convert
(
e
);
}
}
}
h2/src/test/org/h2/test/jdbc/TestCallableStatement.java
浏览文件 @
c6adedd3
...
...
@@ -100,12 +100,21 @@ public class TestCallableStatement extends TestBase {
}
}
public
static
ResultSet
testCall
(
Connection
connect
,
int
a
,
String
b
,
Timestamp
c
)
throws
SQLException
{
/**
* This method is called via reflection from the database.
*
* @param conn the connection
* @param a the value a
* @param b the value b
* @param c the value c
* @return a result set
*/
public
static
ResultSet
testCall
(
Connection
conn
,
int
a
,
String
b
,
Timestamp
c
)
throws
SQLException
{
SimpleResultSet
rs
=
new
SimpleResultSet
();
rs
.
addColumn
(
"A"
,
Types
.
INTEGER
,
0
,
0
);
rs
.
addColumn
(
"B"
,
Types
.
VARCHAR
,
0
,
0
);
rs
.
addColumn
(
"C"
,
Types
.
TIMESTAMP
,
0
,
0
);
if
(
"jdbc:columnlist:connection"
.
equals
(
conn
ect
.
getMetaData
().
getURL
()))
{
if
(
"jdbc:columnlist:connection"
.
equals
(
conn
.
getMetaData
().
getURL
()))
{
return
rs
;
}
rs
.
addRow
(
a
*
2
,
b
.
toUpperCase
(),
new
Timestamp
(
c
.
getTime
()
+
1
));
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论