Tizen 可穿戴本机应用程序:我们如何转储 SQLite 数据库?

Tizen Wearable Native Application: How do we dump a SQLite database?

我正在实施 Tizen 可穿戴混合应用程序(Web UI + 本机服务)。本机服务使用 SQLite Database 进行记录维护。 我需要以 csv 格式导出数据库的 SQLite 转储文件,以便与 Web 共享 UI。不幸的是,我无法通过网络搜索找到任何内容。请有人指导我 如何在 Tizen 可穿戴本机应用程序中从 SQLite 创建转储文件?

我认为您需要在 UI Web 应用程序中实现 datacontrol provider functionality in your native service application and datacontrol consumer 功能。

提供者可以实现 SQL 数据供应和更新,然后消费者可以使用通过 Web API.

提供的数据

方法一.将db文件转换为csv文件

1) Copy db files to res
https://developer.tizen.org/ko/forums/native-application-development/how-copy-sqlite-data.db-file-application-runtime?langredirect=1#comment-25969

2) Converting db files to csv file
https://www.tutlane.com/tutorial/sqlite/sqlite-export-data-from-table-to-csv-file

方法二、编码读取数据,直接写入csv文件 Exporting the sqlite3 table into file using "C" execute API