java 使用Mysql資料庫代碼

來源:互聯網
上載者:User

標籤:manager   arraylist   屬性   his   port   ret   turn   查詢   lis   


import java.sql.*;
import java.util.ArrayList;
import java.util.List;

import com.mysql.jdbc.ResultSetMetaData;
public class MysqlHelper {


//測試連接函數
public static void main(String []args)
{
derbyHelper de=new derbyHelper();
String sql="select * from users";

List<Object[]> list=de.queryList(sql, null);
for(int i=0;i<list.size();i++)
{ Object []obj=list.get(i);
System.out.println(obj[1].toString()+" "+obj[2].toString());
}

}

//mysql串連屬性設定
String driver="com.mysql.jdbc.Driver";
String url="jdbc:mysql://192.168.1.114:3306/test";
String user="root";
String passwd="1234";
//串連類和介面
Connection ct;
PreparedStatement ps;
ResultSet rs;

public MysqlHelper()
{
try {
Class.forName(driver);
ct=DriverManager.getConnection(url,user,passwd);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public int Update(String sql,String []paras)
{
int count=0;
try {
ps=ct.prepareStatement(sql);
//注入參數
this.setParameters(paras);
//獲得更新資料行數。
count=ps.executeUpdate() ;
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}finally{
this.close();
}
return count;
}


/**
* @param sql
* @param paras 沒有注入參數可為null或空串。
* @return 返回一個ResultSet結果集。
*/
public ResultSet query(String sql,String[] paras)
{
try {
ps=ct.prepareStatement(sql);
this.setParameters(paras);
rs=ps.executeQuery();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}finally{
//不能關。
}


return rs;
}
/**
* @param sql
* @param paras 沒有注入參數可為null或空串。
* @return 返回一個裝有對象數組的List。
*/
public List queryList(String sql,String []paras)
{
List<Object[]> list=new ArrayList<Object[]>();
try {
ps=ct.prepareStatement(sql);
this.setParameters(paras);
rs=ps.executeQuery();
ResultSetMetaData rsmd=(ResultSetMetaData) rs.getMetaData();
int count=rsmd.getColumnCount();
// 將查詢結果放入對象數組中。
while(rs.next())
{ int rows= rs.getRow();

Object obj[]=new Object[count];
for(int j=0;j<count;j++)
{ obj[j]=rs.getString(j+1);

}
list.add(obj);
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}finally{ this.close(); }

return list;}

public void close()
{

try {
if(rs!=null)rs.close();
if(ps!=null) ps.close();
if(ct!=null) ct.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

}

private void setParameters(String[] paras) throws SQLException {
if(paras!=null && !paras.equals(""))
{for(int i=0;i<paras.length;i++)
{
ps.setString(i+1, paras[i]);
}
}
}}

java 使用Mysql資料庫代碼

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.