Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6929373
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T11:18:33+00:00 2026-05-27T11:18:33+00:00

So I have been doing some PHP and Python/Apache/MySQL (WAMP!) development for a while

  • 0

So I have been doing some PHP and Python/Apache/MySQL (WAMP!) development for a while now, and I’m trying to branch out into C#, ASP.Net, IIS and MSSQL.

Anyway, I’m trying to figure out how the database connection works and how I add and edit tables in Visual Web Developer. I created the database in database explorer, but I don’t see a way to add tables, or look at the columns set up. In addition, I have no real understanding of how the aspx page (I’m using Web Forms, but I’m willing to switch to MVC if it works better).

Basically my question is – how do I connect with and modify the database in Visual Studios/Visual Web Developer? In PHP it was all code, but here it seems to be mostly a visual (shocking, considering the name) method.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T11:18:33+00:00Added an answer on May 27, 2026 at 11:18 am

    to connect to sql server you still need a connection string, for example any of those you can find here depending on your server setup: http://connectionstrings.com/sql-server-2008

    then you do not really need to use visual DragDroppable components, from the code you create a connection and a command object and for example you do the following, this is called ADO.NET

    using (var conn = new SqlConnection(strconString))
    {
        string cmdstr = "SELECT ID, FirstName, LastName FROM dbo.Employee"
    
        using (var cmdselect = new SqlCommand(cmdstr, conn))
        {
            conn.Open();
            using(var dtr = cmdselect.ExecuteReader())
            {
               while (rdr.Read())
               {
                  // here you use the values from the DataReader...
               }
            }
        }
    }
    

    this just to start, search about ADO.NET or SqlCommand here in StackOverflow, plenty of samples…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been doing some research on test driven development and find it pretty
I have been looking in to doing some test driven development for one of
I have been doing active development in C# for several years now. I primarily
I've been doing some web development work in PHP recently which has led me
So I'm doing some experimenting with PHP/Apache. Let's say I have this code. <div>DIV
I've been coding php for a while now and have a pretty firm grip
Lately i been doing some work on my MySql class in php and as
We have been doing some research into physically isolating the secure and non-secure sections
I've been doing some Web-Projects lately that rely on heavy Data-Binding and have been
I would like to compare two dates in javascript. I have been doing some

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.