ASP.NET連SQL7接口源代碼
來源:易賢網 閱讀:593 次 日期:2015-01-14 15:49:01
溫馨提示:易賢網小編為您整理了“ASP.NET連SQL7接口源代碼”,方便廣大網友查閱!

The following example shows what a simple ADO.NET application that connects to the Northwind database and returns a list of Categories would look like. The example writes the output to the console, or command prompt.

The following example shows what a simple ADO.NET application that connects to the Northwind database and returns a list of Categories. The example writes the output to the console, or command prompt.

SqlClient

[Visual Basic]

Imports System

Imports System.Data

Imports System.Data.SqlClient

Imports Microsoft.VisualBasic

Public Class Sample

Public Shared Sub Main()

Dim nwindConn As SqlConnection = New SqlConnection("Data Source=localhost;" & _

"User Id=sa;Password=pwd;Initial Catalog=northwind")

Dim catCMD As SqlCommand = nwindConn.CreateCommand()

catCMD.CommandText = "SELECT CategoryID, CategoryName FROM Categories"

nwindConn.Open()

Dim myReader As SqlDataReader = catCMD.ExecuteReader()

Do While myReader.Read()

Console.WriteLine(vbTab & "{0}" & vbTab & "{1}", myReader.GetInt32(0), myReader.GetString(1))

Loop

myReader.Close()

nwindConn.Close()

End Sub

End Class

[C#]

using System;

using System.Data;

using System.Data.SqlClient;

class Sample

{

public static void Main()

{

SqlConnection nwindConn = new SqlConnection("Data Source=localhost;User Id=sa;Password=pwd;Initial Catalog=northwind");

SqlCommand catCMD = nwindConn.CreateCommand();

catCMD.CommandText = "SELECT CategoryID, CategoryName FROM Categories";

nwindConn.Open();

SqlDataReader myReader = catCMD.ExecuteReader();

while (myReader.Read())

{

Console.WriteLine("t{0}t{1}", myReader.GetInt32(0), myReader.GetString(1));

}

myReader.Close();

nwindConn.Close();

}

}

OleDb

[Visual Basic]

Imports System

Imports System.Data

Imports System.Data.OleDb

Imports Microsoft.VisualBasic

Public Class Sample

Public Shared Sub Main()

Dim nwindConn As OleDbConnection = New OleDbConnection("Provider=SQLOLEDB;Data Source=localhost;" & _

"User Id=sa;Password=pwd;Initial Catalog=northwind")

Dim catCMD As OleDbCommand = nwindConn.CreateCommand()

catCMD.CommandText = "SELECT CategoryID, CategoryName FROM Categories"

nwindConn.Open()

Dim myReader As OleDbDataReader = catCMD.ExecuteReader()

Do While myReader.Read()

Console.WriteLine(vbTab & "{0}" & vbTab & "{1}", myReader.GetInt32(0), myReader.GetString(1))

Loop

myReader.Close()

nwindConn.Close()

End Sub

End Class

[C#]

using System;

using System.Data;

using System.Data.OleDb;

class Sample

{

public static void Main()

{

OleDbConnection nwindConn = new OleDbConnection("Provider=SQLOLEDB;Data Source=localhost;User Id=sa;Password=pwd;Initial Catalog=northwind");

OleDbCommand catCMD = nwindConn.CreateCommand();

catCMD.CommandText = "SELECT CategoryID, CategoryName FROM Categories";

nwindConn.Open();

OleDbDataReader myReader = catCMD.ExecuteReader();

while (myReader.Read())

{

Console.WriteLine("t{0}t{1}", myReader.GetInt32(0), myReader.GetString(1));

}

myReader.Close();

nwindConn.Close();

}

}

更多信息請查看IT技術專欄

更多信息請查看網絡編程
易賢網手機網站地址:ASP.NET連SQL7接口源代碼

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關于我們 | 聯(lián)系我們 | 人才招聘 | 網站聲明 | 網站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權所有:易賢網