当前位置: 技术问答>java相关
如果知道statement.execute(String sqlstr)已经执行结束了那?
来源: 互联网 发布时间:2017-05-02
本文导语: 接着我今天中午发的问题, 我执行一个 myStatement.execute("select * into TEMP from table1") 如果得知此条命令执行结束了哪, 因为我发现,整个数据倒入的过程可能要持续几秒钟, 但是java程序仍然继续工作。 谢谢 ...
接着我今天中午发的问题,
我执行一个 myStatement.execute("select * into TEMP from table1")
如果得知此条命令执行结束了哪,
因为我发现,整个数据倒入的过程可能要持续几秒钟,
但是java程序仍然继续工作。
谢谢
我执行一个 myStatement.execute("select * into TEMP from table1")
如果得知此条命令执行结束了哪,
因为我发现,整个数据倒入的过程可能要持续几秒钟,
但是java程序仍然继续工作。
谢谢
|
int a = executeUpdate()
//a is the number of the rows updated.
//a is the number of the rows updated.
|
在执行的函数上加个 synchronized
|
刚学JAVA不知这个对不对。
好像有isexecute()函数/
好像有isexecute()函数/