1樓:匿名使用者
public class tododb extends sqliteopenhelper
//和activity的oncreate類似,用來初始化資料
public void oncreate(sqlitedatabase db)
//如果資料庫版本有更新,則執行此方法
public void onupgrade(sqlitedatabase db, int oldversion, int newversion)
//返回表中所有項,以cusor物件返回
public cursor select()
//插入一行在表尾
public long insert(string text)
//刪除 指定id的行
public void delete(int id) ;
db.delete(table_name, where, wherevalue);
}//更新指定id的行內容
public void update(int id, string text) ;
contentvalues cv = new contentvalues();
cv.put(field_text, text);
db.update(table_name, cv, where, wherevalue);}}
android中在怎麼獲取資料庫資料
2樓:育知同創教育
android讀取資料庫可以使用sqlite一些api進行讀取,例項如下:
/*** 查詢一條資料
* @param uid
*/public user find(integer uid)); //建立一個遊標
if(cursor.movetofirst())cursor.close();
return null;}
oracle資料庫訪問另資料庫問題
可以使用dblink 在資料庫b上建立database link 然後配置使用者名稱,密碼和sid 其次注意要有訪問該表的許可權,然後再b中直接輸入 select from a dblink name 就可以了 用資料庫鏈路 create public database link toaconnec...
資料庫主屬性問題,資料庫主屬性問題
因為中國的發展太大了,我們都會中國驕傲,我愛我的中國。資料庫中的主屬性,碼,主碼的區別。越詳細越好。先說候選碼,候選碼就是可以區別一個元組 即表中的一行資料 的屬性或屬性的集合,比如學生表student id,name,age,deptno 其中的id是可以唯一標識一個元組的,所以id是可以作為候選...
php遍歷資料庫問題,php迴圈獲取資料庫資料,一直提示錯誤
get獲取的值與庫裡的值一樣的嗎?你的sql輸出來,單獨在phpmyadmin裡面sql查詢有值嗎?你測測看,應該是sql出問題了 select top 1 欄位名 from table where id 1 id 1 是條件。這個是唯一的,找id這個欄位等於1的資料。用個while迴圈語句就行了 ...