Alternate e697dbe9c5997e35395fe158628dd8c5209481da
for Visual Studio 2022 and Windows 11.
読み取り中…
検索中…
一致する文字列を見つけられません
Core.h
[詳解]
1
5
6#pragma once
7
8#include <Windows.h>
9#include "sqlite3.h"
10
11namespace alt
12{
13 namespace db
14 {
18 class Core
19 {
20 public:
23
25 virtual ~Core () {}
26
27 protected:
29 bool getResponse () { return _lastError != SQLITE_OK ? false : true; }
30
33 };
34 }
35}
SqLite3操作クラス(Core)
Definition: Core.h:19
bool getResponse()
各関数の戻り値判定共通
Definition: Core.h:29
int _lastError
SQLite3関数エラー値
Definition: Core.h:32
Core()
コンストラクタ
Definition: Core.h:22
virtual ~Core()
デストラクタ
Definition: Core.h:25
Definition: DBLibrary.h:12
#define SQLITE_OK
Definition: sqlite3.h:425