I would like to know if I can use the database created on phpmyadmin on visual studios c#? In the past, I have only used it for php projects. Now that I am making a c# project using Visual studios, would I be able to connect my database created on phpmyadmin on visual studios?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can use a MySQL database using the MySql.Data library. There is a full example on Code Project. |
|||
|
|
|
Yes. There are libraries for MySQL (such as MySql.Data) in C#. The fact that it was created by PHPMyAdmin has no effect on how you access it in a C# application. |
|||
|
|

MySqldatabase, and yes, you can. – Dave Zych Nov 15 '12 at 23:44