jsp連線access資料庫方法(一):
關鍵:資料庫名為student.mdb,資料表名為students,字段分別為id,name,***,college
//載入資料庫驅動
class.forname("sun.jdbc.odbc.jdbcodbcdriver");
//將資料來源student.mdb放在專案根目錄下,然後將student.mdb改為你的資料庫檔名稱
string url="jdbc:odbc:driver=;dbq="+request.getrealpath("/")+"student.mdb"; 或
jsp連線access資料庫方法(二):
關鍵:資料庫名為student.mdb,資料表名為students
開啟「控制面板」->「管理工具」->「資料來源 (odbc)」,選擇「系統dsn」,單擊「新增」,選擇「driver do microsoft access (*mdb)」,填寫資料來源名為jspdata,資料庫選擇為student.mdb所在的路徑,最後完成確定
//載入資料庫驅動
class.forname("sun.jdbc.odbc.jdbcodbcdriver");
//將資料來源student.mdb放在專案根目錄下,然後將test.mdb改為你的資料庫檔名稱
string url="jdbc:odbc:jspdata
";
示例:測試jsp連線access資料庫
編號姓名
性別學校
<%
trycatch(classnotfoundexception e)
try;dbq="+request.getrealpath("/")+"student.mdb";
connection conn=drivermanager.getconnection(url);
statement stmt=conn.createstatement();
resultset rs=stmt.executequery("select * from students");
while(rs.next())
rs.close();
stmt.close();
conn.close();
}catch(exception e)
%>
連線ACCESS資料庫
1 匯入命名空間空間 system.data.oledb 2 建立指向資料庫的連線 建立連線要用到system.data.oledb命名空間中的類 oledbconnection。通過以下語句可以完成對本地資料庫的連線工作 string strconnect provider microsoft.j...
access資料庫連線
string strconnection provider microsoft.jet.oledb.4.0 strconnection data source e accesstest data.mdb 裡用的是?路徑 oledbconnection objconnection new oledbc...
Access資料庫連線
access資料庫的連線,2000和2007版本有差別。access2000的連線字串為 1 2 3 4 str.format text provider microsoft.jet.oledb.4.0 persist security info false data source s szdata...