godot-sqlite icon indicating copy to clipboard operation
godot-sqlite copied to clipboard

GDNative wrapper for SQLite (Godot 4.x+)

Results 49 godot-sqlite issues
Sort by recently updated
recently updated
newest added

**Describe the solution you'd like** Since gdscript doesn't support pointers or passing by reference, it would be more efficient and possibly safer to have query() return the actual recordset instead...

enhancement

**Environment:** - OS: Windows - Godot version: 3.4 Stable - _godot-sqlite_ version: 3.0-assetlib **Issue description:** I'm trying to use breakpoint after I call a function with `db.close()` inside of it....

bug

Creation of the following `table_dict` results in syntax errors of the query: ``` var table_dict : Dictionary = Dictionary() table_dict["last_name"] = {"data_type":"char(5)", "default": "Silver"} table_dict["first_name"] = {"data_type":"char(5)", "default": "Long John"}...

bug

**Environment:** - OS: Windows 10, Debian 11 - Godot version: 3.5 - _godot-sqlite_ version: 3.3 **Issue description:** Static memory usage goes up permanently after using ``` db.open_db() db.close_db() ```` ![image](https://user-images.githubusercontent.com/8625631/188171969-2c80efe2-d290-4f56-befa-c2911b8cb623.png)...

bug

**Environment:** - OS: windows - Godot version: 3.5 - _godot-sqlite_ version: 3.3 **Issue description:** when i export my game the database.db isnt in the game file itself and its producing...

bug

**Environment:** - OS: Linux - Debian 11 (Applies to all platforms) - Godot version: 3.4.2 Mono - _godot-sqlite_ version: 3.3 **Issue description:** As it stands, the `query_with_bindings` method will still...

bug

Godot 3.5.3 User here Nice to have feature, would be to export/import the db as json from a buffer/variable. Should be a workaround to encrypt/decrypt the db.

enhancement

Is it possible to use this plugin on iOS with Godot 4.x? I tried the gd-extension branch, but iOS seems to be missing in the gd-extension file. Thanks for the...

I'm using GD4.1.1 and got this error after installing godot-sqlite. Please help me fix it. It would be great if there were video tutorials from the plugin developer himself ![gd...

bug

I've discovered that in order to use "ATTACH DATABASE", one should use `ProjectSettings.globalize_path(path)` on the database path and throw that into the query. For paths in res://, exported projects should...