Added some corrections to the SQLite CRUD commands, as the comments were off for some of them.

This commit is contained in:
PersonGuyGit 2023-04-23 13:00:08 -06:00
parent 311296f5a0
commit 4cc0d0a8ff
4 changed files with 6 additions and 7 deletions

View File

@ -1,5 +1,5 @@
2a60927148abd1d33b818b535e306557 2a60927148abd1d33b818b535e306557
::res://::1682269516 ::res://::1682270223
default_env.tres::Environment::-1::1680461469::0::1::::<><>:: default_env.tres::Environment::-1::1680461469::0::1::::<><>::
icon.png::CompressedTexture2D::1663579034843721578::1659896126::1681665020::1::::<><>:: icon.png::CompressedTexture2D::1663579034843721578::1659896126::1681665020::1::::<><>::
README.txt::TextFile::-1::1679251181::0::1::::<><>:: README.txt::TextFile::-1::1679251181::0::1::::<><>::

View File

@ -1,3 +1,2 @@
res://screens/MainMenu.tscn
res://GenresSubstitution/genre_sub.gd
res://GenresSubstitution/TestDB.tscn res://GenresSubstitution/TestDB.tscn
res://GenresSubstitution/genre_sub.gd

View File

@ -3,11 +3,11 @@
state={ state={
"bookmarks": PackedInt32Array(), "bookmarks": PackedInt32Array(),
"breakpoints": PackedInt32Array(), "breakpoints": PackedInt32Array(),
"column": 0, "column": 25,
"folded_lines": Array[int]([]), "folded_lines": Array[int]([]),
"h_scroll_position": 0, "h_scroll_position": 0,
"row": 140, "row": 104,
"scroll_position": 9.0, "scroll_position": 87.5,
"selection": false, "selection": false,
"syntax_highlighter": "GDScript" "syntax_highlighter": "GDScript"
} }

View File

@ -102,7 +102,7 @@ func updateItemByID(id, feedName):
# This will update an Collection's Item Alias record under your desired ID. # This will update an Collection's Item Alias record under your desired ID.
# Example of how to use updateCollectionAliasByID # Example of how to use updateCollectionAliasByID
# updateItemByID(1, "Electric Guitar") # updateCollectionAliasByID(1, "Electric Guitar")
func updateCollectionAliasByID(id, feedName): func updateCollectionAliasByID(id, feedName):
db.open_db() db.open_db()
var tableName = "collection" var tableName = "collection"