資料庫連線

2021-06-23 01:16:06 字數 1341 閱讀 5093

public class sqlhelper catch (classnotfoundexception e)

}// end

// 獲得連線物件

public static connection getconnection() catch (sqlexception e)

return connection;

}/**

* 執行 新增 刪除 修改的sql語句

* * @param sql

* @return 受影響行數

*/public static int executenotquerty(string sql) catch (sqlexception e) finally

return num;

}/**

* 關閉資源的方法

* @param rs 結果集

* @param state 執行物件

* @param conn 連線物件

*/public static void close(resultset rs, statement state, connection conn) catch (sqlexception e)

}if (state != null) catch (sqlexception e)

}if (conn != null) catch (sqlexception e)

}rs = null;

state = null;

conn = null;

}// end

/*** 執行查詢語句的方法

* @param sql

* @return 結果集

*/public static resultset executequery(string sql) catch (sqlexception e) finally

return rs;

}// end

/*** 執行預編譯sql的方法

* @param sql

* @param pams

* @return

* @throws sqlexception 

*/public static int executepreparedstatement(string sql,string pams) throws sqlexception

// 執行sql語句

num = pstm.executeupdate();// 只能執行非查詢語句

} catch (sqlexception e) finally

return num;

}// end

}

資料庫連線

第一,設定允許遠端連線,允許sql server驗證 第二,建立登陸帳戶並授權 第三,註冊sql server資料庫 c windows microsoft.net framework v2.0.50727 下執行 aspnet regsql 指令 data server sqlexpress in...

資料庫連線

php host localhost host name db user root mysql username db password root mysql password db name table database name connect to server and select data...

資料庫連線

1.c 連線連線access 程式 using system.data using system.data.oledb string strconnection provider microsoft.jet.oledb.4.0 strconnection data source c begaspne...