Demo1Connection connection=null; Statement stmt=null; int result=-1; try { Class.forName("com.mysql.jdbc.Drive...
分类:
数据库 时间:
2014-11-13 23:45:46
阅读次数:
285
在经过个人作业和结对作业的磨练和现在正在进行的团队作业的考验中,我对自己软件开发的一点得失有了些许感悟,同时读了老师推荐的文章后,自己也是有了一些感受。首先在“No Silver Bullet”一文中,我深刻体验到了:非线性的complexity,项目单模块的复杂度以及整合之后出现的大量耦合问题;c...
分类:
其他好文 时间:
2014-11-13 14:19:07
阅读次数:
198
package foo;import java.sql.*;public class JdbcDemo { private static Connection conn; private static Statement ps; private static ResultSet rs; ...
分类:
数据库 时间:
2014-11-13 10:46:22
阅读次数:
206
SHUTDOWN有几个参数可以使用:
SHUTDOWN NORMAL:NORMAL也是默认的子句,执行的条件是
No new connections are allowed after the statement is issued.
Before the database is shut down, the database waits for all currently connec...
分类:
其他好文 时间:
2014-11-13 09:24:59
阅读次数:
234
jdbc操作数据库时,最基本的三种接口是Statement PrepareStatment CallableStatement(1)StatementcreateStatement()createStatement(intresultSetType, intresultSetConcurrency)...
分类:
数据库 时间:
2014-11-12 22:35:33
阅读次数:
223
Validate if a given string is numeric.
Some examples:
"0" => true
" 0.1 " => true
"abc" => false
"1 a" => false
"2e10" => true
Note: It is intended for the problem statement to be ambiguo...
分类:
其他好文 时间:
2014-11-12 19:45:35
阅读次数:
201
ASP(Active Server Page)是Microsoft公司推出的基于PWS(Personal Web Server)&IIS(Internet Information Server)平台的、基于ISAPI(InternetServiceAPI)原理的动态网页开发技术,目前日趋成熟完善.....
分类:
Web程序 时间:
2014-11-12 10:29:12
阅读次数:
170
Sas proc sql与寻常sas语句的的不同之处1:The PROC SQL step does not require a RUN statement. PROC SQL executes each query automatically2:Unlike many other SAS pr.....
分类:
数据库 时间:
2014-11-11 16:12:43
阅读次数:
398
学电脑必懂的53个英文单词和缩写PC:个人计算机Personal Computer ·CPU:中央处理器Central Processing Unit ·CPU Fan:中央处理器的“散热器”(Fan) ·MB:主机板MotherBoard ·RAM:内存Random Access Memo...
分类:
其他好文 时间:
2014-11-10 21:45:36
阅读次数:
181
Problem Statement(link):Given a 2D board containing'X'and'O', capture all regions surrounded by'X'.A region is captured by flipping all'O's into'X's i...
分类:
其他好文 时间:
2014-11-07 20:38:16
阅读次数:
300