addEventHandler ( "onResourceStart", resourceRoot,
function ( )
executeSQLQuery ( "CREATE TABLE IF NOT EXISTS SaveSystemByAboShanab (NameAccount,Password)" )
end
)
function setSaveSystemByAboShanab ( NameAccount, Password )
return executeSQLQuery ( "INSERT INTO SaveSystemByAboShanab ( NameAccount, Password ) VALUES ( ?, ? )", tostring(NameAccount), tostring(Password) )
end
function getAccountsInTable()
return executeSQLQuery("SELECT * FROM SaveSystemByAboShanab")
end