Guest User

Untitled

a guest
Dec 23rd, 2017
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. Database:
  2. # Databases Supported:
  3. # Flatfile, FF, mini, minidb
  4. # - These all equate to miniDB
  5. ##
  6. # item, items, inventory, inventoryDB
  7. # - These all equate to InventoryDB, which uses inventory for storage
  8. ##
  9. # xp, exp, orb, xpdb, expdb, orbdb
  10. # - These all equate to ExperienceDB, which relies on Experience for balance.
  11. ##
  12. # mysql, mysqldb
  13. # - These will attempt to connect to MySQL
  14. ##
  15. # sqlite, sqlite2, sqlite3, sqlitedb
  16. # - These will attempt to create & connect to SQLite
  17. ##
  18. # postgre, postgreSQL, postgreDB
  19. # - These will attempt to connect to PostgreSQL
  20. Type: 'mysql'
  21. # This controls the database name, by default it is iConomy
  22. Table: 'iConomy'
  23. # URL is for SQL Databases Only
  24. ##
  25. # Path to iConomy folder is easy, it's the COMPLETE path.
  26. # (Mine) G:\MineCraft\plugins\iConomy\
  27. # Won't be the same as yours, but it usually looks like that.
  28. ##
  29. # [H2DB Default] h2:path/to/iConomy/folder/iConomy;AUTO_RECONNECT=TRUE
  30. # [SQLite Default] sqlite:path/to/iConomy/folder/iConomy.db
  31. ##
  32. # Binary Databases use ip:port style connections.
  33. # ip
  34. # - is the connection identifier (internet protocol)
  35. # - for ipv6 usually encased in brackets [::1]
  36. # port
  37. # - the port that the database is listening on
  38. # - defaults: 3306 for mysql, postgre is either 5740 or 5432
  39. ##
  40. # [MySQL Default] mysql://localhost:3306/iConomy
  41. # [Postgre Default] postgresql://localhost:5740/iConomy
  42. URL: 'mysql://localhost:3306/iConomy'
  43. # Login details for binary databases
  44. Username: 'root'
  45. Password: '**********'
Add Comment
Please, Sign In to add comment