j2EE連線資料庫的增刪改查操作

2021-07-10 12:43:12 字數 1621 閱讀 1067

上個學期做了乙個簡易版的日程管理,主要用android+j2ee+mysql實現,發現時間一久,很多東西都記不住,所以在這裡記錄一下

首先是一些連線資料庫的操作

第一:在lib下放入驅動

接下來看一下一些增刪改查的操作:雖然都差不多,但是還是都貼出**吧

查詢:

string sql ="select * from users where name=? and password=?";

preparedstatement pstmt = null;

connection con;

//驅動程式名

string driver = "com.mysql.jdbc.driver";

//url指向要訪問的資料庫名mydata

string url = "jdbc:mysql://localhost:3306/person";

//mysql配置時的使用者名稱

// string user = "root";

//mysql配置時的密碼

string password = "123456";

try

} catch (exception e)

return 0;

}

增加:

public static int add(string userid,string contentid,string detail,string date,string time) catch(classnotfoundexception e)  catch(sqlexception e) catch (exception e) finally

return 1;

}

刪除:

public static int delete(string userid,string contentid) catch(classnotfoundexception e)  catch(sqlexception e) catch (exception e) finally

return 0;

}

而其他的一些與客戶端的資料的傳輸則是通過http完成,主要在servlet檔案裡面的dopost方法進行操作,通過request獲得客戶端傳來的資訊,再通過response返回。

不過要注意編碼問題

response.setcharacterencoding("gbk");
response.setcontenttype("text/html");
通過printwriter返回資料

printwriter out = response.getwriter();

out.println("server get");

通過request獲取資料

string username = request.getparameter("username");


php連線資料庫增刪改查

header content type text html charset utf 8 1.建立和資料庫的連線 第乙個引數 連線資料的主機 第二個引數 連線資料的賬號 第三個引數 密碼 第四個引數 資料庫 預設連線的是3306 conn newmysqli localhost root ishop ...

ListView 連線資料庫的增刪改查

建立乙個查詢函式 cmd.dispose coon.close private void button1 click object sender,eventargs e 查詢 cmd.dispose 命令清空 coon.close 資料庫關閉 private void button2 click o...

nodejs連線資料庫的增刪改查

連線資料庫後需要用 操作的是,傳入mysql語句,和引數,然後就是 了 新增 新增 var response 鏈結資料庫 var mysql require mysql var connection mysql.createconnection connection.connect 連線 插入資料 ...