Guest User

Untitled

a guest
Apr 27th, 2018
407
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.84 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: 'minidb'
  21.  
  22. # These are for InventoryDB only.
  23. # MajorItem is the item or block ID of the major currency
  24. # MinorItem is the item or block ID of the minor currency
  25. # e.g. MajorItem: 266, MinorItem: 265 for Gold/Iron
  26. MajorItem: 266
  27. MinorItem: 265
  28.  
  29. # This controls the database name, by default it is iConomy
  30. Table: '9223_sql'
  31.  
  32. # URL is for SQL Databases Only
  33. ##
  34. # Path to iConomy folder is easy, it's the COMPLETE path.
  35. # (Mine) G:\MineCraft\plugins\iConomy\
  36. # Won't be the same as yours, but it usually looks like that.
  37. ##
  38. # [H2DB Default] h2:path/to/iConomy/folder/iConomy;AUTO_RECONNECT=TRUE
  39. # [SQLite Default] sqlite:path/to/iConomy/folder/iConomy.db
  40. ##
  41. # Binary Databases use ip:port style connections.
  42. # ip
  43. # - is the connection identifier (internet protocol)
  44. # - for ipv6 usually encased in brackets [::1]
  45. # port
  46. # - the port that the database is listening on
  47. # - defaults: 3306 for mysql, postgre is either 5740 or 5432
  48. ##
  49. # [MySQL Default] mysql://localhost:3306/iConomy
  50. # [Postgre Default] postgresql://localhost:5740/iConomy
  51. URL: 'sql.mtxserv.fr'
  52.  
  53. # Login details for binary databases
  54. Username: 'w_9223'
  55. Password: 'MONMDP'
  56.  
  57. ##############################################################
  58. # !!! Conversion is not your database settings !!!
  59. ##############################################################
  60. # Conversion allows you to convert your old 5.x to the new 6.x
  61. # All is currently unused.
  62. ##############################################################
  63. # URL is for MySQL only, H2DB doesn't use it.
  64. ##############################################################
  65. Conversion:
  66. # Set to True, After converting, change this back to false!
  67. Enabled: true
  68.  
  69. # Database Type, H2DB or MySQL
  70. Type: 'MySQL'
  71.  
  72. # Database Table
  73. Table: '9223_sql'
  74.  
  75. # Database URL without table at the end.
  76. URL: 'sql.mtxserv.fr'
  77.  
  78. # Username / Password
  79. # H2DB does not use this. MySQL Only.
  80. Username: 'w_9223'
  81. Password: 'MONMDP'
  82.  
  83. # Unused ATM.
  84. All: true
Add Comment
Please, Sign In to add comment