什麼是資料庫的互動?
第一得確定與資料庫連線起來
public dbhelper(context context, string name, sqlitedatabase.curso***ctory factory, int version)
@override
public void oncreate(sqlitedatabase db)
@override
public void onupgrade(sqlitedatabase db, int oldversion, int newversion)
@override
public void ondowngrade(sqlitedatabase db, int oldversion, int newversion) }
資料庫互動是指通過sql語句進行資料的增刪查改
首先是創表
建立新錶
create table tabname(col1 type1 [not null] [primary key],col2 type2 [not null],)
其次增加資料
新增 contentvalues contentvalues=new contentvalues();
contentvalues.put("uname",uname);
contentvalues.put("upass",upass);
contentvalues.putnull("uid");
sqlitedatabase.insert("login","uname",contentvalues);
刪除sqlitedatabase.delete("login","uid=?",new string);
查詢sqlitedatabase.query()
int pageno=2;
int pagesize=3;
cursor cursor=sqlitedatabase.rawquery("select * from login limit ?,?",new string);
while (cursor.movetonext())
//修改
contentvalues contentvalues=new contentvalues();
contentvalues.put("uname",uname);
contentvalues.put("upass",upass);
sqlitedatabase.update("login",contentvalues,"uid=?",new string);
Django資料庫互動
當我們開始乙個新的應用的時候 2.在與 settings.py 同級目錄下的init.py 中引入模組和進行配置 import pymysql pymysql.version info 1,4,0,final 0 pymysql.install as mysqldb class book model...
python和資料庫互動
對於關係型資料庫的訪問,python社群已經指定了乙個標準,稱為python database api sepcificationv2.0.mysql qracle等特定資料庫模組遵從這一規範,而且可新增更多特性,高階資料庫api定義了一組用於連線資料庫伺服器 執行sql語句並獲得結果的函式和物件,...
JSP資料庫互動物件
jsp物件時不需要任何宣告就可以直接使用的物件 常用內建物件 out request response session out物件就是用於向瀏覽器輸出資料 request物件獲取請求中的相關資料以及瀏覽器相關資訊,在頁面跳轉或者請求結束時失效 request物件常用方法 string getrequ...