Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
C
common
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
曲欣亮
common
Commits
155976d8
Commit
155976d8
authored
Jan 13, 2021
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
parent
9a238861
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
JdbcTemplate.java
src/main/java/com/egolm/common/jdbc/JdbcTemplate.java
+12
-4
No files found.
src/main/java/com/egolm/common/jdbc/JdbcTemplate.java
View file @
155976d8
...
...
@@ -543,15 +543,16 @@ public class JdbcTemplate extends org.springframework.jdbc.core.JdbcTemplate {
});
}
public
List
<
Object
>
exec
(
final
String
sql
,
final
Object
...
args
)
{
showSql
(
sql
,
args
);
public
List
<
Object
>
exec
(
final
String
sql
,
Object
...
args
)
{
final
Object
[]
argsArray
=
this
.
toArray
(
args
);
showSql
(
sql
,
argsArray
);
Map
<
Integer
,
OutParameter
>
out
=
new
HashMap
<
Integer
,
OutParameter
>();
return
super
.
execute
(
new
CallableStatementCreator
()
{
public
CallableStatement
createCallableStatement
(
final
Connection
con
)
throws
SQLException
{
final
CallableStatement
cs
=
con
.
prepareCall
(
sql
);
for
(
int
i
=
0
;
i
<
args
.
length
;
i
++)
{
for
(
int
i
=
0
;
i
<
args
Array
.
length
;
i
++)
{
Integer
index
=
i
+
1
;
Object
arg
=
args
[
i
];
Object
arg
=
args
Array
[
i
];
if
(
arg
!=
null
&&
arg
instanceof
OutParameter
)
{
OutParameter
outArg
=
(
OutParameter
)
arg
;
outArg
.
setValue
(
null
);
...
...
@@ -697,5 +698,12 @@ public class JdbcTemplate extends org.springframework.jdbc.core.JdbcTemplate {
}
}
private
Object
[]
toArray
(
Object
...
args
)
{
while
(
args
!=
null
&&
args
.
length
==
1
&&
args
[
0
]
!=
null
&&
args
[
0
]
instanceof
Object
[])
{
args
=
(
Object
[])
args
[
0
];
}
return
args
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment