-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Option to use external SQL - enhancement request #16
Comments
Maybe. On the same or on a different computer ? |
Different one. |
I'm not sure if you want do do this. |
#24 I've just added the very same idea. But as an extra datasource. Just like EDDN. |
I honestly would just use it myself. I have a linux server in my house and have mysql running already. Create db, give full permissions, point app at that db. Plus that server already backs up each DB daily, something that wouldn't happen on a builtin installl. |
I haven't try it, but you can.
If you have done this it's possible working... Please report - if this works - or not .. ;) |
The capitolization issue comes up. I get an exception because the program tries to read a DB table but uses a lower case table name, even though the create SQL creates all tables with capitol letters. Clearly it's not an issue of connecting. 21.01.2017 19:03:39 : ED-IBE v0.6.1.0 |
in my opinion this is not a linux problem but simple a setting: http://dba.stackexchange.com/questions/59407/how-to-make-mysql-table-name-case-insensitive-in-ubuntu But I don't know if it is possible for you to change this on your server |
Yes, there is an ability to stop it, but the inconsistency in the code isn't something that should be ignored. |
After updating the mysql server with the lower case name option, I still get an exception. 21.01.2017 22:02:39 : 21.01.2017 22:02:39 : ED-IBE v0.6.1.0
|
I have decided to ignore it. Sorry, don't know what the reason of the current error (your last post) is. |
It's in the exception logs. Had issue with permissions. I gave the user super permissions because you're setting a database innodb parameter.
Basically setup was create database exactly named 'elite_db'. [DB_Connection] The other thing you may want to look at is DB connections. The program opened up around 30 connections. It only used 1 during import of data, the rest were sleeping the whole time. |
I got a new exception after restart of application. 23.01.2017 06:30:48 : 23.01.2017 06:30:48 : ED-IBE v0.6.1.0
|
Yes, this normally would be created by ED-IBE itself on the first start.
Yes, it's wanted. My principle for this program is to prepare all necessary connections on start (only a few will be opened temporary while running). Due to multiple threads and possible influencing there are a few more connections. |
Any chance you could add an option to use an external MySQL?
The text was updated successfully, but these errors were encountered: