AwDao.GetSystemFields Method 

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

Home | Software & Source Code Library | About Us | Information Based on Law | Terms of Service
Software List | Product Price List | How to Buy | Order Form | FAQ | Site Map
Copyright (C) 2001-2012 Asterworld. All Rights Reserved.