Connections.Add(String) Metode
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
ConnectionManager Menambahkan objek dari tipe koneksi yang ditentukan ke Connections koleksi.
public:
Microsoft::SqlServer::Dts::Runtime::ConnectionManager ^ Add(System::String ^ connectionType);
public Microsoft.SqlServer.Dts.Runtime.ConnectionManager Add (string connectionType);
member this.Add : string -> Microsoft.SqlServer.Dts.Runtime.ConnectionManager
Public Function Add (connectionType As String) As ConnectionManager
Parameter
- connectionType
- String
Parameter ini menentukan jenis koneksi. Misalnya, string "FILE" menentukan manajer koneksi untuk file.
Mengembalikan
Objek baru ConnectionManager yang ditambahkan ke Connections koleksi.
Contoh
Sampel kode berikut menambahkan pengelola koneksi ADO.NET ke paket yang berisi dua koneksi yang ada.
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SqlServer.Dts.Runtime;
namespace ConnMgr_GetEnum_Current
{
class Program
{
static void Main(string[] args)
{
// The package is one of the SSIS Samples.
string mySample = @"C:\Program Files\Microsoft SQL Server\100\Samples\Integration Services\Package Samples\CalculatedColumns Sample\CalculatedColumns\CalculatedColumns.dtsx";
// Create an application and load the sample.
Application app = new Application();
Package pkg = app.LoadPackage(mySample, null);
// Get the Connections collection from the package.
Connections conns = pkg.Connections;
// Count the number of connections in the package.
int myConns = conns.Count;
Console.WriteLine("The number of connections is: {0}", myConns);
//Add a new connection manager to the collection.
conns.Add("ADO.NET");
myConns = conns.Count;
Console.WriteLine("The number of connections now is: {0}", myConns);
}
}
}
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports Microsoft.SqlServer.Dts.Runtime
Namespace ConnMgr_GetEnum_Current
Class Program
Shared Sub Main(ByVal args() As String)
' The package is one of the SSIS Samples.
Dim mySample As String = "C:\Program Files\Microsoft SQL Server\100\Samples\Integration Services\Package Samples\CalculatedColumns Sample\CalculatedColumns\CalculatedColumns.dtsx"
' Create an application and load the sample.
Dim app As Application = New Application()
Dim pkg As Package = app.LoadPackage(mySample,Nothing)
' Get the Connections collection from the package.
Dim conns As Connections = pkg.Connections
' Count the number of connections in the package.
Dim myConns As Integer = conns.Count
Console.WriteLine("The number of connections is: {0}", myConns)
'Add a new connection manager to the collection.
conns.Add("ADO.NET")
myConns = conns.Count
Console.WriteLine("The number of connections now is: {0}", myConns)
End Sub
End Class
End Namespace
Contoh Output:
The number of connections is: 2
The number of connections now is: 3
Keterangan
Nilai yang connectionType
digunakan untuk parameter dalam metode ini adalah nilai yang ditampilkan di properti ConnectionManagerType di Perancang. SQL Server (SSIS) mencakup beberapa jenis koneksi umum, termasuk jenis manajer koneksi berikut:
ADO untuk mengakses objek Microsoft ActiveX Data Objects (ADO)
ADO.NET untuk mengakses objek ADO.NET
FILE untuk mengakses file
FLATFILE untuk mengakses data dalam file datar
HTTP untuk mengakses server Web
OLEDB untuk mengakses sumber data relasional menggunakan OLE DB
ODBC untuk mengakses database menggunakan ODBC
Instrumentasi Manajemen Windows (WMI) untuk mengakses server dan menentukan cakupan manajemen di server
FTP untuk mengakses server untuk mengirim dan menerima file
MSOLAP100 untuk mengakses instans Microsoft SQL Server Analysis Services atau proyek Analysis Services
Untuk informasi selengkapnya tentang string jenis koneksi yang valid, lihat Koneksi Integration Services (SSIS).