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

  • SEARCH
  • Home
  • 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 6991697
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T19:32:15+00:00 2026-05-27T19:32:15+00:00

Can anyone please guide me on how to connect Visual Basic 2008 to an

  • 0

Can anyone please guide me on how to connect Visual Basic 2008 to an SQL server 2008 database? I’m confused on what is the best practice when it comes to this.

  • 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-27T19:32:16+00:00Added an answer on May 27, 2026 at 7:32 pm

    There are many many ways. However this is the one of the simplest just using the .net libraries.

    1. you connect to the DB using the server, db and user names and password
    2. you issue a sql command
    3. you collect the results in a sqldatareader
    4. you iterate over the results in the reader
    5. you clean up the the resources.

    From: How to ADO.NET SqlDataReader

       Imports System.Data.SqlClient
        Public Class Form1
            Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
                Dim connectionString As String
                Dim sqlCnn As SqlConnection
                Dim sqlCmd As SqlCommand
                Dim sql As String
                ' Use this first connection string if using windows auth 
                ' connectionString = "Data Source=ServerName;Initial Catalog=DatabaseName;Integrated Security=True"
                connectionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password"
                sql = "Your SQL Statement Here ,  like Select * from product"
    
                sqlCnn = New SqlConnection(connectionString)
                Try
                    sqlCnn.Open()
                    sqlCmd = New SqlCommand(sql, sqlCnn)
                    Dim sqlReader As SqlDataReader = sqlCmd.ExecuteReader()
                    While sqlReader.Read()
                        MsgBox(sqlReader.Item(0) & "  -  " & sqlReader.Item(1) & "  -  " & sqlReader.Item(2))
                    End While
                    sqlReader.Close()
                    sqlCmd.Dispose()
                    sqlCnn.Close()
                Catch ex As Exception
                    MsgBox("Can not open connection ! ")
                End Try
            End Sub
        End Class
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can anyone please recommend the best and easiest way to include multiple Javascript files
Can anyone please guide me on how to setOnClickListener for the TextViews that are
Can anyone please guide me on how to use XElement in Silverlight (C#) to
Can anyone please guide me how to install dnn in local system. How to
can anyone please guide me on How to insert a DATETIME filed from iphone
Can anyone please guide how can I add a javascript block to page header
Can anyone please guide me as to how I can configure log4j to log
Can anyone please give me a tip or guide on how to create a
Can anyone please guide me on how to start a Android ARM v7 emulator
Can anyone please guide me the purpose of using ANTLR dlls in a ASP.Net,

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.