summaryrefslogtreecommitdiffstats
path: root/vsixtest/MainPage.xaml.cpp
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 14:07:11 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 14:07:11 +0000
commit63847496f14c813a5d80efd5b7de0f1294ffe1e3 (patch)
tree01c7571c7c762ceee70638549a99834fdd7c411b /vsixtest/MainPage.xaml.cpp
parentInitial commit. (diff)
downloadsqlite3-63847496f14c813a5d80efd5b7de0f1294ffe1e3.tar.xz
sqlite3-63847496f14c813a5d80efd5b7de0f1294ffe1e3.zip
Adding upstream version 3.45.1.upstream/3.45.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vsixtest/MainPage.xaml.cpp')
-rw-r--r--vsixtest/MainPage.xaml.cpp53
1 files changed, 53 insertions, 0 deletions
diff --git a/vsixtest/MainPage.xaml.cpp b/vsixtest/MainPage.xaml.cpp
new file mode 100644
index 0000000..e67dcb8
--- /dev/null
+++ b/vsixtest/MainPage.xaml.cpp
@@ -0,0 +1,53 @@
+//
+// MainPage.xaml.cpp
+// Implementation of the MainPage class.
+//
+
+#include "pch.h"
+#include "MainPage.xaml.h"
+#include "sqlite3.h"
+
+using namespace vsixtest;
+
+using namespace Platform;
+using namespace Windows::Foundation;
+using namespace Windows::Foundation::Collections;
+using namespace Windows::UI::Xaml;
+using namespace Windows::UI::Xaml::Controls;
+using namespace Windows::UI::Xaml::Controls::Primitives;
+using namespace Windows::UI::Xaml::Data;
+using namespace Windows::UI::Xaml::Input;
+using namespace Windows::UI::Xaml::Media;
+using namespace Windows::UI::Xaml::Navigation;
+
+// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409
+
+MainPage::MainPage()
+{
+ InitializeComponent();
+ UseSQLite();
+}
+
+void MainPage::UseSQLite(void)
+{
+ int rc = SQLITE_OK;
+ sqlite3 *pDb = nullptr;
+
+ rc = sqlite3_open_v2("test.db", &pDb,
+ SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, nullptr);
+
+ if (rc != SQLITE_OK)
+ throw ref new FailureException("Failed to open database.");
+
+ rc = sqlite3_exec(pDb, "VACUUM;", nullptr, nullptr, nullptr);
+
+ if (rc != SQLITE_OK)
+ throw ref new FailureException("Failed to vacuum database.");
+
+ rc = sqlite3_close(pDb);
+
+ if (rc != SQLITE_OK)
+ throw ref new FailureException("Failed to close database.");
+
+ pDb = nullptr;
+}