Gets or sets the string used to open a database.

Namespace:  C1.C1Report
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)]
[BrowsableAttribute(false)]
public string ConnectionString { get; set; }
Visual Basic
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)> _
<BrowsableAttribute(False)> _
Public Property ConnectionString As String
	Get
	Set

Remarks

The ConnectionString is used by the DataSource class to load the report data.

The DataSource class uses an OleDbConnection object to retrieve the data, so the syntax for the ConnectionString is the one used OleDb connection strings. For details on the syntax, see the documentation for the OleDbConnection class.

The ConnectionString specifies the database that contains the report data. The RecordSource property specifies which table, stored procedure, or Sql command to use for retrieving the data.

If you want to use a different type of connection (e.g. a SqlConnection, or if your application already has the data available in a DataTable object, you can assign the data directly to the Recordset property.

See Also