Library tutorials & articles
Using MySQL with .NET
- Introduction
- Connecting to the Database
Introduction
Ever wanted to combine the power and ease of the .NET platform with a free database like MySQL? Well thanks to ODBC database functions in ADO.NET it's really easy. All you need is the latest drivers for ADO.NET and MySQL installed. For this tutorial we will use C# to build a simple application for reading a table built in MySQL. This assumes at least basic knowledge of C# and .NET.
Creating the Database
To start the project, we will need to create a mysql database to work with. Create a new database called mysqlsample and create a new table like this:
mysql> create database mysqlsample;
mysql> use mysqlsample;
mysql> create table tutorials (id int not null auto_increment, title varchar(80) not null, link varchar(255) not null, primary key(id));
mysql> insert into tutorials values (1, ‘DOT.NET For Dummies', ‘http://www.dotnetfordummies.com');
mysql> insert into tutorials values (2, ‘XML For Idiots', ‘http://www.xmlforidiots.com');
mysql> insert into tutorials values (3, ‘Windows For Wimps', ‘http://www.windowsforwimps.com');
Related articles
Related discussion
-
LINQ in Action
by naser1 (0 replies)
-
Help me how to fast export data from datagridview to Excel with many format cell ?
by anatha1 (9 replies)
-
High-Performance .NET Application Development & Architecture
by Manjot Bawa (0 replies)
-
Help me please to know about compression method for .wacv files
by rajitharavindran (0 replies)
-
Is it possible to write queries in C# to connect to both the database Sql Server and MySql?
by pradeepfusion (0 replies)
Related podcasts
-
Object-Oriented Programming in Ruby
In this episode, I talk with Scott Bellware about object-oriented programming in Ruby, and Ruby's object model. This is taken from a private conversation, and the audio quality suffers at times. Much thanks to Scott for allowing this to be released.This episode of the Alt.NET Podcast is bro...
Events coming up
-
Oct
23
MySQL Northern Europe Customer Conference
London, United Kingdom
Whether you are a developer, a solution architect, a project manager, a DBA or a senior executive, the MySQL European Customer Conferences are designed for you. A day packed with technical sessions, customer experiences and all round MySQL goodnes...
http://dev.mysql.com/downloads/connector/net/5.0.html you get the connector along with a basic documnetion that will help you with Connecting to the Mysql database.
being a Mysql fan will also tell people who do not want to have transaction support that mysql with a myisam type table is blazingly fast.
regards
David Xavier
This thread is for discussions of Using MySQL with .NET.