Home

Awesome

awtk-database-repository

通过 repository 模式对关系数据库系统 (RDBMS) 的简单封装,并提供 view_model 实现,无需编写代码即可实现对数据的增删改查。

准备

  1. 获取 awtk 并编译
git clone https://github.com/zlgopen/awtk.git
cd awtk; scons; cd -
  1. 获取 awtk-mvvm 并编译
git clone https://github.com/zlgopen/awtk-mvvm.git
cd awtk-mvvm; scons; cd -
  1. 获取 awtk-sqlite3 并编译
git clone https://github.com/zlgopen/awtk-sqlite3.git
cd awtk-sqlite3; scons; cd -
  1. 获取 awtk-widget-table-view 并编译
git clone https://github.com/zlgopen/awtk-widget-table-view.git
cd awtk-widget-table-view; scons; cd -
  1. 获取 awtk-widget-table-view-mvvm 并编译
git clone https://github.com/zlgopen/awtk-widget-table-view-mvvm.git
cd awtk-widget-table-view-mvvm; scons; cd -
  1. 获取 awtk-widget-slidable-row 并编译
git clone https://github.com/zlgopen/awtk-widget-slidable-row.git
cd awtk-widget-slidable-row; scons; cd -
  1. 获取 awtk-csv-file 并编译
git clone https://github.com/zlgopen/awtk-csv-file.git
cd awtk-csv-file; scons; cd -

运行

  1. 生成示例代码的资源
python scripts/update_res.py all

也可以使用 Designer 打开项目,之后点击 “打包” 按钮进行生成 如果资源发生修改,则需要重新生成资源。

  1. 编译
scons
scons LINUX_FB=true

完整编译选项请参考 编译选项

  1. 运行
bin/student_list
bin/student_list_mvvm

参考