Home
last modified time | relevance | path

Searched refs:OH_Rdb_DeleteStore (Results 1 – 14 of 14) sorted by relevance

/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_4.0.9.5/
H A Dchangelogs-distributeddatamgr.md179 ## cl.distributeddatamgr.6 **OH_Rdb_DeleteStore**接口入参**const** **char** *pat变更为**const** OH_Rdb_Con…
187 修改前OH_Rdb_DeleteStore接口:
190 int OH_Rdb_DeleteStore(const char *path);
193 修改后OH_Rdb_DeleteStore接口:
196 int OH_Rdb_DeleteStore(const OH_Rdb_Config *config);
206 OH_Rdb_DeleteStore(“”)
212 OH_Rdb_DeleteStore(config)
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_4.0.9.5/
H A Dchangelogs-distributeddatamgr.md179 ## cl.distributeddatamgr.6 Change of const char *path in OH_Rdb_DeleteStore() to const OH_Rdb_Confi…
187 OH_Rdb_DeleteStore before change:
190 int OH_Rdb_DeleteStore(const char *path);
193 OH_Rdb_DeleteStore after change:
196 int OH_Rdb_DeleteStore(const OH_Rdb_Config *config);
206 OH_Rdb_DeleteStore("")
212 OH_Rdb_DeleteStore(config)
/ohos5.0/docs/zh-cn/application-dev/database/
H A Dnative-relational-store-guidelines.md41 | OH_Rdb_DeleteStore(const OH_Rdb_Config *config) | 删除数据库。 |
432 14. 删除数据库。调用OH_Rdb_DeleteStore方法,删除数据库及数据库相关文件。示例代码如下:
438 OH_Rdb_DeleteStore(&config);
/ohos5.0/foundation/distributeddatamgr/relational_store/interfaces/ndk/include/
H A Drelational_store.h412 int OH_Rdb_DeleteStore(const OH_Rdb_Config *config);
/ohos5.0/foundation/distributeddatamgr/relational_store/test/ndk/unittest/
H A Drdb_asset_test.cpp70 errCode = OH_Rdb_DeleteStore(&config_); in TearDownTestCase()
H A Drdb_store_test.cpp97 errCode = OH_Rdb_DeleteStore(&config_); in TearDownTestCase()
942 errCode = OH_Rdb_DeleteStore(nullptr);
946 errCode = OH_Rdb_DeleteStore(&config);
951 errCode = OH_Rdb_DeleteStore(&config);
H A Drdb_cursor_test.cpp103 OH_Rdb_DeleteStore(&config_); in TearDownTestCase()
H A Drdb_predicates_test.cpp104 OH_Rdb_DeleteStore(&config_); in TearDownTestCase()
/ohos5.0/docs/en/application-dev/database/
H A Dnative-relational-store-guidelines.md41 | OH_Rdb_DeleteStore(const OH_Rdb_Config *config) | Deletes an RDB store.|
444 Call **OH_Rdb_DeleteStore** to delete the RDB store and related database file. <br>Example:
450 OH_Rdb_DeleteStore(&config);
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkdata/
H A Drelational__store_8h.md116 | [OH_Rdb_DeleteStore](_r_d_b.md#oh_rdb_deletestore) (const [OH_Rdb_Config](_o_h___rdb___config.md)…
H A D_r_d_b.md141 | [OH_Rdb_DeleteStore](#oh_rdb_deletestore) (const [OH_Rdb_Config](_o_h___rdb___config.md) \*config…
1696 ### OH_Rdb_DeleteStore()
1699 int OH_Rdb_DeleteStore (const OH_Rdb_Config *config)
/ohos5.0/docs/en/application-dev/reference/apis-arkdata/
H A Drelational__store_8h.md116 | [OH_Rdb_DeleteStore](_r_d_b.md#oh_rdb_deletestore) (const [OH_Rdb_Config](_o_h___rdb___config.md)…
H A D_r_d_b.md141 | [OH_Rdb_DeleteStore](#oh_rdb_deletestore) (const [OH_Rdb_Config](_o_h___rdb___config.md) \*config…
1696 ### OH_Rdb_DeleteStore()
1699 int OH_Rdb_DeleteStore (const OH_Rdb_Config *config)
/ohos5.0/foundation/distributeddatamgr/relational_store/interfaces/ndk/src/
H A Drelational_store.cpp414 int OH_Rdb_DeleteStore(const OH_Rdb_Config *config) in OH_Rdb_DeleteStore() function