From c5828d8787afc9c1f1f08eaa92ab531eeb7ba798 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Sun, 22 Sep 2013 23:29:28 +0200 Subject: [PATCH] Layout of the Troubleshooting section --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 9ad6da1..d184dd4 100644 --- a/README.md +++ b/README.md @@ -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 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: + +```C++ #define SQLITE_ENABLE_COLUMN_METADATA +``` ### Continuous Integration