mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-30 17:58:54 +00:00
Escaped table name.
Without the backticks escaping the name 0 records are being returned. This is possibly a paltform difference between MySql and MariaDb
This commit is contained in:
+1
-1
@@ -64,7 +64,7 @@ end
|
||||
MySQL.ready(function()
|
||||
Citizen.Wait(1500)
|
||||
|
||||
MySQL.Async.fetchAll('SELECT * FROM properties', {}, function(properties)
|
||||
MySQL.Async.fetchAll('SELECT * FROM `properties`', {}, function(properties)
|
||||
|
||||
for i=1, #properties, 1 do
|
||||
local entering = nil
|
||||
|
||||
Reference in New Issue
Block a user