Use command parameter for Odbc connection : ODBC « Database ADO.net « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Development
8.Event
9.File Directory
10.Generics
11.GUI
12.Language Basics
13.LINQ
14.Network Remote
15.Security
16.Thread
17.Windows Presentation Foundation
18.Windows System
19.XML
20.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Database ADO.net » ODBCScreenshots 
Use command parameter for Odbc connection

Imports System
Imports System.Data
Imports System.Data.Odbc

Module CommandOdbcExample

   Sub Main()
      Dim thisConnection As New OdbcConnection _
         ("dsn=MyOdbc")

      Dim nonqueryCommand As OdbcCommand = thisConnection.CreateCommand()

      Try
         thisConnection.Open()
         Console.WriteLine("Connection Opened")

         nonqueryCommand.CommandText = "CREATE TABLE MyTable " & _
            "(MyName VARCHAR (30), MyNumber integer)"
         Console.WriteLine("Executing {0}", _
            nonqueryCommand.CommandText)
         Console.WriteLine("Number of rows affected : {0}", _
            nonqueryCommand.ExecuteNonQuery())

         nonqueryCommand.CommandText = "INSERT INTO MyTable VALUES (?, ?)"

         nonqueryCommand.Parameters.Add("@MyName", OdbcType.VarChar, 30)
         nonqueryCommand.Parameters.Add("@MyNumber", OdbcType.Int)

         ' Prepare command not supported in ODBC
         ' nonqueryCommand.Prepare()

         ' Data to be inserted
         Dim names() As String = {"Z""S""J""D"}
         For i As Integer = To 4
            nonqueryCommand.Parameters("@MyName").Value = names(i - 1)
            nonqueryCommand.Parameters("@MyNumber").Value = i
            Console.WriteLine("Executing {0}", _
               nonqueryCommand.CommandText)
            Console.WriteLine("Number of rows affected : {0}", _
               nonqueryCommand.ExecuteNonQuery())
         Next i

         nonqueryCommand.CommandText = _
            "SELECT MyName, MyNumber FROM MyTable"
         Dim thisReader As OdbcDataReader = nonqueryCommand.ExecuteReader()

         While (thisReader.Read())
            Console.WriteLine("Name and Number: {0} {1}", _
               thisReader.GetValue(0), thisReader.GetValue(1))
         End While

         thisReader.Close()

         nonqueryCommand.CommandText = "DROP TABLE MyTable"
         nonqueryCommand.ExecuteNonQuery()

      Catch ex As OdbcException
         ' Display error
         Console.WriteLine("Error: " & ex.ToString())
      Finally
         ' Close Connection
         thisConnection.Close()
         Console.WriteLine("Connection Closed")

      End Try
   End Sub
End Module


           
       
Related examples in the same category
1.Odbc Connection Demo
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.