├── .github └── workflows │ ├── linux.yml │ ├── macos.yml │ ├── scripts │ ├── clang_format.sh │ └── file_format.sh │ ├── static_checks.yml │ └── windows.yml ├── .gitignore ├── AUTHORS.md ├── LICENSE ├── README.md ├── SCsub ├── config.py ├── demo ├── .gitignore ├── SQLite │ ├── blob_data.gd │ ├── game_highscore.gd │ ├── item_database.gd │ ├── sql_queries.gd │ └── test_sqlite.tscn ├── default_env.tres ├── icon.png ├── icon.png.import ├── items.db └── project.godot ├── doc_classes ├── SQLite.xml └── SQLiteQuery.xml ├── register_types.cpp ├── register_types.h ├── sqlite.cpp ├── sqlite.h └── thirdparty └── sqlite ├── spmemvfs.c ├── spmemvfs.h ├── sqlite3.c ├── sqlite3.h └── sqlite3ext.h /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/clang_format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/.github/workflows/scripts/clang_format.sh -------------------------------------------------------------------------------- /.github/workflows/scripts/file_format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/.github/workflows/scripts/file_format.sh -------------------------------------------------------------------------------- /.github/workflows/static_checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/.github/workflows/static_checks.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/README.md -------------------------------------------------------------------------------- /SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/SCsub -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/config.py -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/demo/.gitignore -------------------------------------------------------------------------------- /demo/SQLite/blob_data.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/demo/SQLite/blob_data.gd -------------------------------------------------------------------------------- /demo/SQLite/game_highscore.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/demo/SQLite/game_highscore.gd -------------------------------------------------------------------------------- /demo/SQLite/item_database.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/demo/SQLite/item_database.gd -------------------------------------------------------------------------------- /demo/SQLite/sql_queries.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/demo/SQLite/sql_queries.gd -------------------------------------------------------------------------------- /demo/SQLite/test_sqlite.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/demo/SQLite/test_sqlite.tscn -------------------------------------------------------------------------------- /demo/default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/demo/default_env.tres -------------------------------------------------------------------------------- /demo/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/demo/icon.png -------------------------------------------------------------------------------- /demo/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/demo/icon.png.import -------------------------------------------------------------------------------- /demo/items.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/demo/items.db -------------------------------------------------------------------------------- /demo/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/demo/project.godot -------------------------------------------------------------------------------- /doc_classes/SQLite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/doc_classes/SQLite.xml -------------------------------------------------------------------------------- /doc_classes/SQLiteQuery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/doc_classes/SQLiteQuery.xml -------------------------------------------------------------------------------- /register_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/register_types.cpp -------------------------------------------------------------------------------- /register_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/register_types.h -------------------------------------------------------------------------------- /sqlite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/sqlite.cpp -------------------------------------------------------------------------------- /sqlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/sqlite.h -------------------------------------------------------------------------------- /thirdparty/sqlite/spmemvfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/thirdparty/sqlite/spmemvfs.c -------------------------------------------------------------------------------- /thirdparty/sqlite/spmemvfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/thirdparty/sqlite/spmemvfs.h -------------------------------------------------------------------------------- /thirdparty/sqlite/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/thirdparty/sqlite/sqlite3.c -------------------------------------------------------------------------------- /thirdparty/sqlite/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/thirdparty/sqlite/sqlite3.h -------------------------------------------------------------------------------- /thirdparty/sqlite/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-sqlite/HEAD/thirdparty/sqlite/sqlite3ext.h --------------------------------------------------------------------------------