载入JDBC驱动程序
Class.forName(com.mysql.jdbc.Driver);
通过 驱动管理器建立连接
Connection conn=DriverManager.getConnection();
通过连接对象创建语句对象
Statement st=conn.createStatement();
Class.forName(com.mysql.jdbc.Driver);
通过 驱动管理器建立连接
Connection conn=DriverManager.getConnection();
通过连接对象创建语句对象
Statement st=conn.createStatement();
2016-06-21
最赞回答 / qq_与赠_03193390
因为你的create_user是string类型所以不赋值也可以默认为null,你的其他属性没赋值就报错是因为你没有给int类型的参数赋值,因为int类型没有默认值你必须得给他赋值,如果没有就会显示空指针异常,希望对你有所帮助。
2016-06-21
最新回答 / 信息变革时代
Your variable 'i' goes from 0 to 189, and is fed to the method that
reads the cells from the spreadsheet. Does the spreadsheet have that
many rows? Be aware that the fact that rows appear in the spreadsheet
program does not necessarily mean that the ...
2016-06-13
喷子们,技术上的事,当你没有真正理解之前,不要轻易说别人写的不对,要慎重说别人的代码有问题,因为如果你把话说出来了,最后发现是你理解没到位,那样会让自己非常难堪,特别是在工作中。老师代码里的toString()方法,是用MyEclipse工具自动生成的,包括get和set方法,你自己也可以敲啊,难道覆写一个toString()方法你都不懂?这是基础的不能再基础的知识,这你也喷,不是让来看这个视频的人笑话你吗?
2016-06-05
select * from tb where 1=1 and t_name = '小明' or t_name = '小红' or t_name = '小张' or t_age = 19
id=:1 名字:小明 年龄: 20
id=:3 名字:小红 年龄: 18
id=:4 名字:小张 年龄: 21
id=:5 名字:小厦 年龄: 19
自己写一个少点colomn的表.按照老师的方法的确想怎么查就怎么查
id=:1 名字:小明 年龄: 20
id=:3 名字:小红 年龄: 18
id=:4 名字:小张 年龄: 21
id=:5 名字:小厦 年龄: 19
自己写一个少点colomn的表.按照老师的方法的确想怎么查就怎么查
2016-06-02
while(rs.next()){}
}catch(ClassNotFoundException e){
e.printStackTrace();
}catch(SQLException e){
e.printStackTrace();
}finally{//关闭数据库
if(rs!=null)
{
rs.close();
rs=null;
}
if(stmt!=null)
{
stmt.close();
stmt=null;
}
if(conn!=null)
{
conn.close();
conn=null;}
}
}catch(ClassNotFoundException e){
e.printStackTrace();
}catch(SQLException e){
e.printStackTrace();
}finally{//关闭数据库
if(rs!=null)
{
rs.close();
rs=null;
}
if(stmt!=null)
{
stmt.close();
stmt=null;
}
if(conn!=null)
{
conn.close();
conn=null;}
}
2016-06-01
其实你们说的问题,人家老师只是讲连接Mysql 和这个demo的代码而已.像一些有关数据库方面的你就要转到mysql专门课程去看一下啦,我学到这里也是刚开始看得头大,晕.后来没办法了,就去看了mysql这的入门课程.看完后再来这里看的话一下子就明白了.还有下面有的朋友说的13分30多秒的时候出的代码应该是toString()方法的代码.这也就是软件跟据你定义的属性可以自动生成对象的toString. 你如果从一开始第一季学的看到这里你就不会不明白啦~!其实我觉得老师讲得挺好的...你没见讲差的那些..简直真.....好好学吧骚年这网站我觉得不错比很多都好啊
2016-06-01