How to setup MySQL Rider - MacOS - mysql

Few weeks ago I started to learn C# (through course) and next step is database.
Sadly for me, everything is shown on Visual Studio, but VS doesn't support databases on MacOS. I am using Rider - was recommended to me by MacBook user - lecturer. Unfortunately he's not available for this part of course. I am having issue with Rider and MySQL. It doesn't work. Can somebody help me with the setup? Tried to google things out, but it didn't help me.
Sending some screenshots.
btw. if I use SQLlite it works perfectly fine. Thank you so much for your help!
Tried to download Docker - don't know if I was supposed to, and some setups. But it didn't help.
edit. Well on one side I'm glad (that I'm not alone who doesn't know it) but sad, that noone can help me...

Related

building a mysql dll in QT to connect to a database

I need a step by step how to compile the SQL driver to connect to my online MySql db. The idea is to compile a DLL which I copy to the working directory so the application will be able to use QMYSQL to connect with my online db.
The online documentation ( https://dev.to/f1r361rd/how-i-build-a-mysql-plugin-for-qt5-windows-mingw32-2kim ) and forums did not helped much .
In the information i found online i noticed that most people downloaded qmysql.dll, and use that file to be able to get QMYSQL loaded.
QStringList sql_drivers = QSqlDatabase::drivers();
sql_drivers.contains("QMYSQL") -> true
But that dll is version dependent , so i hope there is a solution to get this working on all versions of QT application i make in the future.
Thank you
Steve
I followed the online documentation at https://dev.to/f1r361rd/how-i-build-a-mysql-plugin-for-qt5-windows-mingw32-2kim ) and spend many hours searching on forums and talked with other software engineers . Most people seems to get not much further then searching for a compiled dll ... After spending 10+ hours trying every post i see, i still have no clue about the basic steps, the internet is scattered with too much information which is contra productive in this case, so i really seek for a simple step by step solution, tearing this thing apart to it becomes clear how it works. No one liners please. Many people will be helped with the answer to this post ! if it take too much time to write down the solution, I’m happy to send a financial compensation. If there are simpler solutions, please let me know too:)

Telerik KendoUI Mvc SSRS Slow

So I recently installed Telerik UI for ASP.NET MVC and it seems to have totally bodged my SSDT/SSRS projects in visual studio. The projects work but can take upwards of 20-30 seconds to save making them basically unusable.
Originally we thought this issue may have been have been something to do with ReSharper however having contacted their support and done some captures they said that it looked like Telerik was the culprit.
Extract from the capture trace here...
Having uninstalled Telerik completely low and behold my save speeds go back to normal (less than a second).
Now full disclaimer - we are not using the most up to date version of Telerik (it's a slightly older version 2018.2.620) as this is the version we are licensed for which I would like to think wouldn't make a difference but putting it here just in case!
Has anyone else experienced this issue with SSRS projects? It's strange as, as far as I can tell, there is nothing in the project that should be referencing any MVC/Telerik code.
We have tried this on multiple machines and all seem to suffering the same problem although looking at Google I can't find anyone else reporting the same issue... Annoyingly I can't post of the telerik forums directly as they only let you do that if you have an active account...
If anyone can assist I would really appreciate it!

PHPStorm 7 error with Live Edit

1)I just downloaded php storm EAP 7 and try implementing live Edit but it doesn't work. The error produced is " incompatible with this installation".
This is going to be kind of a no-answer:
I've had multiple issues with Live Edit and finally got the suggestion from the JetBrains support that I should turn it off because it interferes with the normal working of other componets. That being said, this was a few months ago, maybe the situation changed in the mean time.
I would suggest contacting their support, even if you don't have an (active) subscription, they tend to be very fast and helpful.
It works with the most current EAP Build.

libgdx unable to find com/esotericsoftware/tablelayout.gwt.xml on your classpath

I just setup my libgdx game with the gdx-setup-ui.jar today and I have everything setup in eclipse. I thought I would run each application (i.e. desktop, android, and html) to make sure everything is working ok. Unfortunately, I ran into problems with my html application. I am getting this error with a tablelayout.gwt.xml:
I have no idea how to solve this problem. Is there a fix for this problem and if anybody knows it could they share? Thanks!
EDIT
So even though i fixed the problem by restarting my project, my problem has come back. This time, however, I am too far along in development to just restart my project, or re-setup my project.
I deleted my old project and created it again using the gdx-setup-ui.jar application and made sure that all the necessary libraries were included.

Combining Cocoa and MySQL

i was searching SO for help on this, but i can't seem to find a concrete solution.
Is, or isn't it possible to connect to a mysql database with Cocoa?
Because i'm working on a program that i'd like to extend to a database, but i sure as hell don't know how!
I mean, that cocoa-mysql package is heavily outdated, and i dont even know what a C wrapper is!
Can someone please tell me how to do this, or atleast burst my bubble to tell me that it can't be done?
Thanks!
Since Core Data came out, I'm not surprised that other DB-wrapping Cocoa libraries are falling out of date. If you don't need to specifically wrap a MySQL DB, then I'd look at Core Data and its SQLite backend. It's available for both Mac OS and iPhone platforms.