From 7c4ccfd9f5406b8334c02fce188c9377556c1e37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=BE=E9=94=A6=E5=B1=B1?= <791770396@qq.com> Date: Sat, 7 Sep 2024 01:20:51 +0000 Subject: [PATCH 1/3] =?UTF-8?q?=E9=97=A8=E7=A6=81=E6=B5=8B=E8=AF=95?= =?UTF-8?q?=E8=AF=B7=E5=8B=BF=E5=90=88=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 曾锦山 <791770396@qq.com> --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c68b861..3ac5d66 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,5 @@ Name: sqlite URL: "https://www.sqlite.org/" Version: 3400100 + This is a shared library build of sqlite3 and its shell configured for ohos based off of the autoconf build flags. -- Gitee From 2998ae4c92b306b5fe6860cb7f971614e5216268 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=BE=E9=94=A6=E5=B1=B1?= <791770396@qq.com> Date: Sat, 7 Sep 2024 01:55:06 +0000 Subject: [PATCH 2/3] update README.md. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 曾锦山 <791770396@qq.com> --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 3ac5d66..c68b861 100644 --- a/README.md +++ b/README.md @@ -2,5 +2,4 @@ Name: sqlite URL: "https://www.sqlite.org/" Version: 3400100 - This is a shared library build of sqlite3 and its shell configured for ohos based off of the autoconf build flags. -- Gitee From 54c5d46ada5733abe6a16bfda5606147b408a828 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=BE=E9=94=A6=E5=B1=B1?= <791770396@qq.com> Date: Wed, 11 Sep 2024 07:44:27 +0000 Subject: [PATCH 3/3] update src/shell.c. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 曾锦山 <791770396@qq.com> --- src/shell.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/shell.c b/src/shell.c index a951b27..460f8c2 100644 --- a/src/shell.c +++ b/src/shell.c @@ -81,6 +81,8 @@ typedef unsigned short int u16; #pragma warning(disable : 4210) #pragma warning(disable : 4232) #pragma warning(disable : 4244) + + #pragma warning(disable : 4305) #pragma warning(disable : 4306) #pragma warning(disable : 4702) @@ -90,8 +92,9 @@ typedef unsigned short int u16; /* ** No support for loadable extensions in VxWorks. */ -#if (defined(__RTP__) || defined(_WRS_KERNEL)) && !SQLITE_OMIT_LOAD_EXTENSION -# define SQLITE_OMIT_LOAD_EXTENSION 1 +#if (defined(__RTP__) || defined(_WRS_KERNEL)) &&!SQLITE_OMIT_LOAD_EXTENSION +# define SQLITE_OMIT_LOAD_EXTENSION 1 + #endif /* -- Gitee