summary refs log tree commit diff stats
path: root/lib/impure/db_sqlite.nim
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #262 from gradha/pr_adds_some_documentation_to_db_modulesAraq2012-11-241-4/+7
|\
| * Documents NULL to "" db_* transformation and return values.Grzegorz Adam Hankiewicz2012-11-241-4/+7
* | fixes #250Araq2012-11-191-2/+2
|/
* 'assert' hides EAssertionFailsure; stdlib makes use of 'tags'Araq2012-11-181-16/+26
* Adds `$` as supplied proc to varargs in database modules.Grzegorz Adam Hankiewicz2012-10-201-10/+10
* bugfix: leak in db_sqlite.GetValueAraq2012-10-101-3/+5
* Fixes segfault in db_sqlite. Fixes problems with times.format.Dominik Picheta2012-10-071-2/+4
* openarray/varargs split; breaks bootstrappingAraq2012-08-161-12/+12
* changed integer promotion rules; breaks bootstrapping and lots of codeAraq2012-07-081-5/+5
* small bugfixes; documentation generator supports smilies for the forumAraq2012-05-011-1/+1
* some code formatingAraq2012-04-261-3/+2
* added db_*.getRowAraq2012-04-241-0/+10
* added system.setControlCHook, system.writeStackTraceAraq2012-02-191-1/+2
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* much more efficient rod file generationAraq2011-10-181-2/+1
* bugfix: return type of gtk2.check_menu_item_new*Andreas Rumpf2010-03-171-1/+1
* fixed pango/pangoutils new wrappersAndreas Rumpf2010-02-261-0/+0
* SQLite wrapperAndreas Rumpf2010-02-241-0/+178
11 19:32:07 +0100 committer James Booth <boothj5@gmail.com> 2014-05-11 19:32:07 +0100 Implemented per contact OTR policy setting' href='/danisanti/profani-tty/commit/src/config/account.c?id=9dda7036a9410a6d2124d3eb6c34eefb7a39a13a'>9dda7036 ^
21ab1821 ^



















a932998f ^
21ab1821 ^





95ff1313 ^
9dda7036 ^


21ab1821 ^
21ab1821 ^
401835f3 ^
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178