database program question

  • Thread starter Thread starter Kid
  • Start date Start date
K

Kid

Hi

Can C# write and read MySQL , is there some sample ?

Is there some good API , Should I install some package ?

Thank you .
 
Kid said:
Can C# write and read MySQL , is there some sample ?

Is there some good API , Should I install some package ?

Download and install the MySQL Connector for .NET.

It follows standard ADO.NET conventions, so at least
when starting the only difference from other databases
are that class names start with MySql.

When you get a little further you will need to use
?xx instead of @xx for parameter names etc..

Arne
 
Back
Top