https://github.com/v-sekai/godot-mvsqlite
https://github.com/v-sekai/godot-mvsqlite
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/v-sekai/godot-mvsqlite
- Owner: V-Sekai
- License: mit
- Created: 2023-09-23T01:42:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-22T23:10:50.000Z (11 months ago)
- Last Synced: 2024-05-22T23:26:56.383Z (11 months ago)
- Language: C++
- Size: 22.7 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Authors: AUTHORS.md
Awesome Lists containing this project
README
# Godot SQLite
This is a [MVSQLite](https://github.com/V-Sekai/mvsqlite) wrapper for the Godot Engine.
## Installation
1. Clone the repository using git:
```
git clone https://github.com/V-Sekai/V-Sekai.godot-mvsqlite.git mvsqlite
```2. Move the `mvsqlite` folder to the `modules` folder inside the Godot Engine source:
```
mv sqlite godot/modules/
```## Example Usage
- [SQL Queries](https://github.com/V-Sekai/godot-sqlite/blob/master/demo/SQLite/sql_queries.gd)
- [Game Highscore](https://github.com/V-Sekai/godot-sqlite/blob/master/demo/SQLite/game_highscore.gd)
- [Item Libraries](https://github.com/V-Sekai/godot-sqlite/blob/master/demo/SQLite/item_database.gd)## Credits
This engine module for Godot is based on `gdsqlite-native` by Khairul Hidayat in 2017.