Advertisement
Guest User

Untitled

a guest
Jan 25th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.92 KB | None | 0 0
  1. bLogs.MySQL = {}
  2. local Sensitive = {}
  3.  
  4. bLogs.MySQL.Enabled = true
  5.  
  6. --// http://billyvenner.co.uk/blogs/wiki/index.php/Configuration#MySQL
  7. --// READ IT!!!
  8.  
  9. --// The IP Address CANNOT be localhost.
  10.  
  11. --// tMySQL4 IS REQUIRED!
  12.  
  13. --// The reason why I do not support mysqloo is because:
  14. --// 1) mysqloo sometimes creates memory leaks
  15. --// 2) mysqloo sometimes does not even go through with a query
  16. --// 3) mysqloo doesnt reconnect to the database
  17. --// 4) mysqloo does not queue anything
  18.  
  19. --// NOTE: If you have a domain that points to your MySQL server, you can use it here, too.
  20. Sensitive.IPAddress = "127.0.0.1"
  21. Sensitive.Port = 3306
  22. Sensitive.Username = "fuh" --//Not my real username and PW
  23. Sensitive.Password = "fuh"
  24. Sensitive.Database = "fuh"
  25.  
  26. --// Enable this to see MySQL queries and raw tMySQL4 results.
  27. bLogs.MySQL.Debug = false
  28.  
  29. --/////////////////////////////////////////////////////////////////////////////////--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement