├── example ├── main.cpp ├── testApp.cpp └── testApp.h ├── install.xml └── src ├── lib └── sqlite │ ├── sqlite3.c │ ├── sqlite3.h │ └── sqlite3ext.h ├── ofxSQLite.cpp ├── ofxSQLite.h ├── ofxSQLiteAbstract.cpp ├── ofxSQLiteAbstract.h ├── ofxSQLiteDelete.cpp ├── ofxSQLiteDelete.h ├── ofxSQLiteFieldValues.cpp ├── ofxSQLiteFieldValues.h ├── ofxSQLiteHeaders.h ├── ofxSQLiteInsert.cpp ├── ofxSQLiteInsert.h ├── ofxSQLiteSelect.cpp ├── ofxSQLiteSelect.h ├── ofxSQLiteSimpler.cpp ├── ofxSQLiteSimpler.h ├── ofxSQLiteType.h ├── ofxSQLiteTypeNow.h ├── ofxSQLiteUpdate.cpp ├── ofxSQLiteUpdate.h └── ofxSQLiteWhere.h /example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/example/main.cpp -------------------------------------------------------------------------------- /example/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/example/testApp.cpp -------------------------------------------------------------------------------- /example/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/example/testApp.h -------------------------------------------------------------------------------- /install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/install.xml -------------------------------------------------------------------------------- /src/lib/sqlite/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/lib/sqlite/sqlite3.c -------------------------------------------------------------------------------- /src/lib/sqlite/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/lib/sqlite/sqlite3.h -------------------------------------------------------------------------------- /src/lib/sqlite/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/lib/sqlite/sqlite3ext.h -------------------------------------------------------------------------------- /src/ofxSQLite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/ofxSQLite.cpp -------------------------------------------------------------------------------- /src/ofxSQLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/ofxSQLite.h -------------------------------------------------------------------------------- /src/ofxSQLiteAbstract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/ofxSQLiteAbstract.cpp -------------------------------------------------------------------------------- /src/ofxSQLiteAbstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/ofxSQLiteAbstract.h -------------------------------------------------------------------------------- /src/ofxSQLiteDelete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/ofxSQLiteDelete.cpp -------------------------------------------------------------------------------- /src/ofxSQLiteDelete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/ofxSQLiteDelete.h -------------------------------------------------------------------------------- /src/ofxSQLiteFieldValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/ofxSQLiteFieldValues.cpp -------------------------------------------------------------------------------- /src/ofxSQLiteFieldValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/ofxSQLiteFieldValues.h -------------------------------------------------------------------------------- /src/ofxSQLiteHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/ofxSQLiteHeaders.h -------------------------------------------------------------------------------- /src/ofxSQLiteInsert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/ofxSQLiteInsert.cpp -------------------------------------------------------------------------------- /src/ofxSQLiteInsert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/ofxSQLiteInsert.h -------------------------------------------------------------------------------- /src/ofxSQLiteSelect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/ofxSQLiteSelect.cpp -------------------------------------------------------------------------------- /src/ofxSQLiteSelect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/ofxSQLiteSelect.h -------------------------------------------------------------------------------- /src/ofxSQLiteSimpler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/ofxSQLiteSimpler.cpp -------------------------------------------------------------------------------- /src/ofxSQLiteSimpler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/ofxSQLiteSimpler.h -------------------------------------------------------------------------------- /src/ofxSQLiteType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/ofxSQLiteType.h -------------------------------------------------------------------------------- /src/ofxSQLiteTypeNow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/ofxSQLiteTypeNow.h -------------------------------------------------------------------------------- /src/ofxSQLiteUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/ofxSQLiteUpdate.cpp -------------------------------------------------------------------------------- /src/ofxSQLiteUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/ofxSQLiteUpdate.h -------------------------------------------------------------------------------- /src/ofxSQLiteWhere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diederickh/ofxSQLite/HEAD/src/ofxSQLiteWhere.h --------------------------------------------------------------------------------