I have a C# application that needs to be connected to an online MySQL database. The problem is, my domain DOES NOT have a remote database connection, so I cannot connect my c# application to the database.
I've already tried using a "bridge" PHP file wherein I would connect the c# codes to it using "WebClient" and then do the SQL logic in the PHP file, but it's still no use. I tried using other ways for a solution - API, HttpClient, etc - all others that I can see on the internet, but still, no use.
Is it possible to connect sa c# application to an online MySQL Database without using a remote database? I am coding my C# in Visual Studio Express and I have my database in a MySQL CPanel
Advanced Thank you for the solutions you will provide!