Devart.Data
5.0.1441.0
Devart.Data, Version=5.0.1441.0, Culture=neutral, PublicKeyToken=09af7300eec23701
The namespace contains classes shared by the Devart data providers.
Specifies the cause of the connection loss.
Connection loss detected during connection.
Connection loss detected during SQL execution.
Connection loss detected during preparation command on the server.
Connection loss detected during read data.
Connection loss detected during starting transaction.
Specifies the state of the connection when error ocurred.
The connection has prepared statement in current session.
The connection already had an open DataReader.
The connection executed sql in transaction.
The connection was in none state.
Provides data for the ConnectionLost event.
Initializes a new instance of the class.
The object where the connection loss occurs.
The reason of the connection loss.
The state of connection when connection is lost.
The application behavior when connection is lost.
The number of attempts to reconnect.
The state of connection when connection is lost.
ConnectionLostEventArgs.AttemptNumber property
The reason of the connection loss.
ConnectionLostEventArgs.Cause property
The object where the connection loss occurs.
ConnectionLostEventArgs.Component property
The state of the connection when connection is lost.
ConnectionLostEventArgs.Context property
The application behavior when connection is lost.
ConnectionLostEventArgs.RetryMode property
Represents the method that will handle the Error ConnectionLost of .
ConnectionLostEventHandler delegate
The source of the event.
The object that contains the event data.
Represents a SQL statement to execute against a data source.
Starts an asynchronous invocation of an method.
DbCommandBase.BeginExecuteNonQuery method
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of an method.
Starts an asynchronous invocation of an method with information for callback function.
DbCommandBase.BeginExecuteNonQuery method
The delegate to call when the asynchronous invoke is complete. If callback is a null reference (Nothing in Visual Basic), the delegate is not called.
State information that is passed on to the delegate.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of an method.
DbCommandBase.BeginExecuteReader method
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of an method.
Starts an asynchronous invocation of an method with information for callback function.
DbCommandBase.BeginExecuteReader method
The delegate to call when the asynchronous invoke is complete. If callback is a null reference (Nothing in Visual Basic), the delegate is not called.
State information that is passed on to the delegate.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of an method with information for callback function.
DbCommandBase.BeginExecuteReader method
The delegate to call when the asynchronous invoke is complete. If callback is a null reference (Nothing in Visual Basic), the delegate is not called.
State information that is passed on to the delegate.
One of the values.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of an method.
DbCommandBase.BeginExecuteReader method
One of the values.
An interface that represents the asynchronous operation started by calling this method.
Attempts to cancel the execution of a query currently running.
DbCommandBase.Cancel method
Gets or sets the SQL statement to execute against a data source.
DbCommandBase.CommandText property
The SQL statement to execute. The default value is an empty string ("").
Gets or sets the wait time before terminating an attempt to execute a command and generating an error. Note that it is the time to wait for any server reply since the command was sent to a server, and it doesn't include the time necessary to fetch data if the command selects some data.
DbCommandBase.CommandTimeout property
The time (in seconds) to wait for the command to execute. The default value is 30 seconds.
Gets or sets a value indicating how the property is to be interpreted.
DbCommandBase.CommandType property
One of the values. The default value is .
Gets or sets the default timeout for all commands.
DbCommandBase.DefaultCommandTimeout field
The default timeout for all commands.
Gets or sets a value indicating whether the command object should be visible in a customized interface control.
DbCommandBase.DesignTimeVisible property
, if the command object should be visible in a control; otherwise . The default value is .
Ends an asynchronous invocation of the method.
DbCommandBase.EndExecuteNonQuery method
The returned by .
For UPDATE, INSERT, and DELETE statements, the return value is the number of rows affected by the command. For all other types of statements, the return value is -1.
Ends an asynchronous invocation of the method.
DbCommandBase.EndExecuteReader method
The returned by .
A object.
Executes SQL statement against the and returns the number of rows affected.
DbCommandBase.ExecuteNonQuery method
For UPDATE, INSERT, and DELETE statements, the return value is the number of rows affected by the command. For all other types of statements, the return value is -1.
Returns a specific subset of rows when paging through the results of a query.
DbCommandBase.ExecutePageReader method
One of the values.
Zero-based ordinal of row that result set starts with.
Quantity of rows in result set.
A object.
Executes the query, and returns the first column of the first row in the result set returned by the query. Extra columns or rows are ignored.
DbCommandBase.ExecuteScalar method
The first column of the first row in the result set.
Returns count of records in the resultset.
DbCommandBase.GetRecordCount method
The count of records.
Gets or sets the name of component that will be displayed in dbMonitor application.
DbCommandBase.Name property
The name of the component.
Gets or sets a form or other container that the instance belongs to.
DbCommandBase.Owner property
A form or other container that the object belongs to.
Gets or sets a value indicating whether the command object regenerates parameter objects if text of the command is changed.
DbCommandBase.ParameterCheck property
Value indicating whether the command object regenerates parameter objects if text of the command is changed. The default value is .
Creates a prepared (or compiled) version of the command on the server.
DbCommandBase.Prepare method
Resets to its default value, which is taken from .
DbCommandBase.ResetCommandTimeout method
Gets or sets how command results are applied to the when used by the method of the .
DbCommandBase.UpdatedRowSource property
One of the values.
Allows to automatically generate single-table commands used to reconcile changes made to a with the associated data source.
Gets the automatically generated SQL statement required to perform deletions when an application calls on the .
DbCommandBuilder.GetDeleteCommand method
A with containing SQL statement to be executed.
Gets the automatically generated SQL statement required to perform deletions.
Gets the automatically generated SQL statement required to perform deletions when an application calls on the .
DbCommandBuilder.GetDeleteCommand method
Determines whether dotConnect uses columns metadata to make up parameters' names. If , the names are composed using colon and name of appropriate column; otherwise the names look like :p1, :p2 etc.
A with containing SQL statement to be executed.
Gets the automatically generated SQL statement required to perform inserts when an application calls on the .
DbCommandBuilder.GetInsertCommand method
A with containing SQL statement to be executed.
Gets the automatically generated SQL statement required to perform inserts.
Gets the automatically generated SQL statement required to perform inserts when an application calls on the .
DbCommandBuilder.GetInsertCommand method
Determines whether dotConnect uses columns metadata to make up parameters' names. If , the names are composed using colon and name of appropriate column; otherwise the names look like :p1, :p2 etc.
A with containing SQL statement to be executed.
Gets the automatically generated SQL statement required to perform inserts for the specified fields when an application calls on the .
DbCommandBuilder.GetInsertCommand method
The array of string containing list of the field names.
Determines whether dotConnect uses columns metadata to make up parameters' names. If , the names are composed using colon and name of appropriate column; otherwise the names look like :p1, :p2 etc.
A with containing SQL statement to be executed.
Gets the automatically generated SQL statement required to refresh values from the data source.
DbCommandBuilder.GetRefreshCommand method
A with containing SQL statement to be executed.
Gets the automatically generated SQL statement required to refresh values from the data source.
Gets the automatically generated SQL statement required to refresh values from the data source.
DbCommandBuilder.GetRefreshCommand method
Determines whether dotConnect uses columns metadata to make up parameters' names. If , the names are composed using colon and name of appropriate column; otherwise the names look like :p1, :p2 etc.
A with containing SQL statement to be executed.
Gets the automatically generated SQL statement required to refresh values from the data source.
DbCommandBuilder.GetRefreshCommand method
The array of string containing list of the field names.
Determines whether dotConnect uses columns metadata to make up parameters' names. If , the names are composed using colon and name of appropriate column; otherwise the names look like :p1, :p2 etc.
A with containing SQL statement to be executed.
Gets the automatically generated SQL statement required to perform updates on the data source when an application calls on the .
DbCommandBuilder.GetUpdateCommand method
A with containing SQL statement to be executed.
Gets the automatically generated SQL statement required to perform updates on the data source.
Gets the automatically generated SQL statement required to perform updates when an application calls on the .
DbCommandBuilder.GetUpdateCommand method
Determines whether dotConnect uses columns metadata to make up parameters' names. If , the names are composed using colon and name of appropriate column; otherwise the names look like :p1, :p2 etc.
A with containing SQL statement to be executed.
Gets the automatically generated SQL statement required to perform updates for the specified fields when an application calls on the .
DbCommandBuilder.GetUpdateCommand method
The array of string containing list of the field names.
Determines whether dotConnect uses columns metadata to make up parameters' names. If , the names are composed using colon and name of appropriate column; otherwise the names look like :p1, :p2 etc.
A with containing SQL statement to be executed.
Returns the string passed as the parameter enclosed in quotes.
DbCommandBuilder.QuoteIdentifier method
Identifier to be placed inside the quotes.
The identifier enclosed in quotes.
Gets or sets the beginning character or characters to use when specifying data source objects (for example, tables or columns) whose names contain characters such as spaces or reserved tokens.
DbCommandBuilder.QuotePrefix property
Gets or sets the ending character or characters to use when specifying data source objects (for example, tables or columns) whose names contain characters such as spaces or reserved tokens.
DbCommandBuilder.QuoteSuffix property
Gets or sets the list of the fields, separated with ';' (semicolon), that should be updated with the update commands in the . If the field is not included in the list, it will not be updated.
DbCommandBuilder.UpdatingFields property
The list of the fields, separated with ';' (semicolon), that should be updated with the update commands in the .
Allows to automatically generate single-table commands used to reconcile changes made to a with the associated data source.
Gets the automatically generated SQL statement required to refresh values from the data source.
DbCommandBuilderBase.GetRefreshCommand method
A with containing SQL statement to be executed.
Gets the automatically generated SQL statement required to refresh values from the data source.
Gets the automatically generated SQL statement required to refresh values from the data source.
DbCommandBuilderBase.GetRefreshCommand method
Determines whether dotConnect uses columns metadata to make up parameters' names. If , the names are composed using colon and name of appropriate column; otherwise the names look like :p1, :p2 etc.
A with containing SQL statement to be executed.
Gets the automatically generated SQL statement required to refresh values from the data source.
DbCommandBuilderBase.GetRefreshCommand method
The array of string containing list of the field names.
Determines whether dotConnect uses columns metadata to make up parameters' names. If , the names are composed using colon and name of appropriate column; otherwise the names look like :p1, :p2 etc.
A with containing SQL statement to be executed.
Gets or sets string containing list of key field names separated by semicolon. They are used to generate update commands.
DbCommandBuilderBase.KeyFields property
The string containing list of key field names separated by semicolon.
Gets or sets whether the command builder quotes all the names of data source objects.
DbCommandBuilderBase.Quoted property
if the command builder will quote all the names of data source objects; otherwise, . The default value is .
Gets or sets a value that indicates whether and how the should retrieve field values adjusted by server after an update.
DbCommandBuilderBase.RefreshMode property
One of the values.
Refreshes the data source schema information used to generate INSERT, UPDATE, or DELETE statements.
DbCommandBuilderBase.RefreshSchema method
Gets or sets list of fields whose values should be retrieved after a DML statement execution.
DbCommandBuilderBase.RefreshingFields property
The string containing list of field names separated by semicolon.
Gets or sets table name to generate update statements for.
DbCommandBuilderBase.UpdatingTable property
The name of the table.
Specifies whether the catalog identifier is included in data source object names.
DbCommandBuilderBase.UseCatalog property
if the catalog identifier is included in data source object names; otherwise, . The default value is .
Specifies whether the schema identifier is included in data source object names.
DbCommandBuilderBase.UseSchema property
if the schema identifier is included in data source object names; otherwise, . The default value is .
Generates automatically connection strings used to connect to a data source.
Initializes a new instance of the class.
Compares the specified connection information in this object with the specified connection information in the supplied object.
DbConnectionStringBuilder.EquivalentTo method
The to be compared with this object.
If this parameter is , only the following properties are compared:
If this parameter is , all the properties are compared.
if the specified connection information in both of the objects is equal; otherwise, .
Compares the specified connection information in this object with the specified connection information in the supplied object.
Specifies a data source-specific command that should be executed immediately after establishing the connection.
DbConnectionStringBuilder.InitializationCommand property
A data source-specific command that should be executed immediately after establishing the connection.
Gets or sets the value associated with the specified key.
DbConnectionStringBuilder.Item property
The key of the item to get or set.
Value associated with the specified key.
Specifies a data source-specific command that should be executed immediately after first establishing the connection. Unlike , this command is not executed when a connection is taken from the pool.
DbConnectionStringBuilder.RunOnceCommand property
A data source-specific command that should be executed immediately after establishing the connection.
Represents a set of data commands and a data source connection that are used to fill the and update a data source.
Fills associated DataSet with specified range of rows.
DbDataAdapter.FillPage method
A DataTable to fill.
Ordinal of row that result set starts with.
Quantity of rows to fill.
Number of rows filled.
Allows to read a forward-only stream of rows from a data source.
Closes the object.
DbDataReaderBase.Close method
Gets a value indicating the depth of nesting for the current row.
DbDataReaderBase.Depth property
The depth of nesting for the current row.
Indicates whether the has been read completely.
DbDataReaderBase.EndOfData property
if there is no more data in . This property is if there is more data to read, or there were no data at all.
Gets the number of columns in the current row.
DbDataReaderBase.FieldCount property
When not positioned in a valid record set, 0; otherwise the number of columns in the current record. The default value is -1.
Gets the value of the specified column as a Boolean.
DbDataReaderBase.GetBoolean method
The name of the column.
The value of the specified column.
Gets the value of the specified column as a byte.
DbDataReaderBase.GetByte method
The name of the column.
The value of the specified column.
Reads a stream of bytes from the specified column offset into the buffer as an array starting at the given buffer offset.
DbDataReaderBase.GetBytes method
The zero-based column ordinal.
The index within the field where the read operation is to begin.
The buffer into which to read the stream of bytes.
The index where buffer is to begin the write operation.
The maximum length to copy into the buffer.
The actual number of bytes read.
Reads a stream of bytes from the specified column offset into the buffer as an array starting at the given buffer offset.
DbDataReaderBase.GetBytes method
The name of the column.
The index within the field where the read operation is to begin.
The buffer into which to read the stream of bytes.
The index where buffer is to begin the write operation.
The maximum length to copy into the buffer.
The actual number of bytes read.
Gets the value of the specified column as a single character.
DbDataReaderBase.GetChar method
The name of the column.
The value of the specified column.
Reads a stream of characters from the specified column offset into the buffer as an array starting at the given buffer offset.
DbDataReaderBase.GetChars method
The zero-based column ordinal.
The index within the row where the read operation is to begin.
The buffer into which to copy data.
The index where buffer is to begin the write operation.
The maximum number of characters to read.
The actual number of characters read.
Reads a stream of characters from the specified column offset into the buffer as an array starting at the given buffer offset.
DbDataReaderBase.GetChars method
The name of the column.
The index within the row where the read operation is to begin.
The buffer into which to copy data.
The index where buffer is to begin the write operation.
The maximum number of characters to read.
The actual number of characters read.
Gets the name of the source data type.
DbDataReaderBase.GetDataTypeName method
The zero-based column ordinal.
The name of the back-end data type.
Gets the name of the source data type.
DbDataReaderBase.GetDataTypeName method
The name of the column.
The name of the back-end data type.
Gets the value of the specified column as a DateTime object.
DbDataReaderBase.GetDateTime method
The name of the column.
The value of the specified column.
Gets the value of the specified column as a object.
DbDataReaderBase.GetDateTimeOffset method
The zero-based column ordinal.
The value of the specified column.
Gets the value of the specified column as a DateTimeOffset object.
DbDataReaderBase.GetDateTimeOffset method
The name of the column.
The value of the specified column.
Gets the value of the specified column as a DateTime object.
DbDataReaderBase.GetDecimal method
The name of the column.
The value of the specified column.
Gets the value of the specified column as a double-precision floating point number.
DbDataReaderBase.GetDouble method
The name of the column.
The value of the specified column.
Fills object with data from .
DbDataReaderBase.GetEnumerator method
object to be populated with data.
Gets the that is the data type of the object.
DbDataReaderBase.GetFieldType method
The zero-based column ordinal.
The that is the data type of the object.
Gets the that is the data type of the object.
DbDataReaderBase.GetFieldType method
The name of the column.
The that is the data type of the object.
Gets the value of the specified column as a single-precision floating point number.
DbDataReaderBase.GetFloat method
The name of the column.
The value of the specified column.
Gets the value of the specified column as a globally-unique identifier (GUID).
DbDataReaderBase.GetGuid method
The name of the column.
The value of the specified column.
Gets the value of the specified column as a 16-bit signed integer.
DbDataReaderBase.GetInt16 method
The name of the column.
The value of the specified column.
Gets the value of the specified column as a 32-bit signed integer.
DbDataReaderBase.GetInt32 method
The name of the column.
The value of the specified column.
Gets the value of the specified column as a 64-bit signed integer.
DbDataReaderBase.GetInt64 method
The name of the column.
The value of the specified column.
Gets the name of the specified column.
DbDataReaderBase.GetName method
The zero-based column ordinal.
A string that is the name of the specified column.
Gets the column ordinal, given the name of the column.
DbDataReaderBase.GetOrdinal method
The name of the column.
The zero-based column ordinal.
Returns the provider-specific field type of the specified column.
DbDataReaderBase.GetProviderSpecificFieldType method
The name of the column.
The provider-specific field type of the specified column.
Gets the value of the specified column as an instance of
DbDataReaderBase.GetProviderSpecificValue method
The name of the column.
The provider-specific field type of the specified column.
Returns a that describes the column metadata of the .
DbDataReaderBase.GetSchemaTable method
A that describes the column metadata.
Gets the value of the specified column as an instance of
DbDataReaderBase.GetString method
The name of the column.
The value of the specified column.
Gets the value of the specified column in its native format.
DbDataReaderBase.GetValue method
The zero-based column ordinal.
The value to return.
Gets the value of the specified column in its native format.
DbDataReaderBase.GetValue method
The value of the specified column.
The value to return.
Gets all attribute columns in the collection for the current row.
DbDataReaderBase.GetValues method
An array of into which to copy the attribute columns.
The number of instances of in the array.
Gets a value indicating whether the contains one or more rows.
DbDataReaderBase.HasRows property
if the contains one or more rows; otherwise, .
Gets a value indicating whether the data reader is closed.
DbDataReaderBase.IsClosed property
if the is closed; otherwise, .
Gets a value indicating whether the column contains non-existent or missing values.
DbDataReaderBase.IsDBNull method
The zero-based column ordinal.
if the specified column value is equivalent to ; otherwise, .
Gets a value indicating whether the column contains non-existent or missing values.
DbDataReaderBase.IsDBNull method
The value of the specified column.
if the specified column value is equivalent to ; otherwise, .
Gets the value of the specified column in its native format given the column ordinal.
DbDataReaderBase.Item property
The zero-based column ordinal.
The value of the specified column in its native format.
Gets the value of the specified column in its native format given the column name.
DbDataReaderBase.Item property
The column name.
The value of the specified column in its native format.
Advances the data reader to the next result, when reading the results of batch SQL statements.
DbDataReaderBase.NextResult method
if there are more result sets; otherwise, .
Advances the to the next record.
DbDataReaderBase.Read method
if there are more rows; otherwise, .
Gets the number of rows changed, inserted, or deleted by execution of the SQL statement.
DbDataReaderBase.RecordsAffected property
The number of rows changed, inserted, or deleted. -1 for SELECT statements; 0 if no rows were affected, or the statement failed.
Represents an in-memory cache of data with connected model support.
Initializes a new instance of a class with the given name.
Clears the of any data by removing all rows in all tables.
DbDataSet.Clear method
Clears the of any data by removing all rows in all tables.
Copies the structure of the , including all schemas, relations, and constraints. Does not copy any data.
DbDataSet.Clone method
Gets or sets used by the .
DbDataSet.Connection property
A object.
Creates new table in the .
DbDataSet.CreateDataTable method
A new table object.
Fills the collection of the with rows from the data source.
DbDataSet.Fill method
Gets or sets name of the .
DbDataSet.Name property
The name of the .
Gets or sets a form or other container that the instance belongs to.
DbDataSet.Owner property
A form or other container that the object belongs to.
Reads XML schema and data into the using the specified .
DbDataSet.ReadXml method
An object that derives from .
The used to read the data.
Reads XML schema and data into the .
Reads XML schema and data into the using the specified .
DbDataSet.ReadXml method
An object that derives from .
One of the values.
The used to read the data.
Reads XML schema and data into the using the specified .
DbDataSet.ReadXml method
The from which to read the schema and data.
The used to read the data.
Reads XML schema and data into the using the specified .
DbDataSet.ReadXml method
The from which to read the schema and data.
One of the values.
The used to read the data.
Reads XML schema and data into the using the specified file.
DbDataSet.ReadXml method
The filename (including the path) from which to read.
The used to read the data.
Reads XML schema and data into the using the specified file and .
DbDataSet.ReadXml method
The filename (including the path) from which to read.
One of the values.
The used to read the data.
Reads XML schema and data into the using the specified .
DbDataSet.ReadXml method
The from which to read the schema and data.
The used to read the data.
Reads XML schema and data into the using the specified .
DbDataSet.ReadXml method
The from which to read the schema and data.
One of the values.
The used to read the data.
Gets or sets a for the used during remoting.
DbDataSet.RemotingFormat property
A object.
Executes the appropriate commands to delete, insert, or update rows in the data source.
DbDataSet.Update method
Retrieves list of available servers in the network.
Retrieves a DataTable containing information about all visible instances of the server.
DbDataSourceEnumerator.GetDataSources method
A DataTable containing information about the visible instances of the associated data source.
The class represents a single object that provides all of the functionality needed to retrieve and manipulate data from a data source. The class is built using existing ADO.NET components.
Gets or sets whether a is filled with data from a data source.
DbDataTable.Active property
if a is populated with data from a data source; otherwise, . The default value is .
Starts an asynchronous invocation of the method.
DbDataTable.BeginFill method
The delegate to call when the asynchronous invoke is complete. If callback is a null reference (Nothing in Visual Basic), the delegate is not called.
State information that is passed on to the delegate.
An interface that represents the asynchronous operation started by calling this method.
Enables or disables cached updates mode.
DbDataTable.CachedUpdates property
If , the changes made to are not sent to server until the method is invoked. If , the method is automatically called once a row finishes editing in a visual component.
Stops asynchronous fill operation.
DbDataTable.CancelFetch method
Clears and stops Fill operation.
DbDataTable.Clear method
Clears and stops Fill operation.
Clones the structure of the , including all schemes and constraints.
DbDataTable.Clone method
A new with the same schema as the current .
Disconnects from the data source and frees server resources allocated for the query.
DbDataTable.Close method
Gets the collection of columns that belong to this table.
DbDataTable.Columns property
A that contains the collection of objects for the table; otherwise, a null value if no objects exist.
This property is read-only.
Specifies which is to be used by the .
DbDataTable.ConflictOption property
One of the values describing the behavior of this .
Gets or sets the used to connect to the data source.
DbDataTable.Connection property
An object which provides a connection to the data source.
Gets the collection of constraints maintained by this table.
DbDataTable.Constraints property
A that contains the collection of objects for the table; otherwise, a null value if no objects exist.
This property is read-only.
Gets or sets a SQL statement to delete records from the data set.
DbDataTable.DeleteCommand property
An used during an update operation to delete records in the data source that correspond to deleted rows in the .
Determines whether the component is visible in design time.
DbDataTable.DesignTimeVisible property
Disables some of the events, which occurs when content is changed.
DbDataTable.DisableListChangedEvents property
Adds an event handler to listen to the Disposed event on the component.
DbDataTable.Disposed event
Ends an asynchronous invocation of the method.
DbDataTable.EndFill method
The returned from .
Ends the initialization of a that is used on a form or used by another component. The initialization occurs at run time.
DbDataTable.EndInit method
Determines whether data is requested from server entirely or partially.
DbDataTable.FetchAll property
If , the data is requested when the is opened, otherwise records are fetched only when necessary.
Occurs when a result set is completely fetched.
DbDataTable.FetchFinished event
Fills the collection of the with rows from the data source.
DbDataTable.Fill method
The number of rows successfully added to or refreshed in the . This does not include rows affected by statements that do not return rows.
Fills the collection of the with rows from the data source.
Fills the collection of the with rows from the data source using the parameter values passed in .
DbDataTable.Fill method
Used to fill the collection of the property.
The number of rows successfully added to or refreshed in the . This does not include rows affected by statements that do not return rows.
Occurs when an error is raised during a fill operation.
DbDataTable.FillError event
Fills the collection of the with rows from the data source starting at the row indicated by and including up to the number of rows indicated by .
DbDataTable.FillPage method
The number of the first row to retrieve. Value 0 means the first row, 1 means the second, and so on.
The maximum number of records to retrieve.
The number of rows successfully added to or refreshed in the . This does not include rows affected by statements that do not return rows.
Fills the collection of the with rows from the data source starting at the row indicated by and including up to the number of rows indicated by .
Fills the collection of the with rows from the data source starting at the row indicated by and including up to the number of rows indicated by using the parameter values passed in .
DbDataTable.FillPage method
The number of the first row to retrieve. Value 0 means the first row, 1 means the second, and so on.
The maximum number of records to retrieve.
Used to fill the collection of the property.
The number of rows successfully added to or refreshed in the . This does not include rows affected by statements that do not return rows.
Configures the schema to match that in the data source.
DbDataTable.FillSchema method
Gets or sets a SQL statement to insert new records into the data source.
DbDataTable.InsertCommand property
An used during an update operation to insert records in the data source that correspond to new rows in the .
Gets or sets max number of records to fetch starting from .
DbDataTable.MaxRecords property
Max number of records to fetch starting from .
Determines the action to take when existing DataSet schema does not match incoming data.
DbDataTable.MissingSchemaAction property
One of the values.
Gets or sets name of the component.
DbDataTable.Name property
Name of the component
Gets or sets data request mode.
DbDataTable.NonBlocking property
If this property is true, , and the property is also, the data is requested asynchronously.
Fetches data and sets the property to true.
DbDataTable.Open method
Gets or sets form that the component resides on.
DbDataTable.Owner property
The form that the component resides on.
Gets or sets a object that is used for server side master-detail relation.
DbDataTable.ParentRelation property
A object.
Gets or sets an array of columns that function as primary keys for the data table.
DbDataTable.PrimaryKey property
An array of objects.
Determines whether should perfrom additional request to determine quantity of records in the result set.
DbDataTable.QueryRecordCount property
If , an additional request to server is executed, and the is updated.
Gets or sets whether the quotes all the names of data source objects.
DbDataTable.Quoted property
if the will quote all the names of data source objects; otherwise, . The default value is .
Reads the next data row when operates in connected model.
DbDataTable.Read method
if there are more rows; otherwise, .
Fills a row with data not fetched in the initial fill operation.
DbDataTable.ReadComplete method
Row to read out.
Gets number of rows in the result set.
DbDataTable.RecordCount property
Number of rows in the result set. Meaning of this value depends on the property.
Gets or sets a value that indicates whether and how the should retrieve field values adjusted by server after an update.
DbDataTable.RefreshMode property
One of the values.
Refreshes the specified row with values from server.
DbDataTable.RefreshRow method
The row to refresh.
Gets or sets list of fields whose values should be retrieved after a DML statement execution.
DbDataTable.RefreshingFields property
The string containing list of field names separated by semicolon.
Gets or sets a for the used during remoting.
DbDataTable.RemotingFormat property
A object.
Gets or sets a value that indicates whether should perform additional roundtrip to server to request the autoincremented value.
DbDataTable.RetrieveAutoIncrementSeed property
If , an additional roundtrip is performed. The default value is .
Determines whether to use provider-specific types whenever possible.
DbDataTable.ReturnProviderSpecificTypes property
If , uses the and methods to retrieve data from server.
Occurs when another row is completely fetched.
DbDataTable.RowFetched event
Gets the schema table corresponding to the query.
DbDataTable.SchemaTable property
The schema table corresponding to the query.
Gets an array of all DataRow objects.
DbDataTable.Select method
An array of DataRow objects.
Gets an array of DataRow objects.
Gets an array of all DataRow objects that match the filter criteria.
DbDataTable.Select method
The criteria to use to filter the rows.
An array of DataRow objects.
Gets an array of all DataRow objects that match the filter criteria, in the specified sort order.
DbDataTable.Select method
The criteria to use to filter the rows.
A string specifying the column and sort direction.
An array of DataRow objects matching the filter expression.
Gets an array of all DataRow objects that match the filter in the order of the sort that match the specified state.
DbDataTable.Select method
The criteria to use to filter the rows.
A string specifying the column and sort direction.
One of the DataViewRowState values.
An array of DataRow objects matching the filter expression.
Gets or sets a SQL statement used to select records in the data source.
DbDataTable.SelectCommand property
An that is used during a fill operation to select records from the data source for placement in the .
Gets or sets record number to start.
DbDataTable.StartRecord property
Record number to start. Value 0 means the first row, 1 means the second, and so on.
Suspends asynchronous fill operation.
DbDataTable.SuspendFill method
Suspends asynchronous fill operation.
Suspends asynchronous fill operation.
DbDataTable.SuspendFill method
Determines whether to wait for break operation. If , the method returns before the fill operation is actually suspended.
Gets an object that can be used to synchronize access to the collection.
DbDataTable.SyncRoot property
A synchronization object.
Gets a that provides the master mapping between a source table and a .
DbDataTable.TableMapping property
A that provides the master mapping between a source table and a .
Executes the appropriate commands to delete, insert, or update rows in the data source.
DbDataTable.Update method
The number of rows successfully updated from the .
Gets or sets a value that enables or disables batch processing support, and specifies the number of commands that can be executed in a batch.
DbDataTable.UpdateBatchSize property
The number of rows to process per batch. If 0, there is no limit on the batch size. If 1, batch updating is disabled. If more than 1, determines the amount of operations sent at once.
Gets or sets a SQL statement used to update records in the data source.
DbDataTable.UpdateCommand property
An used during an update operation to update records in the data source that correspond to modified rows in the .
Executes the appropriate commands to delete, insert, or update the specified rows in the data source.
DbDataTable.UpdateRows method
An array of objects containing the rows to be updated.
The number of rows successfully updated from the .
Gets or sets string containing list of field names used to generate update commands.
DbDataTable.UpdatingFields property
The string containing list of field names separated by semicolon.
Gets or sets string containing list of key field names separated by semicolon. They are used to generate update commands.
DbDataTable.UpdatingKeyFields property
The string containing list of key field names separated by semicolon.
Gets or sets table name to generate update statements for.
DbDataTable.UpdatingTable property
The name of the table.
Serves to store a database or its parts as a script and also to restore database from the received script.
Generates a script and writes it to the property.
DbDump.Backup method
Generates a script for further restoring with the method.
Generates a script and writes it to the specified .
DbDump.Backup method
The to write the script to.
Generates a script and writes it to the specified .
DbDump.Backup method
The to write the script to.
Generates a script and writes it to the specified file.
DbDump.Backup method
The name of the file to write the script to.
Generates a script with a backup of the data, returned by the specified query, and writes it to the property.
DbDump.BackupQuery method
The query, returning data for backup.
Generates a script with a backup of the data, returned by the specified query, for further restoring with the method.
Generates a script with a backup of the data, returned by the specified query, and writes it to the specified .
DbDump.BackupQuery method
The query, returning data for backup.
The to write the script to.
Generates a script with a backup of the data, returned by the specified query, and writes it to the specified .
DbDump.BackupQuery method
The query, returning data for backup.
The to write the script to.
Generates a script with a backup of the data, returned by the specified query, and writes it to the specified file.
DbDump.BackupQuery method
The query, returning data for backup.
Name of the file to write the script to.
Starts an asynchronous invocation of a method.
DbDump.BeginBackup method
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method.
Starts an asynchronous invocation of a method with information for callback function.
DbDump.BeginBackup method
The delegate to call when the asynchronous invoke is complete. If callback is a null reference (Nothing in Visual Basic), the delegate is not called.
State information that is passed on to the delegate.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method.
DbDump.BeginBackup method
The to write the script to.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method with information for callback function.
DbDump.BeginBackup method
The to write the script to.
The delegate to call when the asynchronous invoke is complete. If callback is a null reference (Nothing in Visual Basic), the delegate is not called.
State information that is passed on to the delegate.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method.
DbDump.BeginBackup method
The to write the script to.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method with information for callback function.
DbDump.BeginBackup method
The to write the script to.
The delegate to call when the asynchronous invoke is complete. If callback is a null reference (Nothing in Visual Basic), the delegate is not called.
State information that is passed on to the delegate.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method.
DbDump.BeginBackup method
The name of the file to write the script to.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method with information for callback function.
DbDump.BeginBackup method
The name of the file to write the script to.
The delegate to call when the asynchronous invoke is complete. If callback is a null reference (Nothing in Visual Basic), the delegate is not called.
State information that is passed on to the delegate.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method.
DbDump.BeginBackupQuery method
The query, returning data for backup.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method.
Starts an asynchronous invocation of a method with information for callback function.
DbDump.BeginBackupQuery method
The query, returning data for backup.
The delegate to call when the asynchronous invoke is complete. If callback is a null reference (Nothing in Visual Basic), the delegate is not called.
State information that is passed on to the delegate.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method.
DbDump.BeginBackupQuery method
The query, returning data for backup.
The to write the script to.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method with information for callback function.
DbDump.BeginBackupQuery method
The query, returning data for backup.
The to write the script to.
The delegate to call when the asynchronous invoke is complete. If callback is a null reference (Nothing in Visual Basic), the delegate is not called.
State information that is passed on to the delegate.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method.
DbDump.BeginBackupQuery method
The query, returning data for backup.
The to write the script to.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method with information for callback function.
DbDump.BeginBackupQuery method
The query, returning data for backup.
The to write the script to.
The delegate to call when the asynchronous invoke is complete. If callback is a null reference (Nothing in Visual Basic), the delegate is not called.
State information that is passed on to the delegate.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method.
DbDump.BeginBackupQuery method
The query, returning data for backup.
The name of the file to write the script to.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method with information for callback function.
DbDump.BeginBackupQuery method
The query, returning data for backup.
The name of the file to write the script to.
The delegate to call when the asynchronous invoke is complete. If callback is a null reference (Nothing in Visual Basic), the delegate is not called.
State information that is passed on to the delegate.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method.
DbDump.BeginRestore method
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method.
Starts an asynchronous invocation of a method with information for callback function.
DbDump.BeginRestore method
The delegate to call when the asynchronous invoke is complete. If callback is a null reference (Nothing in Visual Basic), the delegate is not called.
State information that is passed on to the delegate.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method.
DbDump.BeginRestore method
The object to read the script from.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method with information for callback function.
DbDump.BeginRestore method
The object to read the script from.
The delegate to call when the asynchronous invoke is complete. If callback is a null reference (Nothing in Visual Basic), the delegate is not called.
State information that is passed on to the delegate.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method.
DbDump.BeginRestore method
The object to read the script from.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method with information for callback function.
DbDump.BeginRestore method
The object to read the script from.
The delegate to call when the asynchronous invoke is complete. If callback is a null reference (Nothing in Visual Basic), the delegate is not called.
State information that is passed on to the delegate.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method.
DbDump.BeginRestore method
The name of the file to load the script from.
An interface that represents the asynchronous operation started by calling this method.
Starts an asynchronous invocation of a method with information for callback function.
DbDump.BeginRestore method
The name of the file to load the script from.
The delegate to call when the asynchronous invoke is complete. If callback is a null reference (Nothing in Visual Basic), the delegate is not called.
State information that is passed on to the delegate.
An interface that represents the asynchronous operation started by calling this method.
Gets or sets the used by this instance of the .
DbDump.Connection property
The connection to a data source. The default value is a null reference.
Gets as a result of execution, or sets data needed to execute method.
DbDump.DumpText property
SQL commands separated by ';' symbols.
Ends an asynchronous invocation of the method.
DbDump.EndBackup method
The returned by .
Ends an asynchronous invocation of the method.
DbDump.EndBackupQuery method
The returned by .
Ends an asynchronous invocation of the method.
DbDump.EndRestore method
The returned by .
Gets or sets a value that determines whether to add some extra information in the script header.
DbDump.GenerateHeader property
If , adds comments with information about server version, script generation date, and so on.
Determines whether to recreate database objects.
DbDump.IncludeDrop property
, if database objects must be recreated; otherwise, . The default value is .
Determines whether to include data from tables into the dump text, script to create database objects or both.
DbDump.Mode property
One of values.
Determines whether to quote all identifiers present in the database.
DbDump.QuoteIdentifier property
, if database identifiers must be quoted; otherwise, . The default value is .
Executes script specified in the descendant property.
DbDump.Restore method
Executes the previously dumped script.
Executes script from the specified object.
DbDump.Restore method
The object to read the script from.
Executes script from the specified object.
DbDump.Restore method
The object to read the script from.
Executes script from the specified file.
DbDump.Restore method
The name of the file to load the script from.
Gets or sets a list of the tables which will be used in the script. Table names are separated by semicolon.
DbDump.Tables property
containing a list of the tables separated by semicolon.
This class is not used in dotConnect for SQLite.
Initializes a new instance of the class.
Initializes a new instance of the class.
Initializes a new instance of the class with table name that will be loaded.
Name of the table that will be loaded.
Initializes a new instance of the class with table name that will be loaded and a object.
Name of the table that will be loaded.
A object that represents the connection to a data source.
Gets or sets a size of data packet loaded to the server.
DbLoader.BufferSize property
Size of the data packet in bytes.
Closes loading session and flushes remaining rows to the table.
DbLoader.Close method
Gets the collection.
DbLoader.Columns property
Columns which loaded table consist of.
Gets or sets the used by this instance of the .
DbLoader.Connection property
The connection to a data source. The default value is a null reference.
Retrieves table columns information from the table specified in the property and populates columns collection.
DbLoader.CreateColumns method
Sets the value of the column at the specified index for .
DbLoader.Item property
The zero-based index.
Sets the value of the column with the specified name for .
DbLoader.Item property
The name of the column.
Loads data into the table from the specified array of data rows.
DbLoader.LoadTable method
The array of data rows to load into target table.
Loads data into the table from the specified DataTable.
Loads data into the table from the specified DataTable.
DbLoader.LoadTable method
The DataTable object to obtain data from.
Loads rows that match to the specified row state from the specified DataTable into the table.
DbLoader.LoadTable method
The DataTable object to obtain data from.
The specified row state. Only rows that match it will be copied to the target table.
Loads data into the table from the specified DataTable.
DbLoader.LoadTable method
The DataTable object to obtain data from.
Column mappings used to match table columns to data source table columns. If this argument is null, the DataTable columns names are used.
Loads data into the table from the specified IDataReader.
DbLoader.LoadTable method
The IDataReader object to obtain data from.
Advances to the next row.
DbLoader.NextRow method
Prepares for the loading.
DbLoader.Open method
Sets the value of the column with the specified index to NULL.
DbLoader.SetNull method
Zero-based index of the column.
Sets the value of the column with the specified name or ordinal to NULL.
Sets the value of the column with the specified name to NULL.
DbLoader.SetNull method
The name of the column.
Sets the value of the column at the specified ordinal.
DbLoader.SetValue method
Zero-based index of the column.
Column value.
Sets the value of the column with the specified name or ordinal.
Sets the value of the column with the specified name.
DbLoader.SetValue method
The name of the column.
Column value.
Gets or sets table name that will be loaded.
DbLoader.TableName property
Name of the table that will be loaded.
This class is not used in dotConnect for SQLite.
Initializes a new instance of the class.
Initializes a new instance of the class.
Initializes a new instance of the class with the column name, size, precision and scale.
The name of the column.
Maximum size of column data.
The precision of the column.
The scale of the column.
Gets or sets the name of the .
DbLoaderColumn.Name property
The name of the . The default value is an empty string ("").
Gets or sets the maximum number of digits used to represent the column value.
DbLoaderColumn.Precision property
The maximum number of digits used to represent the column value. The default value is 0.
Gets or sets the number of decimal places to which column value is resolved.
DbLoaderColumn.Scale property
The number of decimal places to which column value is resolved. The default value is 0.
Gets or sets the maximum size, in bytes, of the data within the column.
DbLoaderColumn.Size property
The maximum size, in bytes, of the data within the column.
Returns the name of the .
DbLoaderColumn.ToString method
The name of the .
This class is not used in dotConnect for SQLite.
Initializes a new instance of the class.
Adds the specified to the .
DbLoaderColumnCollection.Add method
The to add to the collection.
Index of the new object.
Gets a value indicating whether a object exists in the collection.
DbLoaderColumnCollection.Contains method
The value of the object to find.
if the collection contains the ; otherwise, .
Gets a value indicating whether a object exists in the collection.
Gets a value indicating whether a object with the specified name exists in the collection.
DbLoaderColumnCollection.Contains method
The name of the column to find.
if the collection contains the ; otherwise, .
Copies objects from the to the specified array.
DbLoaderColumnCollection.CopyTo method
The array into which to copy the objects.
The zero-based index of the array.
Gets the location in the collection of the object.
DbLoaderColumnCollection.IndexOf method
The object to find.
The zero-based location of the in the collection.
Gets the location in the collection of the object.
Gets the location in the collection of the object by the specified name.
DbLoaderColumnCollection.IndexOf method
The name of the column to find.
The zero-based location of the in the collection.
Inserts a into the collection at the specified index.
DbLoaderColumnCollection.Insert method
The zero-based index where the column is to be inserted within the collection.
The to add to the collection.
Gets or sets the at the specified index.
DbLoaderColumnCollection.Item property
The zero-based index of the column.
The at the specified index.
Gets or sets the with the specified name.
DbLoaderColumnCollection.Item property
The name of the column.
The with the specified name.
Removes the specified object from the collection.
DbLoaderColumnCollection.Remove method
The object to remove from the collection.
Allows monitoring dynamic SQL execution in applications that use .NET data providers.
Gets or sets the maximal number of events that may be placed to a queue waiting to be processed by the dbMonitor application.
DbMonitor.EventQueueLimit property
The maximal number of events that may be placed to a queue waiting to be processed by the dbMonitor application.
Gets or sets the host where the dbMonitor application is running, 'localhost' by default.
DbMonitor.Host property
The host where the dbMonitor application is running, 'localhost' by default.
Enables or disables monitoring applications.
DbMonitor.IsActive property
if monitoring the application is enabled; otherwise, .
Gets or sets the port of the dbMonitor application to which to connect, 1000 by default.
DbMonitor.Port property
Port of the dbMonitor application to which to connect, 1000 by default.
Occurs when object signals about some database activity.
DbMonitor.TraceEvent event
Disables or enables sending database interaction events to dbMonitor application.
DbMonitor.UseApp property
if sending database interaction events to dbMonitor application is enabled; otherwise, .
Enables or disables writing log messages to the IDE output window.
DbMonitor.UseIdeOutput property
If , the object writes its information to the Output window (Visual Studio) or Messages window (Delphi).
Represents a parameter to a , and optionally, its mapping to columns.
Copies all properties of a object to another object.
DbParameterBase.CopyTo method
The object to copy properties to.
Gets or sets a value indicating whether the parameter is input-only, output-only, or bidirectional parameter.
DbParameterBase.Direction property
One of the values. The default value is Input.
Gets or sets a value indicating whether the parameter accepts null values.
DbParameterBase.IsNullable property
if null values are accepted; otherwise, . The default value is .
Gets or sets the name of the .
DbParameterBase.ParameterName property
The name of the . The default value is an empty string ("").
Gets or sets the maximum size, in bytes, of the data within the column.
DbParameterBase.Size property
The maximum size, in bytes, of the data within the column. The default value is inferred from the parameter value.
Gets or sets the name of the source column mapped to the and used for loading or returning the . For internal use.
DbParameterBase.SourceColumn property
The name of the source column that will be used to set the value of this parameter. The default value is an empty string ("").
Sets or gets a value which indicates whether the source column is nullable.
DbParameterBase.SourceColumnNullMapping property
if source column is nullable; otherwise, . The default value is .
Gets or sets the to use when loading .
DbParameterBase.SourceVersion property
One of the values. The default value is Current.
Gets the name of the .
DbParameterBase.ToString method
The name of the .
Gets or sets the value of the parameter.
DbParameterBase.Value property
An that is the value of the parameter. The default value is null.
Collects all parameters relevant to a as well as their respective mappings to columns.
Adds the specified to the .
DbParameterBaseCollection.Add method
The to add to the .
The index of the new object.
Adds the specified array of objects to the .
DbParameterBaseCollection.AddRange method
Array of objects to be added to the .
Removes all items from the collection.
DbParameterBaseCollection.Clear method
Gets a value indicating whether a object exists in the collection.
DbParameterBaseCollection.Contains method
The value of the object to find.
if the collection contains the ; otherwise, .
Gets a value indicating whether a object exists in the collection.
Gets a value indicating whether a object with the specified parameter name exists in the collection.
DbParameterBaseCollection.Contains method
The name of the object to find.
if the collection contains the ; otherwise, .
Copies a objects from the to the specified array.
DbParameterBaseCollection.CopyTo method
The array into which to copy the objects.
The zero-based index of the array.
Gets the number of objects in the collection.
DbParameterBaseCollection.Count property
The number of objects in the collection.
Returns an enumerator for the .
DbParameterBaseCollection.GetEnumerator method
An enumerator for the .
Gets the location in the collection of the objects.
DbParameterBaseCollection.IndexOf method
The object to find.
The zero-based location of the in the collection.
Gets the location in the collection of the objects.
Gets the location in the collection of the object with a specific parameter name.
DbParameterBaseCollection.IndexOf method
The name of the parameter to retrieve.
The zero-based location of the in the collection.
Inserts a into the collection at the specified index.
DbParameterBaseCollection.Insert method
The zero-based index where the parameter is to be inserted within the collection.
The object to add to the collection.
Indicating whether the collection has a fixed size.
DbParameterBaseCollection.IsFixedSize property
if the collection has a fixed size; otherwise, .
Indicates whether the collection is read-only.
DbParameterBaseCollection.IsReadOnly property
if the collection is read-only; otherwise, .
Indicates whether access to the collection is synchronized (thread-safe).
DbParameterBaseCollection.IsSynchronized property
if access to the collection is synchronized (thread-safe); otherwise, .
Removes the specified from the collection.
DbParameterBaseCollection.Remove method
The object to remove from the collection.
Removes the at the specified index from the collection.
DbParameterBaseCollection.RemoveAt method
The zero-based index of the parameter to remove.
Removes the specified from the collection.
Removes the with the specified name from the collection.
DbParameterBaseCollection.RemoveAt method
The name of the parameter to remove.
Gets an object that can be used to synchronize access to the .
DbParameterBaseCollection.SyncRoot property
An object that can be used to synchronize access to the .
The base class for all exceptions thrown on data provider side. This does not include data source exceptions.
Gets the exception text.
DbProviderException.ToString method
The exception text.
Serves to execute series of SQL statements separated by special symbols.
Tries to cancel the execution of a descendant.
DbScript.Cancel method
Gets or sets the wait time before terminating an attempt to execute a script and generating an error.
DbScript.CommandTimeout property
The time to wait while server responds when executing the command. The default value is 30 seconds.
Gets or sets the used by this instance of the .
DbScript.Connection property
The connection to a data source. The default value is a null reference.
Occurs when a SQL statement within script has produced an error.
DbScript.Error event
Executes the script specified in property.
DbScript.Execute method
Executes the next statement from the script.
DbScript.ExecuteNext method
to store result set.
if there are more statements to execute; otherwise, .
Gets or sets the name of component that will be displayed in dbMonitor application.
DbScript.Name property
The name of the component.
Prepares a stream to be executed as SQL script.
DbScript.Open method
Stream to read SQL statements from.
Prepares a stream to be executed as SQL script.
Prepares a StreamReader to be executed as SQL script.
DbScript.Open method
TextReader to read SQL statements from.
Prepares a file stream to be executed as SQL script.
DbScript.Open method
Name of file to open.
Occurs when a SQL statement within script has successfully executed.
DbScript.Progress event
Positions method on the first statement in the script.
DbScript.Reset method
Gets or sets script text.
DbScript.ScriptText property
The text of the script. The default value is an empty string ("").
Gets the collection of statements that make up the script.
DbScript.Statements property
Collection of statements.
Base class for the dotConnect for SQLite transaction class
Specifies the for the transaction.
DbTransactionBase.IsolationLevel property
The for the transaction.
Occurs when the state of the transaction is changed.
DbTransactionBase.StateChanged event
Occurs when the state of the transaction is changing.
DbTransactionBase.StateChanging event
Specifies what kind of information should be exported by .
Export both data and metadata. The dump contains DDL and DML statements.
Export only data contained in tables. The dump text contains DML statements only.
Export metadata information only. The dump contains DDL statements only.
Provides data for the event of the class.
Gets the call stack of the monitor event.
MonitorEventArgs.CallStack property
The call stack of the monitor event.
Gets the description of a event.
MonitorEventArgs.Description property
The text description of a event.
The time between the start and the end of the event.
MonitorEventArgs.Duration property
Gets event type.
MonitorEventArgs.EventType property
The event type that depends on SQL activity of the application.
Gets the additional information for a event.
MonitorEventArgs.ExtraInfo property
The string representation of the connection string, error text, or SQL parameters.
Determines whether event occurs before or after the operation takes place.
MonitorEventArgs.TracePoint property
One of values.
Represents the method that will handle the event of the class.
MonitorEventHandler delegate
The source of the event.
The object that contains the event data.
Describes type of the current event.
Application takes a connection from the pool.
Application begins a transaction (local or distributed) against a data source.
Application executes COMMIT statement against a data source.
Application opens connection to a data source.
Application executes any user defined statement against a data source.
Application closes connection to a data source.
Data source returns an error message.
Application executes a statement against a data source.
Application prepares an execute statement.
Application returns a connection to the pool.
Application executes ROLLBACK statement against a data source.
Determines when event occurs.
Occurs in after some operation is complete.
Occurs in before some operation has started.
Establishes query-based master-detail relation.
Initializes a new instance of the class using the specified parent and matched arrays of parent and child column names.
A that is used as master dataset.
List of master columns used to establish the relation.
List of child columns used to establish the relation.
Gets or sets list of child columns used to establish the relation.
ParentDataRelation.ChildColumnNames property
List of child columns used to establish the relation.
Gets or sets list of child columns used to establish the relation.
ParentDataRelation.ParentColumnNames property
List of parent columns used to establish the relation.
Gets or sets the that is used as master dataset.
ParentDataRelation.ParentTable property
A that is used as master dataset.
Represents an exception that occurs when connecting through a proxy server.
Initializes a new instance of the class to initialize with inner exception.
Inner exception
Initializes a new instance of the class with the exception message.
The exception message.
Represents proxy server settings.
Initializes a new instance of the class.
Initializes a new instance of the class.
The host name or IP address of proxy server.
The port number of the proxy server.
The proxy server account name.
The password for the proxy server account.
The default value for the property.
ProxyOptions.DefaultPort field
Gets or sets the host name or IP address of the proxy server to which to connect.
ProxyOptions.Host property
The host name or IP address of proxy server.
Gets or sets the password for the proxy server account.
ProxyOptions.Password property
The password for the proxy server account.
Gets or sets the port number of the proxy server.
ProxyOptions.Port property
The port number of the proxy server. The default value is 3128.
Occurs when one of the properties of the was changed.
ProxyOptions.PropertyChanged event
Gets the uniform resource identifier (URI), generated from the values of the , , , and properties.
ProxyOptions.ProxyAddress property
Represents the name of proxy host parameter in the connection string.
ProxyOptions.ProxyHostKeyword field
Represents the name of proxy password parameter in the connection string.
ProxyOptions.ProxyPasswordKeyword field
Represents the name of proxy port parameter in the connection string.
ProxyOptions.ProxyPortKeyword field
Represents the name of proxy user parameter in the connection string.
ProxyOptions.ProxyUserKeyword field
Indicates whether designers should serialize this instanse.
ProxyOptions.ShouldSerialize method
, if this instance will be serialized; otherwise, .
Returns a that represents the current .
ProxyOptions.ToString method
Gets or sets the proxy server account name.
ProxyOptions.User property
The proxy server account name.
Represents the method that will handle the event of the class.
ProxyOptionsPropertyChanged delegate
The name of the changed property.
The new value of the property.
Describes an error that is raised during record count request process.
Describes autorefresh actions that can be taken by and .
Retrieve field values from the server after an INSERT statement execution.
Retrieve field values from the server after an UPDATE statement execution.
Retrieve field values from the server after an execution of either INSERT or UPDATE statements.
Never refresh field values from the server.
Specifies the application behavior when connection is lost.
An exception is raised.
Reconnect is performed and abortive operation is reexecuted.
Provides data for the event of the class.
Gets the instance that throws.
ScriptErrorEventArgs.Exception property
An instance that contains information specific to error.
Gets or sets whether the current error will be ignored or not.
ScriptErrorEventArgs.Ignore property
if the current error will be ignored; otherwise .
Gets length of statement where an error occurred.
ScriptErrorEventArgs.Length property
Length of statement where an error occurred.
Gets number of the line where an error occurred.
ScriptErrorEventArgs.LineNumber property
Number of the line where an error occurred.
Gets position in the line where an error occurred.
ScriptErrorEventArgs.LinePosition property
Position in the line where an error occurred.
Gets offset of statement where an error occurred.
ScriptErrorEventArgs.Offset property
Offset of statement where an error occurred.
Gets type of the statement that caused an error.
ScriptErrorEventArgs.StatementType property
One of the values.
Gets SQL statement where an error occurred.
ScriptErrorEventArgs.Text property
SQL statement text where an error occurred.
Represents the method that will handle the event of the .
ScriptErrorEventHandler delegate
The source of the event.
The object that contains the event data.
Provides data for the event of the class.
Gets length of the statement in symbols.
ScriptProgressEventArgs.Length property
Length of the statement.
Gets number of line in the whole script where the statement can be located.
ScriptProgressEventArgs.LineNumber property
Number of line in the whole script.
Gets position of the statement in its line.
ScriptProgressEventArgs.LinePosition property
Position of the statement.
Gets offset of the statement in the whole script text.
ScriptProgressEventArgs.Offset property
Offset of the statement in the script text.
Gets type of the statement that is executed.
ScriptProgressEventArgs.StatementType property
One of the values.
Gets SQL statement that has been executed.
ScriptProgressEventArgs.Text property
SQL statement.
Represents the method that will handle the event of the .
ScriptProgressEventHandler delegate
The source of the event.
The object that contains the event data.
Represents a single statement in a script.
Executes the statement and returns result set.
SqlStatement.Execute method
Result set returned by the statement execution.
Executes the statement.
SqlStatement.ExecuteNonQuery method
Gets length of the statement in symbols.
SqlStatement.Length property
Length of the statement in symbols.
Gets number of line in the whole script where the statement can be located.
SqlStatement.LineNumber property
Number of line in the whole script.
Gets position of the statement in its line.
SqlStatement.LinePosition property
Position of the statement.
Gets offset of the statement in the whole script text.
SqlStatement.Offset property
Offset of the statement in the script text.
Gets type of the statement.
SqlStatement.StatementType property
One of the values.
Gets SQL statement to be executed.
SqlStatement.Text property
SQL statement.
Represents collection of statements that constitute SQLite script.
Initializes a new instance of the class.
Not used in .
SqlStatementCollection.Add method
Gets a value indicating whether a object exists in the collection.
SqlStatementCollection.Contains method
The value of the object to find.
if the collection contains the ; otherwise, .
Copies objects from the to the specified array.
SqlStatementCollection.CopyTo method
The array into which to copy the objects.
The zero-based index of the object to copy.
Gets the location in the collection of the object.
SqlStatementCollection.IndexOf method
The object to find.
The zero-based location of the in the collection.
Not used in .
SqlStatementCollection.Insert method
Gets the at the specified index.
SqlStatementCollection.Item property
The zero-based index of the statement.
The at the specified index.
Not used in .
SqlStatementCollection.Remove method
Describes type of a statement in a script.
An ALTER statement.
A complex construction like script or statement block.
A COMMIT statement.
A CREATE statement.
A DELETE statement.
A DROP statement.
An EXECUTE statement.
A construction that does not represent usual SQL statements.
An INSERT statement.
A ROLLBACK statement.
A SELECT statement.
A TRUNCATE statement.
Unknown statement type.
An UPDATE statement.
A WITH statement.
Indicates the operation, that is being performed or has been performed in the transaction in the or events.
Transaction is being started or has been started.
Transaction is being committed or has been committed.
Savepoint is being released or has been released.
Transaction is being rolled back or has been rolled back.
Transaction is being rolled back to savepoint or has been rolled back to savepoint.
The savepoint is being created or has been created.
Base class for and classes.
Indicates the operation that is being performed or has been performed in the transaction when the or event occurs.
TransactionStateChangeEventArgs.Action property
One of the values.
Provides data for the event of the class.
Initializes an instance of the class.
The operation that is being performed or has been performed in the transaction when the event occurs.
Represents the method that will handle the event of descendants.
TransactionStateChangedEventHandler delegate
The source of the event.
The object that contains the event data.
Provides data for the event of the class.
Initializes a new instance of the class.
The operation that is being performed or has been performed in the transaction when the event occurs.
Represents the method that will handle the event of descendants.
TransactionStateChangingEventHandler delegate
The source of the event.
The object that contains the event data.
The namespace contains classes shared by the Devart data providers.
Allows establishing flexible cross-form data binding.
Creates a new instance of the class.
Adds a new item to the underlying list.
DataLink.AddNew method
The that was created and added to the list.
Gets the current data row, which can be changed by user by changing position in the data grid or data controls.
DataLink.CurrentRow property
The current data row, which can be changed by user by changing position in the data grid or data controls.
Gets or sets the specific data member in a multimember data source to bind to a data listing control.
DataLink.DataMember property
A data member from a multimember data source. The default value is an empty string.
Gets or sets the source containing a list of values used to populate the items within the control.
DataLink.DataSource property
An IEnumerable or IListSource that contains a collection of values used to supply data to this control. The default value is a null reference.
Returns the index of the item in the list with the specified property name and value.
DataLink.Find method
The name of the property to search for.
The value of the item with the specified name to find.
The zero-based index of the item, having the specified property name and value.
Gets the list that the connector is bound to.
DataLink.List property
The list that the connector is bound to.
Gets or sets name of the .
DataLink.Name property
Name of the .
Gets or sets a form or other container that the instance belongs to.
DataLink.Owner property
A form or other container that the object belongs to.
Gets or sets the index of the current item in the underlying list.
DataLink.Position property
The zero-based index of the current item in the underlying list.
Puts separate filters over the DataView object that was created.
DataLink.SeparateEditing property
Gets or sets a value indicating whether to synchronize current position with other instances that reference the same data source.
DataLink.Synchronized property
If , navigation in this instance of will affect other instances. The default value is false.