Gets system fields of a table.
[Visual Basic]
Public Function GetSystemFields( _
ByVal targetFileName As String, _
ByVal targetTableName As String _
) As String()
[C#]
public string[] GetSystemFields(
string targetFileName,
string targetTableName
);
Parameters
-
targetFileName
- Filename.
-
targetTableName
- Table name.
Return Value
Returns an array of system field if successful; otherwise null.
Example
How to get the system field name of the table xxxtbl of the database file C:\Data.mdb.
Dim fields As String() = dao.GetSystemFields("C:\Data.mdb", "xxxtbl")
string[] fields = dao.GetSystemFields("C:\\Data.mdb", "xxxtbl");
See Also
AwDao Class | Asterworld.Data Namespace