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
The usual method now works:
./configure && make && make install
Though make doesn't actually do anything, it's still header only and you
can just point your compiler at the source drectory if you wish.
Also updated the documentation.
@@ -150,9 +157,26 @@ If you have databases where some rows may be null, you can use boost::optional t
150
157
}
151
158
```
152
159
160
+
Errors
161
+
=====
162
+
163
+
On error, the library throws an error class indicating the type of error. The error classes are derived from the SQLITE3 error names, so if the error code is SQLITE_CONSTRAINT, the error class thrown is sqlite::exceptions::constraint. Note that all errors are derived from sqlite::sqlite_exception and that itself is derived from std::runtime_exception.
153
164
154
165
*node: for NDK use the full path to your database file : `sqlite::database db("/data/data/com.your.package/dbfile.db")`*.
155
166
167
+
Building and Installing
168
+
=====
169
+
170
+
The usual way works for installing:
171
+
172
+
```bash
173
+
./configure && make && sudo make install
174
+
175
+
```
176
+
177
+
Note, there's nothing to make, so you there's no need to run configure and you can simply point your compiler at the hdr/ directory.
178
+
179
+
156
180
##License
157
181
158
182
MIT license - [http://www.opensource.org/licenses/mit-license.php](http://www.opensource.org/licenses/mit-license.php)
0 commit comments