data.databaseTableExists
Determine if a database table exists.
tableName string
exists boolean
local tableName = "myTable"
if data.databaseTableExists(tableName) then
print(tableName .. " table exists")
else
print(tableName .. " table does not exist")
end
Generated on the 26 June 2024 at 22:01:27 (UK Time)