From 94486c89973d5f027843876e8759b67f29e49a12 Mon Sep 17 00:00:00 2001 From: zuojiangjiang Date: Thu, 29 Feb 2024 16:33:23 +0800 Subject: [PATCH] database support muti user c interface Signed-off-by: zuojiangjiang --- .../relational_store/include/relational_store.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/distributeddatamgr/relational_store/include/relational_store.h b/distributeddatamgr/relational_store/include/relational_store.h index fcd70f2eb..ee989baaa 100644 --- a/distributeddatamgr/relational_store/include/relational_store.h +++ b/distributeddatamgr/relational_store/include/relational_store.h @@ -135,6 +135,12 @@ typedef struct { * @since 11 */ int area; + /** + * Indicates the ID of user, the database will be created under the specified user. + * + * @since 12 + */ + int userId; } OH_Rdb_Config; #pragma pack() -- Gitee