Guest User

s_mysql.lua

a guest
Mar 9th, 2019
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. username = "root"
  2. password = "***********"
  3. db = "mtadev"
  4. host = "127.0.0.1"
  5. port = 3306
  6.  
  7. function getMySQLUsername()
  8. return username
  9. end
  10.  
  11. function getMySQLPassword()
  12. return password
  13. end
  14.  
  15. function getMySQLDBName()
  16. return db
  17. end
  18.  
  19. function getMySQLHost()
  20. return host
  21. end
  22.  
  23. function getMySQLPort()
  24. return port
  25. end
Add Comment
Please, Sign In to add comment