Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My question is about Express edition vs Professional, should I be able to use the database connections with MySql .net connector in the express edition? Or does it only work in the Professional edition? I'm using express and I've tried the latest .net connector and it still doesn't show up in the database connections list.

share|improve this question
(for later references) Duplicate: stackoverflow.com/questions/4461416/…. So no, unfortunately you can't use the Express edition with the .NET connector, this is still true as of today. – RedGlyph Oct 3 '11 at 8:38

2 Answers

MySQL Connector/NET will not work in the Express Version of Microsoft Studio due to limitations within the express products. In order to use Data sources based in server architecture Non-"Express" versions must be used. Connectivity to even Microsoft's Own MSSQL will not work, aside from local limited "Compact" or "Express" versions.

share|improve this answer

In Express Editions you can add the dll conector to the project references:

add references

mysql.data.dll

then use it like a class:

Imports MySql.Data.MySqlClient

Public Class Form1

Dim mycon As New MySqlConnection

Dim myadp As New MySqlDataAdapter

search in mysql documentation for more info.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.