Can not issue data manipulation statements with executeQuery()
出错地方:st.executeQuery("insert into student values(“1”,“2”,“3”)") ;
如果你的SQL 语句是 update,insert等更新语句,用statement的execute()
...
分类:
其他好文 时间:
2015-05-01 18:44:53
阅读次数:
179
不用去关的开关才是好开关-Using
第一次见到using是在三层的视频中,当时对这个感觉挺好奇的,然而在vb.net中使用的时候一开始错了无数次还是不会用,就纠结了,但是每次打开数据源再去关的话太麻烦了,所以就把using的用法挖出来好好看看。
Using { resourcelist | resourceexpression}
[statements]
...
分类:
其他好文 时间:
2015-04-30 12:41:05
阅读次数:
157
You can use this function to explain all SELECT, INSERT, UPDATE or DELETE statements. The statements may contain optional comments such as --OPTLEVEL(...
分类:
数据库 时间:
2015-04-28 17:33:25
阅读次数:
200
1.DDL(DataDefinition Language)数据库定义语言statements are used to define the database structure or schema.DDL是SQL语言的四大功能之一。用于定义数据库的三级结构,包括外模式、概念模式、内模式及其相互之间...
分类:
数据库 时间:
2015-04-22 11:27:41
阅读次数:
142
我们为什么用触发器呢?
下面摘自部分官方文档:Automatically generate virtual column values(自动生成虚拟列值)
Log events(日志事件)Gather
statistics on table access(收集统计数据表的访问)
Modify table data when DML statements are issued agains...
分类:
其他好文 时间:
2015-04-20 09:39:58
阅读次数:
200
query是查询用的,而update是插入和更新,删除修改用的。executeQuery()语句是用于产生单个结果集的语句,如select语句,在什么情况下用,当你的数据库已经保存了数据后,要进行查询了。executeUpdate(),用于执行insert、update或者delete语句,返回值一...
分类:
其他好文 时间:
2015-04-18 17:35:52
阅读次数:
112
--base64-output[=name]Determinewhentheoutputstatementsshouldbebase64-encodedBINLOGstatements:‘never‘disablesitandworksonlyforbinlogswithoutrow-basedevents;‘decode-rows‘decodesroweventsintocommentedSQLstatementsifthe--verboseoptionisalsogiven;‘auto‘printsbas..
分类:
数据库 时间:
2015-04-13 11:09:02
阅读次数:
282
本文转自:http://www.cnblogs.com/meronzhang/archive/2012/09/28/2707374.html作者:Billy Newport本文讲述了如何正确的使用prepared statements。为什么它可以让你的应用程序运行的更快,和同样的让数据库操作变的更...
分类:
其他好文 时间:
2015-04-08 19:48:42
阅读次数:
144
SQL injectionis acode injectiontechnique, used toattackdata-driven applications, in which malicious SQL statements are inserted into an entry field fo...
分类:
数据库 时间:
2015-04-05 15:48:34
阅读次数:
233
<html>
<body>
<p><b>Notes:</b></p>
<hr>
<ul>
<li>Selectthedatabaseyouwanttouse</li>
<li>WriteSQLstatementsinthetextbox</li>
</ul>
<p><b>Decryptalldatasource:</b>..
分类:
数据库 时间:
2015-04-04 01:21:27
阅读次数:
256