Layout of the Troubleshooting section

This commit is contained in:
Sébastien Rombauts 2013-09-22 23:29:28 +02:00
parent b1a8e45b20
commit c5828d8787

View File

@ -112,7 +112,10 @@ If you get a single linker error "Column.cpp: undefined reference to sqlite3_col
it's that your "sqlite3" library was not compiled with it's that your "sqlite3" library was not compiled with
the SQLITE_ENABLE_COLUMN_METADATA macro defined (see http://www.sqlite.org/compile.html#enable_column_metadata). the SQLITE_ENABLE_COLUMN_METADATA macro defined (see http://www.sqlite.org/compile.html#enable_column_metadata).
You can either recompile it yourself (seek help online) or you can comment out the following line in src/Column.h: You can either recompile it yourself (seek help online) or you can comment out the following line in src/Column.h:
```C++
#define SQLITE_ENABLE_COLUMN_METADATA #define SQLITE_ENABLE_COLUMN_METADATA
```
### Continuous Integration ### Continuous Integration