Visual InterDev

getConnectString Method

See Also      Applies To

Returns a text string or object that determines the data connection.

Syntax

object.getConnectString()

Parameters

object

A Recordset script object.

Example

Sub myRS_onbeforeopen()
dim sConnString
   sConnString = myRS.getConnectString()
   Msgbox "Here is the connection string that was used to open this recordset: " & sConnString
End Sub