Skip to content

Commit 17732b5

Browse files
Added version
1 parent 4c49229 commit 17732b5

File tree

2 files changed

+312
-0
lines changed

2 files changed

+312
-0
lines changed

.gitignore

Lines changed: 310 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,310 @@
1+
$ cat .gitignore
2+
3+
# Ignore these patterns
4+
desktop.ini
5+
~AutoRecover*.*
6+
*.aps
7+
*.exe
8+
*.idb
9+
*.ipch
10+
*.lib
11+
*.log
12+
*.manifest
13+
*.obj
14+
*.pch
15+
*.pdb
16+
*.sdf
17+
*.suo
18+
*.tlog
19+
*.user
20+
*.7z
21+
*.swp
22+
*.zip
23+
data.csv
24+
/boost
25+
/scintilla
26+
/bin
27+
/SQL
28+
29+
## Ignore Visual Studio temporary files, build results, and
30+
## files generated by popular Visual Studio add-ons.
31+
32+
# User-specific files
33+
*.suo
34+
*.user
35+
*.userosscache
36+
*.sln.docstates
37+
38+
# User-specific files (MonoDevelop/Xamarin Studio)
39+
*.userprefs
40+
41+
# Build results
42+
[Dd]ebug/
43+
[Dd]ebugPublic/
44+
[Rr]elease/
45+
[Rr]eleases/
46+
x64/
47+
x86/
48+
bld/
49+
[Bb]in/
50+
[Oo]bj/
51+
[Ll]og/
52+
53+
# Visual Studio 2015 cache/options directory
54+
.vs/
55+
# Uncomment if you have tasks that create the project's static files in wwwroot
56+
#wwwroot/
57+
58+
# MSTest test Results
59+
[Tt]est[Rr]esult*/
60+
[Bb]uild[Ll]og.*
61+
62+
# NUNIT
63+
*.VisualState.xml
64+
TestResult.xml
65+
66+
# Build Results of an ATL Project
67+
[Dd]ebugPS/
68+
[Rr]eleasePS/
69+
dlldata.c
70+
71+
# DNX
72+
project.lock.json
73+
project.fragment.lock.json
74+
artifacts/
75+
76+
*_i.c
77+
*_p.c
78+
*_i.h
79+
*.ilk
80+
*.meta
81+
*.obj
82+
*.pch
83+
*.pdb
84+
*.pgc
85+
*.pgd
86+
*.rsp
87+
*.sbr
88+
*.tlb
89+
*.tli
90+
*.tlh
91+
*.tmp
92+
*.tmp_proj
93+
*.log
94+
*.vspscc
95+
*.vssscc
96+
.builds
97+
*.pidb
98+
*.svclog
99+
*.scc
100+
101+
# Chutzpah Test files
102+
_Chutzpah*
103+
104+
# Visual C++ cache files
105+
ipch/
106+
*.aps
107+
*.ncb
108+
*.opendb
109+
*.opensdf
110+
*.sdf
111+
*.cachefile
112+
*.VC.db
113+
*.VC.VC.opendb
114+
115+
# Visual Studio profiler
116+
*.psess
117+
*.vsp
118+
*.vspx
119+
*.sap
120+
121+
# TFS 2012 Local Workspace
122+
$tf/
123+
124+
# Guidance Automation Toolkit
125+
*.gpState
126+
127+
# ReSharper is a .NET coding add-in
128+
_ReSharper*/
129+
*.[Rr]e[Ss]harper
130+
*.DotSettings.user
131+
132+
# JustCode is a .NET coding add-in
133+
.JustCode
134+
135+
# TeamCity is a build add-in
136+
_TeamCity*
137+
138+
# DotCover is a Code Coverage Tool
139+
*.dotCover
140+
141+
# NCrunch
142+
_NCrunch_*
143+
.*crunch*.local.xml
144+
nCrunchTemp_*
145+
146+
# MightyMoose
147+
*.mm.*
148+
AutoTest.Net/
149+
150+
# Web workbench (sass)
151+
.sass-cache/
152+
153+
# Installshield output folder
154+
[Ee]xpress/
155+
156+
# DocProject is a documentation generator add-in
157+
DocProject/buildhelp/
158+
DocProject/Help/*.HxT
159+
DocProject/Help/*.HxC
160+
DocProject/Help/*.hhc
161+
DocProject/Help/*.hhk
162+
DocProject/Help/*.hhp
163+
DocProject/Help/Html2
164+
DocProject/Help/html
165+
166+
# Click-Once directory
167+
publish/
168+
169+
# Publish Web Output
170+
*.[Pp]ublish.xml
171+
*.azurePubxml
172+
# TODO: Comment the next line if you want to checkin your web deploy settings
173+
# but database connection strings (with potential passwords) will be unencrypted
174+
#*.pubxml
175+
*.publishproj
176+
177+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
178+
# checkin your Azure Web App publish settings, but sensitive information contained
179+
# in these scripts will be unencrypted
180+
PublishScripts/
181+
182+
# NuGet Packages
183+
*.nupkg
184+
# The packages folder can be ignored because of Package Restore
185+
**/packages/*
186+
# except build/, which is used as an MSBuild target.
187+
!**/packages/build/
188+
# Uncomment if necessary however generally it will be regenerated when needed
189+
#!**/packages/repositories.config
190+
# NuGet v3's project.json files produces more ignoreable files
191+
*.nuget.props
192+
*.nuget.targets
193+
194+
# Microsoft Azure Build Output
195+
csx/
196+
*.build.csdef
197+
198+
# Microsoft Azure Emulator
199+
ecf/
200+
rcf/
201+
202+
# Windows Store app package directories and files
203+
AppPackages/
204+
BundleArtifacts/
205+
Package.StoreAssociation.xml
206+
_pkginfo.txt
207+
208+
# Visual Studio cache files
209+
# files ending in .cache can be ignored
210+
*.[Cc]ache
211+
# but keep track of directories ending in .cache
212+
!*.[Cc]ache/
213+
214+
# Others
215+
ClientBin/
216+
~$*
217+
*~
218+
*.dbmdl
219+
*.dbproj.schemaview
220+
*.jfm
221+
*.pfx
222+
*.publishsettings
223+
node_modules/
224+
orleans.codegen.cs
225+
226+
# Since there are multiple workflows, uncomment next line to ignore bower_components
227+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
228+
#bower_components/
229+
230+
# RIA/Silverlight projects
231+
Generated_Code/
232+
233+
# Backup & report files from converting an old project file
234+
# to a newer Visual Studio version. Backup files are not needed,
235+
# because we have git ;-)
236+
_UpgradeReport_Files/
237+
Backup*/
238+
UpgradeLog*.XML
239+
UpgradeLog*.htm
240+
241+
# SQL Server files
242+
*.mdf
243+
*.ldf
244+
245+
# Business Intelligence projects
246+
*.rdl.data
247+
*.bim.layout
248+
*.bim_*.settings
249+
250+
# Microsoft Fakes
251+
FakesAssemblies/
252+
253+
# GhostDoc plugin setting file
254+
*.GhostDoc.xml
255+
256+
# Node.js Tools for Visual Studio
257+
.ntvs_analysis.dat
258+
259+
# Visual Studio 6 build log
260+
*.plg
261+
262+
# Visual Studio 6 workspace options file
263+
*.opt
264+
265+
# Visual Studio LightSwitch build output
266+
**/*.HTMLClient/GeneratedArtifacts
267+
**/*.DesktopClient/GeneratedArtifacts
268+
**/*.DesktopClient/ModelManifest.xml
269+
**/*.Server/GeneratedArtifacts
270+
**/*.Server/ModelManifest.xml
271+
_Pvt_Extensions
272+
273+
# Paket dependency manager
274+
.paket/paket.exe
275+
paket-files/
276+
277+
# FAKE - F# Make
278+
.fake/
279+
280+
# JetBrains Rider
281+
.idea/
282+
*.sln.iml
283+
284+
# CodeRush
285+
.cr/
286+
287+
# Python Tools for Visual Studio (PTVS)
288+
__pycache__/
289+
*.pyc
290+
291+
# Exclude associated build files and folders
292+
LocalPackageRepository/
293+
MediaFileDuplicateFinder_Setup.vdproj_temp.vdproj
294+
295+
# Exclude projects which are not ready to be included in this solution.
296+
TranslateFileNames/
297+
ffmpeg_source/
298+
299+
# Exclude test data and temp files
300+
Test_Data/
301+
*__ExcludeFromRepo__*.*
302+
*__DoNotAddToRepo__*.*
303+
304+
# Exclude reparsepoint files which are used to help view file using VS
305+
*.xaml.xml
306+
gitignore.txt
307+
308+
# Exclude temp and backup files
309+
*.bak
310+

sqlite3pp_ez.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ namespace sqlite3pp
4949
AIO_Throw
5050
};
5151

52+
static std::string GetSqlite3EzVer() { return "1.0.1"; }
53+
5254
class sql_base
5355
{
5456
public:

0 commit comments

Comments
 (0)