MyWarp

MyWarp

220k Downloads

How to setup mySQL database?

ArtNRG opened this issue · 3 comments

commented

How to set up the MySQL database?

When I use MyWarp version 3.0-SNAPSHOT+jenkins-b192.git-91cdc14a6b I set up the storage section like this and it's ok:

storage:
  schema: mywarp
  user: mywarpuser
  password: password
  properties: []
  url: jdbc:mysql://localhost/
  database: dbName

After updating to 3.0-SNAPSHOT+travis-b1627.git-c4a48e16bb I can't use the configuration above because of errors while loading the plugin.
The storage.database section is removed from default config so I tried to include BD name into the url:

url: jdbc:mysql://localhost/dbName/
url: jdbc:mysql://localhost/dbName

But the plugin still can't be loaded.

commented

There is no configuration called database in MyWarp3; what exactly are you trying to accomplish?

If you want to set a table name, similar to MyWarp2, this can no longer be done as MyWarp now uses multiple tables and expected a dedicated database schema of MyWarp's tables only. See here for more information.

You mentioned an error that occurs while the plugin is loaded. If you upload and link the error log, I may be able to help you more precisely.

commented

@TheE I have about 10 different databases for different plugins and I want to setup myWarp to use one of them.
After configuration the MySQL side I have IP, port, the name of the database, username, and password. Shall I use the "schema" instead of "database name"?

commented

Sorry, but to use MyWarp with MySQL you must use a dedicated database for MyWarp only. The technical reason is that the existence of MyWarp‘s table structure can only be guaranteed if the database contains no unknown tables, meaning tables not created by MyWarp.

To configure which database to use, use database.schema.

If you do not want to create a dedicated database for MyWarp only, please use H2.