If you want to see more resources like this, become a Patreon supporter!
No description entered
local columnData = Database.GetColumnData(tableName, columnIdx)
tableName
: A string indicating the name of the loaded tablecolumnIdx
: A number indicating the column to retrievetable
No description entered
local columnInfo = Database.GetColumnInfo(tableName, columnIdx)
tableName
: A string indicating the name of the loaded tablecolumnIdx
: A number indicating the column to retrievetable
No description entered
local tableInfo = Database.GetTableInfo(tableName)
tableName
: A string indicating the name of the loaded table
table
No description entered
local tableLine = Database.GetTableLine(tableName, lineIdx)
tableName
: A string indicating the name of the loaded tablelineIdx
: A number indicating the line to retrievetable
No description entered
local table = Database.LoadTable(tableName)
tableName
: A string indicating the name of the table to load
table