Initializes a new instance of the class.
[Visual Basic]
Public Sub New( _
ByVal srcFileName As String, _
ByVal srcTableName As String _
)
[C#]
public AwDbExData(
string srcFileName,
string srcTableName
);
Parameters
-
srcFileName
- Filename of data source.
-
srcTableName
- Update target table name.
Example
How to create a new instance of the class.
Dim dbExData As New AwDbExData("C:\Data.mdb", "xxxtbl")
AwDbExData dbExData = new AwDbExData("C:\\Data.mdb", "xxxtbl");
See Also
AwDbExData Class | Asterworld.Data Namespace