CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 7 of 7
  1. #1
    Join Date
    Dec 2002
    Location
    Colroado
    Posts
    24

    C#, .NET framework and SQL Server

    Hello,

    I am looking to buy the bare bones Visual C# personal edition that runs for around $106.00. Does Visual C# come with the .NET framework.


    Also, if I want to access a SQL Server table from .NET, how can I do this without having to buy MS SQL server. I just can't afford to go out and buy SQL Server.

    Thanks for the help.

  2. #2
    Join Date
    May 2000
    Location
    KY, USA
    Posts
    18,652

    Re: C#, .NET framework and SQL Server

    Originally posted by HappyGoLucky
    I am looking to buy the bare bones Visual C# personal edition that runs for around $106.00. Does Visual C# come with the .NET framework.
    Well...I assume you mean the standard edition since I am not aware of a personal edition...in this case the answer is yes...

  3. #3
    Join Date
    Dec 2002
    Location
    Colroado
    Posts
    24

    Please answer about SQL Server.

    I want to buy Visual C#.net and I would like to be able to work with SQL Server tables. Do I have to buy SQL server in order to do this? If not what are other databases that I could use equally well?

    Thanks in advance Amy

  4. #4
    Join Date
    Nov 2002
    Location
    Tampa, FL
    Posts
    50
    You can use MSDE for free. It's the basically the same except it's for small websites, and desktop applications.


    [Andreas]: Fixed link...
    Last edited by Andreas Masur; September 9th, 2003 at 04:08 PM.

  5. #5
    Join Date
    Aug 2002
    Location
    Washington, USA
    Posts
    104
    The pages joan_fl linked to don't explicitly state it but it looks like MSDE might even come with Visual C#.NET. (It certainly comes with Visual Studio.NET - according to the site.)

    Of course, you still want to download the latest update...
    - Shawn
    MCP, VB6: Desktop Apps
    [ C# | VB | .NET | Java | VC++ | Perl | PHP | Javascript ]
    Unless otherwise stated, all sample code provided is UNTESTED.
    http://www.codemastershawn.com

  6. #6
    Join Date
    Aug 2002
    Location
    Washington, USA
    Posts
    104

    Re: C#, .NET framework and SQL Server

    how can I do this without having to buy MS SQL server.
    You don't have to own SQL Server, just have access to it. For example, if you are doing your coding at work, there might be a SQL Server you can get permission to connect to.

    Also, it is possible to (fairly easily) write code for just about any database server out there: MySQL (which is what I'm using at the moment), Interbase (Borland), Access, etc.

    If you're just starting out, it's probably best to use MSDE though - you'll have fewer configuration issues to have to wrestle with and you'll find a lot more relevent sample code and tutorials.
    - Shawn
    MCP, VB6: Desktop Apps
    [ C# | VB | .NET | Java | VC++ | Perl | PHP | Javascript ]
    Unless otherwise stated, all sample code provided is UNTESTED.
    http://www.codemastershawn.com

  7. #7
    Join Date
    May 2000
    Location
    KY, USA
    Posts
    18,652
    Originally posted by ShawnDev
    The pages joan_fl linked to don't explicitly state it but it looks like MSDE might even come with Visual C#.NET.
    Well...it is part of the .NET framework SDK, however, you need to eplicitely select it for installation (it is not done by default)...

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