# RdbExplorer **Repository Path**: openneusoft/rdb-explorer ## Basic Information - **Project Name**: RdbExplorer - **Description**: A quick and easy in-app database viewer and manager library for your RDB databases. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2021-04-26 - **Last Updated**: 2024-07-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Rdb Explorer **本项目是基于开源项目RoomExplorer进行ohos化的移植和开发的,可以通过项目标签以及github地址(https://gitee.com/openneusoft/rdb-explorer)追踪到原项目版本** #### 项目介绍 - 项目名称:鸿蒙数据库可视化查看器 - 所属系列:ohos的第三方组件适配移植 - 功能:适用于鸿蒙数据库的 快速简单的查看和管理 - 项目移植状态:完成 - 调用差异:无 - 项目作者和维护人:hihope - 联系方式:hihope@hoperun.com - 原项目Doc地址:https://github.com/wajahatkarim3/RoomExplorer - 原项目基线版本:v0.0.2 - 编程语言:Java - 外部库依赖:无 #### 效果展示 #### 安装教程 方法1. 1. 编译har包rdb-explorer.har。 2. 启动 DevEco Studio,将编译的har包,导入工程目录“entry->libs”下。 3. 在moudle级别下的build.gradle文件中添加依赖,在dependences标签中增加对libs目录下har包的引用。 ``` dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) …… } ``` 4. 在导入的har包上点击右键,选择“Add as Library”对包进行引用,选择需要引用的模块,并点击“OK”即引用成功。 方法2. 1. 在工程的build.gradle的allprojects中,添加HAR所在的Maven仓地址 ``` repositories { maven { url 'https://s01.oss.sonatype.org/content/repositories/releases/' } } ``` 2. 在应用模块的build.gradle的dependencies闭包中,添加如下代码: ``` dependencies { implementation 'io.github.dzsf:rdb-explorer:1.0.0' } ``` #### 使用说明 1. 要在Rdb Explorer中查看您的鸿蒙数据库,只需调用initView()方法。 ``` @Override public void onStart(Intent intent) { super.onStart(intent); super.setUIContent(ResourceTable.Layout_ability_main); initView(); } ``` #### 版本迭代 - v1.0.0 #### 版权和许可信息 - Apache Licence