【发布时间】:2013-09-04 13:23:13
【问题描述】:
“prepared-statement”是存储过程吗? 从这个链接看来不是。 Comparison with prepared statements 从这个链接它似乎是。 JDBC introduction
(ctrl+f存储过程查找第二个链接中存储过程相关的位)
在后一个链接中,他们在该官方 oracle 网页中显示的代码示例是一个准备好的语句,而不是我认为它对应于存储过程的可调用语句。
【问题讨论】:
-
A stored procedure is a group of SQL statements that can be called by name.您可以使用PreparedStatement进行设置。
标签: java stored-procedures jdbc prepared-statement callable-statement