forked from IronLanguages/ironpython3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContants.cs
More file actions
59 lines (54 loc) · 2.39 KB
/
Contants.cs
File metadata and controls
59 lines (54 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/* ****************************************************************************
*
* Copyright (c) Jeff Hardy 2010-2012.
*
* This source code is subject to terms and conditions of the Apache License, Version 2.0. A
* copy of the license can be found in the License.html file at the root of this distribution. If
* you cannot locate the Apache License, Version 2.0, please send an email to
* dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
* by the terms of the Apache License, Version 2.0.
*
* You must not remove this notice, or any other, from this software.
*
*
* ***************************************************************************/
using Community.CsharpSqlite;
namespace IronPython.SQLite
{
public static partial class PythonSQLite
{
public const int SQLITE_OK = Sqlite3.SQLITE_OK;
public const int SQLITE_DENY = 1;
public const int SQLITE_IGNORE = 2;
public const int SQLITE_CREATE_INDEX = 1;
public const int SQLITE_CREATE_TABLE = 2;
public const int SQLITE_CREATE_TEMP_INDEX = 3;
public const int SQLITE_CREATE_TEMP_TABLE = 4;
public const int SQLITE_CREATE_TEMP_TRIGGER = 5;
public const int SQLITE_CREATE_TEMP_VIEW = 6;
public const int SQLITE_CREATE_TRIGGER = 7;
public const int SQLITE_CREATE_VIEW = 8;
public const int SQLITE_DELETE = 9;
public const int SQLITE_DROP_INDEX = 10;
public const int SQLITE_DROP_TABLE = 11;
public const int SQLITE_DROP_TEMP_INDEX = 12;
public const int SQLITE_DROP_TEMP_TABLE = 13;
public const int SQLITE_DROP_TEMP_TRIGGER = 14;
public const int SQLITE_DROP_TEMP_VIEW = 15;
public const int SQLITE_DROP_TRIGGER = 16;
public const int SQLITE_DROP_VIEW = 17;
public const int SQLITE_INSERT = 18;
public const int SQLITE_PRAGMA = 19;
public const int SQLITE_READ = 20;
public const int SQLITE_SELECT = 21;
public const int SQLITE_TRANSACTION = 22;
public const int SQLITE_UPDATE = 23;
public const int SQLITE_ATTACH = 24;
public const int SQLITE_DETACH = 25;
public const int SQLITE_ALTER_TABLE = 26;
public const int SQLITE_REINDEX = 27;
public const int SQLITE_ANALYZE = 28;
public const int PARSE_DECLTYPES = 1;
public const int PARSE_COLNAMES = 2;
}
}