写点什么

OpenHarmony 关系型数据库查询结果呈现

作者:白晓明
  • 2023-03-28
    宁夏
  • 本文字数:2036 字

    阅读完需:约 7 分钟

OpenHarmony关系型数据库查询结果呈现

1 ResultSet(结果集)

ResultSet(结果集)是 OpenHarmony 关系型数据库提供查询数据表返回结果的方法,提供了多种灵活的数据访问方式,以便于开发者获取各项数据,ResultSet属性如表 1-1 所示,ResultSet方法如表 1-2 所示。

表 1-1 ResultSet属性


表 1-2 ResultSet方法



2 流程

3 步骤

3.1 获取ResultSet结果集

通过RdbStore实例的query()querySql()方法获得ResultSet结果集。

let predicates = new relationalStore.RdbPredicates(this.tableName);let result = await this.rdbStore.query(predicates, columns);
复制代码

3.2 自定义返回结果类

自定义TableResultSet类用于前台展示。

export class TableResultSet {    private total: number;                 // 总条数    private data: any;                     // 数据表数据
    setTotal(total: number) {        this.total = total;    }
    setData(data: any) {        this.data = data;    }}
复制代码

3.3 结果集转返回结果

ResultSet并不能直接用来展示,通过ResultSet提供的各类方法获取需要的信息。

  private resultToObject(result: relationalStore.ResultSet) {    let trs = new TableResultSet();    trs.setData(result.rowCount);    let data: Array<any> = [];    let count = result.rowCount;    if (count === 0 || typeof count === 'string') {      trs.setData([]);    } else {      // 从数据第一行开始读取      result.goToFirstRow();      for (let j = 0; j < count; j++) {        let temp: any = {};        for (let i = 0; i < this.fields.length; i++) {          let field = this.fields[i];          if (field.type === 'INTEGER' || field.type === 'integer') {            temp[field.name] = result.getLong(result.getColumnIndex(field.name));          } else if (field.type === 'REAL' || field.type === 'real') {            temp[field.name] = result.getDouble(result.getColumnIndex(field.name));          } else if (field.type === 'TEXT' || field.type === 'text') {            temp[field.name] = result.getString(result.getColumnIndex(field.name));          } else if (field.type === 'BLOB' || field.type === 'blob') {            temp[field.name] = result.getBlob(result.getColumnIndex(field.name));          }        }        data.push(temp);        result.goToNextRow();      }      trs.setData(data);    }    return trs;  }
复制代码

4 呈现结果

  • 使用断点调试方式

  • 使用日志调试方式

Log.info(TAG, `Query of ${this.tableName} table data succeeded. data: ` + JSON.stringify(result));
复制代码


  • 页面显示

// 显示表名称Text(TableConstants.T_ACCOUNT_NAME)  .fontSize(18)  .fontWeight(700)  .width('90%').height(54)Column({space: 5}) {  if (this.result !== null) {    // 显示表字段    GridRow({      columns: TableConstants.T_ACCOUNT_FIELDS.length,      direction: GridRowDirection.Row    }) {      ForEach(this.result.fields, (field) => {        GridCol() {          Text(field)            .width("100%").height(54)            .fontSize(16)            .textAlign(TextAlign.Center)        }        .colStyle()      })    }    .width('90%').height(54)    .backgroundColor(0xE5E5E5)    // 显示表数据    ForEach(this.result.data, (item) => {      GridRow({        columns: TableConstants.T_ACCOUNT_FIELDS.length,        direction: GridRowDirection.Row      }) {        ForEach(TableConstants.T_ACCOUNT_FIELDS, (field) => {          GridCol() {            this.Label(item[field.name].toString())          }          .colStyle()        })      }      .width('90%').height(54)      .backgroundColor(0xF5F5F5)    }, temp => temp.toString())  }}.width('100%')
复制代码



发布于: 刚刚阅读数: 3
用户头像

白晓明

关注

还未添加个人签名 2021-03-10 加入

还未添加个人简介

评论

发布
暂无评论
OpenHarmony关系型数据库查询结果呈现_关系型数据库_白晓明_InfoQ写作社区