This commit is contained in:
James Hulce 2025-06-30 11:44:57 -05:00 committed by GitHub
commit 6f341ce7ab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2986,7 +2986,7 @@ function Database:db_filename(name) end
function Database:deserialize(s) end function Database:deserialize(s) end
---@return integer error the numerical result code (or extended result code) for the most recent failed call associated with database db. ---@return integer error the numerical result code (or extended result code) for the most recent failed call associated with database db.
--- See http://lua.sqlite.org/index.cgi/doc/tip/doc/lsqlite3.wiki#numerical_error_and_result_codes for details. --- See https://lua.sqlite.org/home/doc/tip/doc/lsqlite3.wiki#numerical_error_and_result_codes for details.
---@nodiscard ---@nodiscard
function Database:error_code() end function Database:error_code() end
@ -3103,7 +3103,7 @@ function Database:nrows(sql) end
--- representation and returns this as userdata. The returned object should be --- representation and returns this as userdata. The returned object should be
--- used for all further method calls in connection with this specific SQL --- used for all further method calls in connection with this specific SQL
--- statement. --- statement.
--- See http://lua.sqlite.org/index.cgi/doc/tip/doc/lsqlite3.wiki#methods_for_prepared_statements. --- See https://lua.sqlite.org/home/doc/tip/doc/lsqlite3.wiki#methods_for_prepared_statements for details.
---@param sql string ---@param sql string
---@return lsqlite3.Statement ---@return lsqlite3.Statement
---@nodiscard ---@nodiscard