You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- to use a permissive MIT license, similar to BSD or Boost, for proprietary/commercial usage
58
59
59
60
It is designed using the Resource Acquisition Is Initialization (RAII) idiom
60
-
(see http://en.wikipedia.org/wiki/Resource_Acquisition_Is_Initialization),
61
+
(see [http://en.wikipedia.org/wiki/Resource_Acquisition_Is_Initialization](http://en.wikipedia.org/wiki/Resource_Acquisition_Is_Initialization)),
61
62
and throwing exceptions in case of SQLite errors (except in destructors,
62
63
where assert() are used instead).
63
64
Each SQLiteC++ object must be constructed with a valid SQLite database connection,
@@ -178,7 +179,7 @@ it's that you lack the "sqlite3" library: install the libsqlite3-dev package.
178
179
179
180
If you get a single linker error "Column.cpp: undefined reference to sqlite3_column_origin_name",
180
181
it's that your "sqlite3" library was not compiled with
181
-
the SQLITE_ENABLE_COLUMN_METADATA macro defined (see http://www.sqlite.org/compile.html#enable_column_metadata).
182
+
the SQLITE_ENABLE_COLUMN_METADATA macro defined (see [http://www.sqlite.org/compile.html#enable_column_metadata](http://www.sqlite.org/compile.html#enable_column_metadata)).
182
183
You can either recompile it yourself (seek help online) or you can comment out the following line in src/Column.h:
183
184
184
185
```C++
@@ -193,13 +194,13 @@ It is also tested in the same way under Windows Server 2012 R2 with Visual Studi
193
194
using the AppVeyor continuous integration service.
0 commit comments