Table of Contents

Class AccessConnectionMeta

Namespace
Dynamicweb.DataManagement
Assembly
Dynamicweb.DataManagement.dll

Metainformation for Access connection.

public class AccessConnectionMeta : DMConnectionMeta
Inheritance
AccessConnectionMeta
Inherited Members

Constructors

AccessConnectionMeta(AccessConnection)

Constructs new object using Connection

public AccessConnectionMeta(AccessConnection connection)

Parameters

connection AccessConnection

AccessConnetion object

Methods

AddFieldsToTable(string, FieldCollection)

Adds fields to table

public override bool AddFieldsToTable(string tableName, FieldCollection fields)

Parameters

tableName string

Name of table

fields FieldCollection

Collection of fields

Returns

bool

True if fields were successfully created

CreateTable(string, FieldCollection)

Creates table

public override bool CreateTable(string name, FieldCollection fields)

Parameters

name string

Table name

fields FieldCollection

Collection of fields

Returns

bool

True if table was successfully created

GetTableFields(string)

Get list of table fields of this connection.

public override FieldCollection GetTableFields(string tableName)

Parameters

tableName string

table name

Returns

FieldCollection

list of fields or null

GetTables()

Get list of tables of this connection.

protected override TableCollection GetTables()

Returns

TableCollection

list of tables

To top