问题描述
- 求大神帮下忙,小弟需要一个java连接sql server数据库实现查询功能的代码
-
如题 求大神给个查询功能的代码 做毕业设计需要 帮帮忙 下面附上添加功能的代码
public int Add(Client c)
{
int count=0;
try
{
con=this.getcon();
String sql=String.format("insert Client values('%s',%d,'%s','%s','%s','%s','%s',0,'%s')",
c.getName(),c.getAge(),c.getSex(),c.getTel(),c.getAddress(),c.getMail(),c.getCardID(),"111111");
ps=con.prepareStatement(sql);
count=ps.executeUpdate();
}catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}finally{
this.closeAll(con, ps, rs);
}
return count;
}
解决方案
ACCESS数据库中如何实现SQL Server的trucate功能
解决方案二:
public ResultSet executeQuerySQL(String preparedSql,String[] param){
Connection con= null;
PreparedStatement pst= null;
ResultSet rs = null;
try {
con= getCon(); // 得到数据库连接
pst= con.prepareStatement(preparedSql); // 得到PreparedStatement对象
if (param != null) {
for (int i = 0; i < param.length; i++) {
pst.setString(i + 1, (String) param[i]);
}
}
rs = pst.executeQuery(); // 执行SQL语句
} catch (SQLException e) {
e.printStackTrace();
}
return rs;
}
(PS:你大学4年都干了些什么......)
解决方案三:
看下这些文章
http://blog.csdn.net/ljheee/article/details/50988796
http://blog.csdn.net/ljheee/article/details/50984498
http://blog.csdn.net/ljheee/article/details/50752903
解决方案四:
看看1楼的链接吧,好好理解一下。
解决方案五:
记得关闭连接。拿数据在ResultSet中拿,拿值是: rs.getString("columnName");
解决方案六:
public ResultSet executeQuerySQL(String preparedSql,String[] param){
Connection con= null;
PreparedStatement pst= null;
ResultSet rs = null;
try {
con= getCon(); // 得到数据库连接
pst= con.prepareStatement(preparedSql); // 得到PreparedStatement对象
if (param != null) {
for (int i = 0; i < param.length; i++) {
pst.setString(i + 1, (String) param[i]);
}
}
rs = pst.executeQuery(); // 执行SQL语句
} catch (SQLException e) {
e.printStackTrace();
}
return rs;
}