Fill dataset with the results from Store Procedure : Sql Server Store Procedure « Database ADO.net « VB.Net

VB.Net
1. 2D
2. Application
3. Class
4. Data Structure
5. Database ADO.net
6. Development
7. Event
8. File Directory
9. Generics
10. GUI
11. Language Basics
12. Network Remote
13. Thread
14. Windows System
15. XML
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net Tutorial
VB.Net » Database ADO.net » Sql Server Store ProcedureScreenshots 
Fill dataset with the results from Store Procedure

Imports System
Imports System.Data
Imports System.Data.SqlClient
Imports System.Windows.Forms

Module Module1
    Sub Main()

        ' Create a connection object
        Dim dbConn As New SqlConnection_
                       "server=(local); database=pubs; integrated security=true")
        Dim cmd As New SqlCommand()

        cmd.CommandText = "spRetrieveAuthor"
        cmd.CommandType = System.Data.CommandType.StoredProcedure
        cmd.Connection = dbConn
        cmd.Parameters.Add(New SqlParameter("@au_id", SqlDbType.Char, 11"au_id"))

        Dim da As New SqlDataAdapter(cmd)
        Dim ds As New DataSet("Author")
        da.SelectCommand.Parameters(0).Value = "172-32-1176"
        da.Fill(ds)

        If Not ds Is Nothing Then
            MessageBox.Show("Hi, author: " & _
                                   ds.Tables(0).Rows(0)("au_lname").ToString())
        End If


    End Sub
End Module
           
       
Related examples in the same category
1. Call store Procedure and pass parameters
2. Call Store Procedure in SQL Server
w_ww__.___j__a_v___a___2___s.___c_o___m__ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.