CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Dec 2008
    Posts
    87

    Starting Database Programming

    I need to start learning database programming with C# (creating databases as well as modifying existing ones) and VS tools. I'm not entirely sure however which database language and tools to start with. I was thinking of using MySQL because it's free and fairly popular so there will be a lot of tutorials. However isn't it hard to deploy with? Any suggestions will be a great help

  2. #2
    Join Date
    Jul 2006
    Posts
    297

    Re: Starting Database Programming

    My personal preference is using some version of MSSQL. You can obtain a free copy of SQL Server Express Edition from Microsoft's website and you can even include it in your deployments as a prerequisite and it will be installed automatically on the client's machine if needed.

    Anyways, Visual Studio and C# are from Microsoft so is MSSQL using the two together will alleviate some problems you may run into using MySQL in conjunction with Visual Studio and C#. By default there is no support in C# for MySQL you'd need to download the .dll's from MySQL's website and include them in your project. Then, you'd need to write a wrapper class that will, for lack of a better term, plug-in to the rest of the code. Theres nothing wrong with using MySQL but its a lot less work to use MSSQL.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured