SqlConnectionDataProvider

Ermöglicht das Binden an eine SqlConnection. Der Provider unterstützt automatisch einstufige Sortierungen, nach jedem Feld kann auf- oder absteigend sortiert werden.

Beispiel:

SqlConnection conn = new SqlConnection(Properties.Settings.Default.ConnectionString);

SqlConnectionDataProvider provider = new SqlConnectionDataProvider(conn);

ListLabel LL = new ListLabel();

LL.DataSource = provider;

LL.Design();

LL.Dispose();