介紹
本Codelab以記賬為例,使用關系型數(shù)據(jù)庫的相關接口實現(xiàn)了對賬單的增、刪、改、查操作。實現(xiàn)效果如圖所示:
相關概念
- [關系型數(shù)據(jù)庫]:基于關系模型來管理數(shù)據(jù)的數(shù)據(jù)庫,提供了增、刪、改、查等接口,也可運行輸入的SQL語句滿足復雜場景需要。
環(huán)境搭建
軟件要求
- [DevEco Studio]版本:DevEco Studio 3.1 Release。
- OpenHarmony SDK版本:API version 9。
硬件要求
- 開發(fā)板類型:[潤和RK3568開發(fā)板]。
- OpenHarmony系統(tǒng):3.2 Release。
環(huán)境搭建
完成本篇Codelab我們首先要完成開發(fā)環(huán)境的搭建,本示例以RK3568開發(fā)板為例,參照以下步驟進行:
- [獲取OpenHarmony系統(tǒng)版本]:標準系統(tǒng)解決方案(二進制)。以3.2 Release版本為例:
- 搭建燒錄環(huán)境。
- 搭建開發(fā)環(huán)境。
- 開始前請參考[工具準備],完成DevEco Studio的安裝和開發(fā)環(huán)境配置。
- 開發(fā)環(huán)境配置完成后,請參考[使用工程向?qū)創(chuàng)建工程(模板選擇“Empty Ability”),選擇JS或者eTS語言開發(fā)。
- 工程創(chuàng)建完成后,選擇使用[真機進行調(diào)測]。
代碼結(jié)構(gòu)解讀
本篇只對核心代碼進行講解,完整代碼可以直接從gitee獲取。
├──entry/src/main/ets // 代碼區(qū)
│ ├──common
│ │ ├──constants
│ │ │ └──CommonConstants.ets // 公共常量
│ │ ├──database
│ │ │ ├──tables
│ │ │ │ └──AccountTable.ets // 賬目數(shù)據(jù)表
│ │ │ └──Rdb.ets // RDB數(shù)據(jù)庫
│ │ └──utils // 日志類
│ │ ├──ConsoleLogger.ets
│ │ ├──HiLogger.ets
│ │ ├──ILogger.ets
│ │ └──Logger.ets
│ ├──entryability
│ │ └──EntryAbility.ts // 程序入口類
│ ├──pages
│ │ └──MainPage.ets // 應用首頁
│ ├──view
│ │ └──DialogComponent.ets // 自定義彈窗
│ └──viewmodel
│ ├──AccountData.ets // 賬目類接口
│ ├──AccountItem.ets // 賬目資源類接口
│ ├──AccountList.ets // 賬目類型model
│ └──ConstantsInterface.ets // 常量接口
└──entry/src/main/resources // 資源文件夾
創(chuàng)建數(shù)據(jù)庫
要使用關系型數(shù)據(jù)庫存儲用戶數(shù)據(jù),首先要進行數(shù)據(jù)庫的創(chuàng)建,并提供基本的增、刪、改、查接口。
導入關系型數(shù)據(jù)庫模塊:
import relationalStore from '@ohos.data.relationalStore';
關系型數(shù)據(jù)庫提供以下兩個基本功能:
首先要獲取一個RdbStore實例來操作關系型數(shù)據(jù)庫,代碼如下:
// Rdb.ets
getRdbStore(callback: Function = () = > {
}) {
// 如果已經(jīng)獲取到RdbStore則不做操作
if (!callback || typeof callback == 'undefined' || callback == undefined) {
Logger.verbose(`${CommonConstants.RDB_TAG}`, 'getRdbStore() has no callback!');
return;
}
// 應用上下文,本Codelab使用API9 Stage模型的Context
let context: Context = getContext(this) as Context;
relationalStore.getRdbStore(context, CommonConstants.STORE_CONFIG, (err, rdb) = > {
if (err) {
Logger.error(`${RDB_TAG}`, 'gerRdbStore() failed, err: ' + err);
return;
}
this.rdbStore = rdb;
// 獲取到RdbStore后,需使用executeSql接口初始化數(shù)據(jù)庫表結(jié)構(gòu)和相關數(shù)據(jù)
this.rdbStore.executeSql(this.sqlCreateTable);
Logger.verbose(`${RDB_TAG}`, 'getRdbStore() finished.');
callback();
});
}
關系型數(shù)據(jù)庫接口提供的增、刪、改、查操作均有callback和Promise兩種異步回調(diào)方式,本Codelab使用了callback異步回調(diào),其中插入數(shù)據(jù)使用了insert()接口,實現(xiàn)代碼如下:
// Rdb.ets
insertData(data: relationalStore.ValuesBucket, callback: Function = () = > {
}) {
if (!callback || typeof callback == 'undefined' || callback == undefined) {
Logger.verbose(`${CommonConstants.RDB_TAG}`, 'insertData() has no callback!');
return;
}
let resFlag: boolean = false;
const valueBucket: relationalStore.ValuesBucket = data;
if (this.rdbStore) {
this.rdbStore.insert(this.tableName, valueBucket, (err, ret) = > {
if (err) {
Logger.error(`${CommonConstants.RDB_TAG}`, 'insertData() failed, err: ' + err);
callback(resFlag);
return;
}
Logger.verbose(`${CommonConstants.RDB_TAG}`, 'insertData() finished: ' + ret);
callback(ret);
});
}
}
刪除數(shù)據(jù)使用了delete()接口,實現(xiàn)代碼如下:
// Rdb.ets
deleteData(predicates: relationalStore.RdbPredicates, callback: Function = () = > {
}) {
if (!callback || typeof callback == 'undefined' || callback == undefined) {
Logger.verbose(`${CommonConstants.RDB_TAG}`, 'deleteData() has no callback!');
return;
}
let resFlag: boolean = false;
if (this.rdbStore) {
this.rdbStore.delete(predicates, (err, ret) = > {
if (err) {
Logger.error(`${CommonConstants.RDB_TAG}`, 'deleteData() failed, err: ' + err);
callback(resFlag);
return;
}
Logger.verbose(`${CommonConstants.RDB_TAG}`, 'deleteData() finished: ' + ret);
callback(!resFlag);
});
}
}
更新數(shù)據(jù)使用了update()接口,實現(xiàn)代碼如下:
// Rdb.ets
updateData(predicates: relationalStore.RdbPredicates, data: relationalStore.ValuesBucket, callback: Function = () = > {
}) {
if (!callback || typeof callback == 'undefined' || callback == undefined) {
Logger.verbose(`${CommonConstants.RDB_TAG}`, 'updateDate() has no callback!');
return;
}
let resFlag: boolean = false;
const valueBucket: relationalStore.ValuesBucket = data;
if (this.rdbStore) {
this.rdbStore.update(valueBucket, predicates, (err, ret) = > {
if (err) {
Logger.error(`${CommonConstants.RDB_TAG}`, 'updateData() failed, err: ' + err);
callback(resFlag);
return;
}
Logger.verbose(`${CommonConstants.RDB_TAG}`, 'updateData() finished: ' + ret);
callback(!resFlag);
});
}
}
查找數(shù)據(jù)使用了query()接口,實現(xiàn)代碼如下:
// Rdb.ets
query(predicates: relationalStore.RdbPredicates, callback: Function = () = > {
}) {
if (!callback || typeof callback == 'undefined' || callback == undefined) {
Logger.verbose(`${CommonConstants.RDB_TAG}`, 'query() has no callback!');
return;
}
if (this.rdbStore) {
this.rdbStore.query(predicates, this.columns, (err, resultSet) = > {
if (err) {
Logger.error(`${CommonConstants.RDB_TAG}`, 'query() failed, err: ' + err);
return;
}
Logger.verbose(`${CommonConstants.RDB_TAG}`, 'query() finished.');
callback(resultSet);
resultSet.close();
});
}
}
本Codelab需要記錄賬目的類型(收入/支出)、具體類別和金額,因此需要創(chuàng)建一張存儲賬目信息的表,表頭如下:
創(chuàng)建該表的SQL語句為:
CREATE TABLE IF NOT EXISTS accountTable(
id INTEGER PRIMARY KEY AUTOINCREMENT,
accountType INTEGER,
typeText TEXT,
amount INTEGER
)
該表需要封裝增、刪、改、查接口,代碼如下:
// AccountTable.ets
// 插入數(shù)據(jù)
insertData(account: AccountData, callback: Function) {
// 根據(jù)輸入數(shù)據(jù)創(chuàng)建待插入的數(shù)據(jù)行
const valueBucket: relationalStore.ValuesBucket = generateBucket(account);
this.accountTable.insertData(valueBucket, callback);
}
// 刪除數(shù)據(jù)
deleteData(account: AccountData, callback: Function) {
let predicates = new relationalStore.RdbPredicates(CommonConstants.ACCOUNT_TABLE.tableName);
// 根據(jù)id匹配待刪除的數(shù)據(jù)行
predicates.equalTo('id', account.id);
this.accountTable.deleteData(predicates, callback);
}
// 修改數(shù)據(jù)
updateData(account: AccountData, callback: Function) {
const valueBucket: relationalStore.ValuesBucket = generateBucket(account);
let predicates = new relationalStore.RdbPredicates(CommonConstants.ACCOUNT_TABLE.tableName);
// 根據(jù)id匹配待刪除的數(shù)據(jù)行
predicates.equalTo('id', account.id);
this.accountTable.updateData(predicates, valueBucket, callback);
}
// 查找數(shù)據(jù)
query(amount: number, callback: Function, isAll: boolean = true) {
let predicates = new relationalStore.RdbPredicates(CommonConstants.ACCOUNT_TABLE.tableName);
if (!isAll) {
predicates.equalTo('amount', amount);
}
this.accountTable.query(predicates, (resultSet: relationalStore.ResultSet) = > {
let count: number = resultSet.rowCount;
if (count === 0 || typeof count === 'string') {
console.log(`${CommonConstants.TABLE_TAG}` + 'Query no results!');
callback([]);
} else {
resultSet.goToFirstRow();
const result: AccountData[] = [];
for (let i = 0; i < count; i++) {
let tmp: AccountData = { id: 0, accountType: 0, typeText: '', amount: 0 };
tmp.id = resultSet.getDouble(resultSet.getColumnIndex('id'));
tmp.accountType = resultSet.getDouble(resultSet.getColumnIndex('accountType'));
tmp.typeText = resultSet.getString(resultSet.getColumnIndex('typeText'));
tmp.amount = resultSet.getDouble(resultSet.getColumnIndex('amount'));
result[i] = tmp;
resultSet.goToNextRow();
}
callback(result);
}
});
}
功能實現(xiàn)
首先創(chuàng)建應用主頁面,主要包括使用Search組件創(chuàng)建的搜索欄和使用List組件創(chuàng)建的賬目清單,如下圖所示:
在打開應用時,需要查詢數(shù)據(jù)庫中存儲的賬目并顯示在主頁面,因此生命周期函數(shù)aboutToAppear()應寫為:
// Mainpage.ets
aboutToAppear() {
this.AccountTable.getRdbStore(() = > { // 獲取數(shù)據(jù)庫
this.AccountTable.query(0, (result: AccountData[]) = > { // 查詢數(shù)據(jù)庫中的全部賬目
this.accounts = result;
}, true);
});
}
點擊右上角的“編輯”圖標,主頁面變?yōu)槿缦滦Ч?/p>
可以選中需要刪除的賬目,點擊下方“刪除”圖標后刪除對應賬目,對應代碼如下:
// Mainpage.ets
deleteListItem() {
for (let i = 0; i < this.deleteList.length; i++) { // 刪除每一項選中的賬目并更新頁面上的賬目清單
let index = this.accounts.indexOf(this.deleteList[i]);
this.accounts.splice(index, 1);
this.AccountTable.deleteData(this.deleteList[i], () = > {});
}
this.deleteList = [];
this.isEdit = false;
}
搜索欄在鍵入文本并回車時,實現(xiàn)搜索功能:
// Mainpage.ets
.onSubmit((searchValue: string) = > {
if (searchValue === '') { // 如果搜索欄為空,查找全部賬目
this.AccountTable.query(0, (result: AccountData[]) = > {
this.accounts = result;
}, true);
} else {
this.AccountTable.query(Number(searchValue), (result: AccountData[]) = > { // 查找金額為val的賬目
this.accounts = result;
}, false);
}
})
右下角的“添加”按鈕可以打開一個自定義彈窗,并在彈窗里新建賬目信息:
// Mainpage.ets
.onClick(() = > {
this.isInsert = true; // 插入模式
this.newAccount = { id: 0, accountType: 0, typeText: '', amount: 0 };
this.dialogController.open();
})
點擊賬目清單中的某個賬目,也可以打開自定義彈窗,并修改賬目信息:
// Mainpage.ets
selectListItem(item: AccountData) {
this.isInsert = false; // 編輯模式
this.index = this.accounts.indexOf(item);
this.newAccount = {
id: item.id,
accountType: item.accountType,
typeText: item.typeText,
amount: item.amount
};
}
自定義彈窗由使用Tabs組件創(chuàng)建的賬目類別、使用TextInput組件創(chuàng)建的輸入欄和確定按鈕組成,如下圖所示:
點擊“確定”按鈕會調(diào)用accept()函數(shù),根據(jù)isInsert的值來進行賬目的添加或修改,代碼如下:
// Mainpage.ets
accept(isInsert: boolean, newAccount: AccountData): void {
if (isInsert) { // 插入模式,往數(shù)據(jù)庫插入一個新賬目
Logger.verbose(`${CommonConstants.INDEX_TAG}`, 'The account inserted is: ' + JSON.stringify(newAccount));
this.AccountTable.insertData(newAccount, (id: number) = > {
newAccount.id = id;
this.accounts.push(newAccount);
});
} else { // 編輯模式,更新當前選中的賬目并寫入數(shù)據(jù)庫,刷新頁面的賬目清單
this.AccountTable.updateData(newAccount, () = > {});
let list = this.accounts;
this.accounts = [];
list[this.index] = newAccount;
this.accounts = list;
this.index = -1;
}
}
審核編輯 黃宇
-
數(shù)據(jù)庫
+關注
關注
7文章
3794瀏覽量
64360 -
HarmonyOS
+關注
關注
79文章
1973瀏覽量
30143 -
OpenHarmony
+關注
關注
25文章
3713瀏覽量
16254
發(fā)布評論請先 登錄
相關推薦
評論