ConnectionString (clsDataSource)
[!참고]
이 기능은 다음 버전의 Microsoft SQL Server에서 제거됩니다. 새 개발 작업에서는 이 기능을 사용하지 말고, 현재 이 기능을 사용하는 응용 프로그램은 가능한 한 빨리 수정하십시오.
The ConnectionString property of an object of ClassType clsDataSource returns a string containing the OLE DB initialization parameters for the source database.
Data Type
String
Access
Read/write
주의
For more information about valid connection string parameters and format, see the OLE DB documentation or the source database documentation.
예
Use the following code to set the ConnectionString property for a clsDataSource object.
'Assume an object (dsoDatasource) of ClassType clsDataSource exists
'Set the OleDB connection string.
'The connection string is used to establish the connection
'to the relational database that contains the dimension and
'fact tables. We will use OleDB provider for ODBC drivers
dsoDatasource.ConnectionString = _
"Provider=MSDASQL.1;Data Source=FoodMart;Connect Timeout=15"
'Save the datasource definition in the meta data repository
dsoDatasource.Update