CNAS取数仪器端升级
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

2535 рядки
189KB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <doc>
  3. <assembly>
  4. <name>Devart.Data</name>
  5. <version>5.0.1441.0</version>
  6. <fullname>Devart.Data, Version=5.0.1441.0, Culture=neutral, PublicKeyToken=09af7300eec23701</fullname>
  7. </assembly>
  8. <members>
  9. <member name="N:Devart.Common">
  10. <summary>The <see cref="N:Devart.Common" /> namespace contains classes shared by the Devart data providers. </summary>
  11. </member>
  12. <member name="T:Devart.Common.ConnectionLostCause">
  13. <summary>Specifies the cause of the connection loss. </summary>
  14. </member>
  15. <member name="F:Devart.Common.ConnectionLostCause.Connect">
  16. <summary>Connection loss detected during connection. </summary>
  17. </member>
  18. <member name="F:Devart.Common.ConnectionLostCause.Execute">
  19. <summary>Connection loss detected during SQL execution. </summary>
  20. </member>
  21. <member name="F:Devart.Common.ConnectionLostCause.Prepare">
  22. <summary>Connection loss detected during preparation command on the server. </summary>
  23. </member>
  24. <member name="F:Devart.Common.ConnectionLostCause.Read">
  25. <summary>Connection loss detected during read data. </summary>
  26. </member>
  27. <member name="F:Devart.Common.ConnectionLostCause.StartTransaction">
  28. <summary>Connection loss detected during starting transaction. </summary>
  29. </member>
  30. <member name="T:Devart.Common.ConnectionLostContext">
  31. <summary>Specifies the state of the connection when error ocurred. </summary>
  32. </member>
  33. <member name="F:Devart.Common.ConnectionLostContext.HasPrepared">
  34. <summary>The connection has prepared statement in current session. </summary>
  35. </member>
  36. <member name="F:Devart.Common.ConnectionLostContext.InFetch">
  37. <summary>The connection already had an open DataReader. </summary>
  38. </member>
  39. <member name="F:Devart.Common.ConnectionLostContext.InTransaction">
  40. <summary>The connection executed sql in transaction. </summary>
  41. </member>
  42. <member name="F:Devart.Common.ConnectionLostContext.None">
  43. <summary>The connection was in none state. </summary>
  44. </member>
  45. <member name="T:Devart.Common.ConnectionLostEventArgs">
  46. <summary>Provides data for the ConnectionLost event. </summary>
  47. </member>
  48. <member name="M:Devart.Common.ConnectionLostEventArgs.#ctor(System.Object,Devart.Common.ConnectionLostCause,Devart.Common.ConnectionLostContext,Devart.Common.RetryMode,System.Int32)">
  49. <summary>Initializes a new instance of the <see cref="T:Devart.Common.ConnectionLostEventArgs" /> class. </summary>
  50. <param name="component">The object where the connection loss occurs. </param>
  51. <param name="cause">The reason of the connection loss. </param>
  52. <param name="context">The state of connection when connection is lost. </param>
  53. <param name="retryMode">The application behavior when connection is lost. </param>
  54. <param name="attemptNumber">The number of attempts to reconnect. </param>
  55. </member>
  56. <member name="P:Devart.Common.ConnectionLostEventArgs.AttemptNumber">
  57. <summary>The state of connection when connection is lost. </summary>
  58. <keywords>ConnectionLostEventArgs.AttemptNumber property </keywords>
  59. </member>
  60. <member name="P:Devart.Common.ConnectionLostEventArgs.Cause">
  61. <summary>The reason of the connection loss. </summary>
  62. <keywords>ConnectionLostEventArgs.Cause property </keywords>
  63. </member>
  64. <member name="P:Devart.Common.ConnectionLostEventArgs.Component">
  65. <summary>The object where the connection loss occurs. </summary>
  66. <keywords>ConnectionLostEventArgs.Component property </keywords>
  67. </member>
  68. <member name="P:Devart.Common.ConnectionLostEventArgs.Context">
  69. <summary>The state of the connection when connection is lost. </summary>
  70. <keywords>ConnectionLostEventArgs.Context property </keywords>
  71. </member>
  72. <member name="P:Devart.Common.ConnectionLostEventArgs.RetryMode">
  73. <summary>The application behavior when connection is lost. </summary>
  74. <keywords>ConnectionLostEventArgs.RetryMode property </keywords>
  75. </member>
  76. <member name="T:Devart.Common.ConnectionLostEventHandler">
  77. <summary>Represents the method that will handle the Error ConnectionLost of <see cref="T:Devart.Data.SQLite.SQLiteConnection" />. </summary>
  78. <keywords>ConnectionLostEventHandler delegate </keywords>
  79. <param name="sender">The source of the event. </param>
  80. <param name="e">The <see cref="T:Devart.Common.ConnectionLostEventArgs" /> object that contains the event data. </param>
  81. </member>
  82. <member name="T:Devart.Common.DbCommandBase">
  83. <summary>Represents a SQL statement to execute against a data source. </summary>
  84. </member>
  85. <member name="M:Devart.Common.DbCommandBase.BeginExecuteNonQuery()">
  86. <summary>Starts an asynchronous invocation of an <see cref="M:Devart.Common.DbCommandBase.ExecuteNonQuery" /> method. </summary>
  87. <keywords>DbCommandBase.BeginExecuteNonQuery method </keywords>
  88. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  89. <overloads>Starts an asynchronous invocation of an <see cref="M:Devart.Common.DbCommandBase.ExecuteNonQuery" /> method. </overloads>
  90. </member>
  91. <member name="M:Devart.Common.DbCommandBase.BeginExecuteNonQuery(System.AsyncCallback,System.Object)">
  92. <summary>Starts an asynchronous invocation of an <see cref="M:Devart.Common.DbCommandBase.ExecuteNonQuery" /> method with information for callback function. </summary>
  93. <keywords>DbCommandBase.BeginExecuteNonQuery method </keywords>
  94. <param name="callback">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. </param>
  95. <param name="stateObject">State information that is passed on to the delegate. </param>
  96. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  97. </member>
  98. <member name="M:Devart.Common.DbCommandBase.BeginExecuteReader()">
  99. <summary>Starts an asynchronous invocation of an <see cref="M:System.Data.Common.DbCommand.ExecuteReader" /> method. </summary>
  100. <keywords>DbCommandBase.BeginExecuteReader method </keywords>
  101. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  102. <overloads>Starts an asynchronous invocation of an <see cref="M:System.Data.Common.DbCommand.ExecuteReader" /> method. </overloads>
  103. </member>
  104. <member name="M:Devart.Common.DbCommandBase.BeginExecuteReader(System.AsyncCallback,System.Object)">
  105. <summary>Starts an asynchronous invocation of an <see cref="M:System.Data.Common.DbCommand.ExecuteReader" /> method with information for callback function. </summary>
  106. <keywords>DbCommandBase.BeginExecuteReader method </keywords>
  107. <param name="callback">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. </param>
  108. <param name="stateObject">State information that is passed on to the delegate. </param>
  109. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  110. </member>
  111. <member name="M:Devart.Common.DbCommandBase.BeginExecuteReader(System.AsyncCallback,System.Object,System.Data.CommandBehavior)">
  112. <summary>Starts an asynchronous invocation of an <see cref="M:System.Data.Common.DbCommand.ExecuteReader" /> method with information for callback function. </summary>
  113. <keywords>DbCommandBase.BeginExecuteReader method </keywords>
  114. <param name="callback">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. </param>
  115. <param name="stateObject">State information that is passed on to the delegate. </param>
  116. <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values. </param>
  117. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  118. </member>
  119. <member name="M:Devart.Common.DbCommandBase.BeginExecuteReader(System.Data.CommandBehavior)">
  120. <summary>Starts an asynchronous invocation of an <see cref="M:System.Data.Common.DbCommand.ExecuteReader" /> method. </summary>
  121. <keywords>DbCommandBase.BeginExecuteReader method </keywords>
  122. <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values. </param>
  123. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  124. </member>
  125. <member name="M:Devart.Common.DbCommandBase.Cancel()">
  126. <summary>Attempts to cancel the execution of a query currently running. </summary>
  127. <keywords>DbCommandBase.Cancel method </keywords>
  128. </member>
  129. <member name="P:Devart.Common.DbCommandBase.CommandText">
  130. <summary>Gets or sets the SQL statement to execute against a data source. </summary>
  131. <keywords>DbCommandBase.CommandText property </keywords>
  132. <value>The SQL statement to execute. The default value is an empty string (""). </value>
  133. </member>
  134. <member name="P:Devart.Common.DbCommandBase.CommandTimeout">
  135. <summary>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. </summary>
  136. <keywords>DbCommandBase.CommandTimeout property </keywords>
  137. <value>The time (in seconds) to wait for the command to execute. The default value is 30 seconds. </value>
  138. </member>
  139. <member name="P:Devart.Common.DbCommandBase.CommandType">
  140. <summary>Gets or sets a value indicating how the <see cref="P:Devart.Common.DbCommandBase.CommandText" /> property is to be interpreted. </summary>
  141. <keywords>DbCommandBase.CommandType property </keywords>
  142. <value>One of the <see cref="T:System.Data.CommandType" /> values. The default value is <see cref="T:System.Data.CommandType.Text" />. </value>
  143. </member>
  144. <member name="F:Devart.Common.DbCommandBase.DefaultCommandTimeout">
  145. <summary>Gets or sets the default timeout for all commands. </summary>
  146. <keywords>DbCommandBase.DefaultCommandTimeout field </keywords>
  147. <value>The default timeout for all commands. </value>
  148. </member>
  149. <member name="P:Devart.Common.DbCommandBase.DesignTimeVisible">
  150. <summary>Gets or sets a value indicating whether the command object should be visible in a customized interface control. </summary>
  151. <keywords>DbCommandBase.DesignTimeVisible property </keywords>
  152. <value>
  153. <see langword="true" />, if the command object should be visible in a control; otherwise <see langword="false" />. The default value is <see langword="false" />. </value>
  154. </member>
  155. <member name="M:Devart.Common.DbCommandBase.EndExecuteNonQuery(System.IAsyncResult)">
  156. <summary>Ends an asynchronous invocation of the <see cref="M:Devart.Common.DbCommandBase.ExecuteNonQuery" /> method. </summary>
  157. <keywords>DbCommandBase.EndExecuteNonQuery method </keywords>
  158. <param name="result">The <see cref="T:System.IAsyncResult" /> returned by <see cref="M:Devart.Common.DbCommandBase.BeginExecuteNonQuery" />. </param>
  159. <returns>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>
  160. </member>
  161. <member name="M:Devart.Common.DbCommandBase.EndExecuteReader(System.IAsyncResult)">
  162. <summary>Ends an asynchronous invocation of the <see cref="M:System.Data.Common.DbCommandBase.ExecuteReader" /> method. </summary>
  163. <keywords>DbCommandBase.EndExecuteReader method </keywords>
  164. <param name="result">The <see cref="T:System.IAsyncResult" /> returned by <see cref="M:Devart.Common.DbCommandBase.BeginExecuteReader" />. </param>
  165. <returns>A <see cref="T:Devart.Common.DbDataReaderBase" /> object. </returns>
  166. </member>
  167. <member name="M:Devart.Common.DbCommandBase.ExecuteNonQuery()">
  168. <summary>Executes SQL statement against the <see cref="P:System.Data.Common.DbCommand.Connection" /> and returns the number of rows affected. </summary>
  169. <keywords>DbCommandBase.ExecuteNonQuery method </keywords>
  170. <returns>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>
  171. </member>
  172. <member name="M:Devart.Common.DbCommandBase.ExecutePageReader(System.Data.CommandBehavior,System.Int32,System.Int32)">
  173. <summary>Returns a specific subset of rows when paging through the results of a query. </summary>
  174. <keywords>DbCommandBase.ExecutePageReader method </keywords>
  175. <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values. </param>
  176. <param name="startRecord">Zero-based ordinal of row that result set starts with. </param>
  177. <param name="maxRecords">Quantity of rows in result set. </param>
  178. <returns>A <see cref="T:Devart.Common.DbDataReaderBase" /> object. </returns>
  179. </member>
  180. <member name="M:Devart.Common.DbCommandBase.ExecuteScalar()">
  181. <summary>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. </summary>
  182. <keywords>DbCommandBase.ExecuteScalar method </keywords>
  183. <returns>The first column of the first row in the result set. </returns>
  184. </member>
  185. <member name="M:Devart.Common.DbCommandBase.GetRecordCount()">
  186. <summary>Returns count of records in the resultset. </summary>
  187. <keywords>DbCommandBase.GetRecordCount method </keywords>
  188. <returns>The count of records. </returns>
  189. </member>
  190. <member name="P:Devart.Common.DbCommandBase.Name">
  191. <summary>Gets or sets the name of component that will be displayed in dbMonitor application. </summary>
  192. <keywords>DbCommandBase.Name property </keywords>
  193. <value>The name of the component. </value>
  194. </member>
  195. <member name="P:Devart.Common.DbCommandBase.Owner">
  196. <summary>Gets or sets a form or other container that the <see cref="T:Devart.Common.DbCommandBase" /> instance belongs to. </summary>
  197. <keywords>DbCommandBase.Owner property </keywords>
  198. <value>A form or other container that the object belongs to. </value>
  199. </member>
  200. <member name="P:Devart.Common.DbCommandBase.ParameterCheck">
  201. <summary>Gets or sets a value indicating whether the command object regenerates parameter objects if text of the command is changed. </summary>
  202. <keywords>DbCommandBase.ParameterCheck property </keywords>
  203. <value>Value indicating whether the command object regenerates parameter objects if text of the command is changed. The default value is <see langword="false" />. </value>
  204. </member>
  205. <member name="M:Devart.Common.DbCommandBase.Prepare()">
  206. <summary>Creates a prepared (or compiled) version of the command on the server. </summary>
  207. <keywords>DbCommandBase.Prepare method </keywords>
  208. </member>
  209. <member name="M:Devart.Common.DbCommandBase.ResetCommandTimeout()">
  210. <summary>Resets <see cref="P:Devart.Common.DbCommandBase.CommandTimeout" /> to its default value, which is taken from <see cref="F:Devart.Common.DbCommandBase.DefaultCommandTimeout" />. </summary>
  211. <keywords>DbCommandBase.ResetCommandTimeout method </keywords>
  212. </member>
  213. <member name="P:Devart.Common.DbCommandBase.UpdatedRowSource">
  214. <summary>Gets or sets how command results are applied to the <see cref="T:System.Data.DataRow" /> when used by the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> method of the <see cref="T:System.Data.Common.DbDataAdapter" />. </summary>
  215. <keywords>DbCommandBase.UpdatedRowSource property </keywords>
  216. <value>One of the <see cref="T:System.Data.UpdateRowSource" /> values. </value>
  217. </member>
  218. <member name="T:Devart.Common.DbCommandBuilder">
  219. <summary>Allows to automatically generate single-table commands used to reconcile changes made to a <see cref="T:System.Data.DataSet" /> with the associated data source. </summary>
  220. </member>
  221. <member name="M:Devart.Common.DbCommandBuilder.GetDeleteCommand()">
  222. <summary>Gets the automatically generated SQL statement required to perform deletions when an application calls <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> on the <see cref="T:System.Data.IDbDataAdapter" />. </summary>
  223. <keywords>DbCommandBuilder.GetDeleteCommand method </keywords>
  224. <returns>A <see cref="T:Devart.Common.DbCommandBase" /> with <see cref="P:Devart.Common.DbCommandBase.CommandText" /> containing SQL statement to be executed. </returns>
  225. <overloads>Gets the automatically generated SQL statement required to perform deletions. </overloads>
  226. </member>
  227. <member name="M:Devart.Common.DbCommandBuilder.GetDeleteCommand(System.Boolean)">
  228. <summary>Gets the automatically generated SQL statement required to perform deletions when an application calls <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> on the <see cref="T:System.Data.IDbDataAdapter" />. </summary>
  229. <keywords>DbCommandBuilder.GetDeleteCommand method </keywords>
  230. <param name="useColumnsForParameterNames">Determines whether dotConnect uses columns metadata to make up parameters' names. If <see langword="true" />, the names are composed using colon and name of appropriate column; otherwise the names look like :p1, :p2 etc. </param>
  231. <returns>A <see cref="T:Devart.Common.DbCommandBase" /> with <see cref="P:Devart.Common.DbCommandBase.CommandText" /> containing SQL statement to be executed. </returns>
  232. </member>
  233. <member name="M:Devart.Common.DbCommandBuilder.GetInsertCommand()">
  234. <summary>Gets the automatically generated SQL statement required to perform inserts when an application calls <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> on the <see cref="T:System.Data.IDbDataAdapter" />. </summary>
  235. <keywords>DbCommandBuilder.GetInsertCommand method </keywords>
  236. <returns>A <see cref="T:Devart.Common.DbCommandBase" /> with <see cref="P:Devart.Common.DbCommandBase.CommandText" /> containing SQL statement to be executed. </returns>
  237. <overloads>Gets the automatically generated SQL statement required to perform inserts. </overloads>
  238. </member>
  239. <member name="M:Devart.Common.DbCommandBuilder.GetInsertCommand(System.Boolean)">
  240. <summary>Gets the automatically generated SQL statement required to perform inserts when an application calls <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> on the <see cref="T:System.Data.IDbDataAdapter" />. </summary>
  241. <keywords>DbCommandBuilder.GetInsertCommand method </keywords>
  242. <param name="useColumnsForParameterNames">Determines whether dotConnect uses columns metadata to make up parameters' names. If <see langword="true" />, the names are composed using colon and name of appropriate column; otherwise the names look like :p1, :p2 etc. </param>
  243. <returns>A <see cref="T:Devart.Common.DbCommandBase" /> with <see cref="P:Devart.Common.DbCommandBase.CommandText" /> containing SQL statement to be executed. </returns>
  244. </member>
  245. <member name="M:Devart.Common.DbCommandBuilder.GetInsertCommand(System.String[],System.Boolean)">
  246. <summary>Gets the automatically generated SQL statement required to perform inserts for the specified fields when an application calls <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> on the <see cref="T:System.Data.IDbDataAdapter" />. </summary>
  247. <keywords>DbCommandBuilder.GetInsertCommand method </keywords>
  248. <param name="fields">The array of string containing list of the field names. </param>
  249. <param name="useColumnsForParameterNames">Determines whether dotConnect uses columns metadata to make up parameters' names. If <see langword="true" />, the names are composed using colon and name of appropriate column; otherwise the names look like :p1, :p2 etc. </param>
  250. <returns>A <see cref="T:Devart.Common.DbCommandBase" /> with <see cref="P:Devart.Common.DbCommandBase.CommandText" /> containing SQL statement to be executed. </returns>
  251. </member>
  252. <member name="M:Devart.Common.DbCommandBuilder.GetRefreshCommand()">
  253. <summary>Gets the automatically generated SQL statement required to refresh values from the data source. </summary>
  254. <keywords>DbCommandBuilder.GetRefreshCommand method </keywords>
  255. <returns>A <see cref="T:Devart.Common.DbCommandBase" /> with <see cref="P:Devart.Common.DbCommandBase.CommandText" /> containing SQL statement to be executed. </returns>
  256. <overloads>Gets the automatically generated SQL statement required to refresh values from the data source. </overloads>
  257. </member>
  258. <member name="M:Devart.Common.DbCommandBuilder.GetRefreshCommand(System.Boolean)">
  259. <summary>Gets the automatically generated SQL statement required to refresh values from the data source. </summary>
  260. <keywords>DbCommandBuilder.GetRefreshCommand method </keywords>
  261. <param name="useColumnsForParameterNames">Determines whether dotConnect uses columns metadata to make up parameters' names. If <see langword="true" />, the names are composed using colon and name of appropriate column; otherwise the names look like :p1, :p2 etc. </param>
  262. <returns>A <see cref="T:Devart.Common.DbCommandBase" /> with <see cref="P:Devart.Common.DbCommandBase.CommandText" /> containing SQL statement to be executed. </returns>
  263. </member>
  264. <member name="M:Devart.Common.DbCommandBuilder.GetRefreshCommand(System.String[],System.Boolean)">
  265. <summary>Gets the automatically generated SQL statement required to refresh values from the data source. </summary>
  266. <keywords>DbCommandBuilder.GetRefreshCommand method </keywords>
  267. <param name="fields">The array of string containing list of the field names. </param>
  268. <param name="useColumnsForParameterNames">Determines whether dotConnect uses columns metadata to make up parameters' names. If <see langword="true" />, the names are composed using colon and name of appropriate column; otherwise the names look like :p1, :p2 etc. </param>
  269. <returns>A <see cref="T:Devart.Common.DbCommandBase" /> with <see cref="P:Devart.Common.DbCommandBase.CommandText" /> containing SQL statement to be executed. </returns>
  270. </member>
  271. <member name="M:Devart.Common.DbCommandBuilder.GetUpdateCommand()">
  272. <summary>Gets the automatically generated SQL statement required to perform updates on the data source when an application calls <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> on the <see cref="T:System.Data.IDbDataAdapter" />. </summary>
  273. <keywords>DbCommandBuilder.GetUpdateCommand method </keywords>
  274. <returns>A <see cref="T:Devart.Common.DbCommandBase" /> with <see cref="P:Devart.Common.DbCommandBase.CommandText" /> containing SQL statement to be executed. </returns>
  275. <overloads>Gets the automatically generated SQL statement required to perform updates on the data source. </overloads>
  276. </member>
  277. <member name="M:Devart.Common.DbCommandBuilder.GetUpdateCommand(System.Boolean)">
  278. <summary>Gets the automatically generated SQL statement required to perform updates when an application calls <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> on the <see cref="T:System.Data.IDbDataAdapter" />. </summary>
  279. <keywords>DbCommandBuilder.GetUpdateCommand method </keywords>
  280. <param name="useColumnsForParameterNames">Determines whether dotConnect uses columns metadata to make up parameters' names. If <see langword="true" />, the names are composed using colon and name of appropriate column; otherwise the names look like :p1, :p2 etc. </param>
  281. <returns>A <see cref="T:Devart.Common.DbCommandBase" /> with <see cref="P:Devart.Common.DbCommandBase.CommandText" /> containing SQL statement to be executed. </returns>
  282. </member>
  283. <member name="M:Devart.Common.DbCommandBuilder.GetUpdateCommand(System.String[],System.Boolean)">
  284. <summary>Gets the automatically generated SQL statement required to perform updates for the specified fields when an application calls <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> on the <see cref="T:System.Data.IDbDataAdapter" />. </summary>
  285. <keywords>DbCommandBuilder.GetUpdateCommand method </keywords>
  286. <param name="fields">The array of string containing list of the field names. </param>
  287. <param name="useColumnsForParameterNames">Determines whether dotConnect uses columns metadata to make up parameters' names. If <see langword="true" />, the names are composed using colon and name of appropriate column; otherwise the names look like :p1, :p2 etc. </param>
  288. <returns>A <see cref="T:Devart.Common.DbCommandBase" /> with <see cref="P:Devart.Common.DbCommandBase.CommandText" /> containing SQL statement to be executed. </returns>
  289. </member>
  290. <member name="M:Devart.Common.DbCommandBuilder.QuoteIdentifier(System.String)">
  291. <summary>Returns the string passed as the parameter enclosed in quotes. </summary>
  292. <keywords>DbCommandBuilder.QuoteIdentifier method </keywords>
  293. <param name="unquotedIdentifier">Identifier to be placed inside the quotes. </param>
  294. <returns>The identifier enclosed in quotes. </returns>
  295. </member>
  296. <member name="P:Devart.Common.DbCommandBuilder.QuotePrefix">
  297. <summary>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. </summary>
  298. <keywords>DbCommandBuilder.QuotePrefix property </keywords>
  299. </member>
  300. <member name="P:Devart.Common.DbCommandBuilder.QuoteSuffix">
  301. <summary>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. </summary>
  302. <keywords>DbCommandBuilder.QuoteSuffix property </keywords>
  303. </member>
  304. <member name="P:Devart.Common.DbCommandBuilder.UpdatingFields">
  305. <summary>Gets or sets the list of the fields, separated with ';' (semicolon), that should be updated with the update commands in the <see cref="T:Devart.Common.DbCommandBuilder" />. If the field is not included in the list, it will not be updated. </summary>
  306. <keywords>DbCommandBuilder.UpdatingFields property </keywords>
  307. <value>The list of the fields, separated with ';' (semicolon), that should be updated with the update commands in the <see cref="T:Devart.Common.DbCommandBuilder" />. </value>
  308. </member>
  309. <member name="T:Devart.Common.DbCommandBuilderBase">
  310. <summary>Allows to automatically generate single-table commands used to reconcile changes made to a <see cref="T:System.Data.DataSet" /> with the associated data source. </summary>
  311. </member>
  312. <member name="M:Devart.Common.DbCommandBuilderBase.GetRefreshCommand()">
  313. <summary>Gets the automatically generated SQL statement required to refresh values from the data source. </summary>
  314. <keywords>DbCommandBuilderBase.GetRefreshCommand method </keywords>
  315. <returns>A <see cref="T:Devart.Common.DbCommandBase" /> with <see cref="P:Devart.Common.DbCommandBase.CommandText" /> containing SQL statement to be executed. </returns>
  316. <overloads>Gets the automatically generated SQL statement required to refresh values from the data source. </overloads>
  317. </member>
  318. <member name="M:Devart.Common.DbCommandBuilderBase.GetRefreshCommand(System.Boolean)">
  319. <summary>Gets the automatically generated SQL statement required to refresh values from the data source. </summary>
  320. <keywords>DbCommandBuilderBase.GetRefreshCommand method </keywords>
  321. <param name="useColumnsForParameterNames">Determines whether dotConnect uses columns metadata to make up parameters' names. If <see langword="true" />, the names are composed using colon and name of appropriate column; otherwise the names look like :p1, :p2 etc. </param>
  322. <returns>A <see cref="T:Devart.Common.DbCommandBase" /> with <see cref="P:Devart.Common.DbCommandBase.CommandText" /> containing SQL statement to be executed. </returns>
  323. </member>
  324. <member name="M:Devart.Common.DbCommandBuilderBase.GetRefreshCommand(System.String[],System.Boolean)">
  325. <summary>Gets the automatically generated SQL statement required to refresh values from the data source. </summary>
  326. <keywords>DbCommandBuilderBase.GetRefreshCommand method </keywords>
  327. <param name="fields">The array of string containing list of the field names. </param>
  328. <param name="useColumnsForParameterNames">Determines whether dotConnect uses columns metadata to make up parameters' names. If <see langword="true" />, the names are composed using colon and name of appropriate column; otherwise the names look like :p1, :p2 etc. </param>
  329. <returns>A <see cref="T:Devart.Common.DbCommandBase" /> with <see cref="P:Devart.Common.DbCommandBase.CommandText" /> containing SQL statement to be executed. </returns>
  330. </member>
  331. <member name="P:Devart.Common.DbCommandBuilderBase.KeyFields">
  332. <summary>Gets or sets string containing list of key field names separated by semicolon. They are used to generate update commands. </summary>
  333. <keywords>DbCommandBuilderBase.KeyFields property </keywords>
  334. <value>The string containing list of key field names separated by semicolon. </value>
  335. </member>
  336. <member name="P:Devart.Common.DbCommandBuilderBase.Quoted">
  337. <summary>Gets or sets whether the command builder quotes all the names of data source objects. </summary>
  338. <keywords>DbCommandBuilderBase.Quoted property </keywords>
  339. <value>
  340. <see langword="true" /> if the command builder will quote all the names of data source objects; otherwise, <see langword="false" />. The default value is <see langword="false" />. </value>
  341. </member>
  342. <member name="P:Devart.Common.DbCommandBuilderBase.RefreshMode">
  343. <summary>Gets or sets a value that indicates whether and how the <see cref="T:Devart.Common.DbCommandBuilderBase" /> should retrieve field values adjusted by server after an update. </summary>
  344. <keywords>DbCommandBuilderBase.RefreshMode property </keywords>
  345. <value>One of the <see cref="T:Devart.Common.RefreshRowMode" /> values. </value>
  346. </member>
  347. <member name="M:Devart.Common.DbCommandBuilderBase.RefreshSchema()">
  348. <summary>Refreshes the data source schema information used to generate INSERT, UPDATE, or DELETE statements. </summary>
  349. <keywords>DbCommandBuilderBase.RefreshSchema method </keywords>
  350. </member>
  351. <member name="P:Devart.Common.DbCommandBuilderBase.RefreshingFields">
  352. <summary>Gets or sets list of fields whose values should be retrieved after a DML statement execution. </summary>
  353. <keywords>DbCommandBuilderBase.RefreshingFields property </keywords>
  354. <value>The string containing list of field names separated by semicolon. </value>
  355. </member>
  356. <member name="P:Devart.Common.DbCommandBuilderBase.UpdatingTable">
  357. <summary>Gets or sets table name to generate update statements for. </summary>
  358. <keywords>DbCommandBuilderBase.UpdatingTable property </keywords>
  359. <value>The name of the table. </value>
  360. </member>
  361. <member name="P:Devart.Common.DbCommandBuilderBase.UseCatalog">
  362. <summary>Specifies whether the catalog identifier is included in data source object names. </summary>
  363. <keywords>DbCommandBuilderBase.UseCatalog property </keywords>
  364. <value><see langword="true" /> if the catalog identifier is included in data source object names; otherwise, <see langword="false" />. The default value is <see langword="true" />. </value>
  365. </member>
  366. <member name="P:Devart.Common.DbCommandBuilderBase.UseSchema">
  367. <summary>Specifies whether the schema identifier is included in data source object names. </summary>
  368. <keywords>DbCommandBuilderBase.UseSchema property </keywords>
  369. <value><see langword="true" /> if the schema identifier is included in data source object names; otherwise, <see langword="false" />. The default value is <see langword="true" />. </value>
  370. </member>
  371. <member name="T:Devart.Common.DbConnectionStringBuilder">
  372. <summary>Generates automatically connection strings used to connect to a data source. </summary>
  373. </member>
  374. <member name="M:Devart.Common.DbConnectionStringBuilder.#ctor()">
  375. <summary>Initializes a new instance of the <see cref="T:Devart.Common.DbConnectionStringBuilder" /> class. </summary>
  376. </member>
  377. <member name="M:Devart.Common.DbConnectionStringBuilder.EquivalentTo(Devart.Common.DbConnectionStringBuilder,System.Boolean)">
  378. <summary>Compares the specified connection information in this <see cref="T:Devart.Common.DbConnectionStringBuilder" /> object with the specified connection information in the supplied <see cref="T:Devart.Common.DbConnectionStringBuilder" /> object. </summary>
  379. <keywords>DbConnectionStringBuilder.EquivalentTo method </keywords>
  380. <param name="connectionStringBuilder">The <see cref="T:Devart.Common.DbConnectionStringBuilder" /> to be compared with this <see cref="T:Devart.Common.DbConnectionStringBuilder" /> object. </param>
  381. <param name="loginOnly">If this parameter is <see langword="true" />, only the following <see cref="T:Devart.Common.DbConnectionStringBuilder" /> properties are compared:
  382. <ul>
  383. <li><see cref="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.Password" /></li>
  384. <li><see cref="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.DataSource" /></li>
  385. <li><see cref="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.Encryption" /></li>
  386. </ul>
  387. If this parameter is <see langword="false" />, all the <see cref="T:Devart.Common.DbConnectionStringBuilder" /> properties are compared. </param>
  388. <returns><see langword="true" />if the specified connection information in both of the <see cref="T:Devart.Common.DbConnectionStringBuilder" /> objects is equal; otherwise, <see langword="false" />. </returns>
  389. <overloads>Compares the specified connection information in this <see cref="T:Devart.Common.DbConnectionStringBuilder" /> object with the specified connection information in the supplied <see cref="T:Devart.Common.DbConnectionStringBuilder" /> object. </overloads>
  390. </member>
  391. <member name="P:Devart.Common.DbConnectionStringBuilder.InitializationCommand">
  392. <summary>Specifies a data source-specific command that should be executed immediately after establishing the connection. </summary>
  393. <keywords>DbConnectionStringBuilder.InitializationCommand property </keywords>
  394. <value>A data source-specific command that should be executed immediately after establishing the connection. </value>
  395. </member>
  396. <member name="P:Devart.Common.DbConnectionStringBuilder.Item(System.String)">
  397. <summary>Gets or sets the value associated with the specified key. </summary>
  398. <keywords>DbConnectionStringBuilder.Item property </keywords>
  399. <param name="keyword">The key of the item to get or set. </param>
  400. <value>Value associated with the specified key. </value>
  401. </member>
  402. <member name="P:Devart.Common.DbConnectionStringBuilder.RunOnceCommand">
  403. <summary>Specifies a data source-specific command that should be executed immediately after first establishing the connection. Unlike <see cref="P:Devart.Common.DbConnectionStringBuilder.InitializationCommand" />, this command is not executed when a connection is taken from the pool. </summary>
  404. <keywords>DbConnectionStringBuilder.RunOnceCommand property </keywords>
  405. <value>A data source-specific command that should be executed immediately after establishing the connection. </value>
  406. </member>
  407. <member name="T:Devart.Common.DbDataAdapter">
  408. <summary>Represents a set of data commands and a data source connection that are used to fill the <see cref="T:System.Data.DataSet" /> and update a data source. </summary>
  409. </member>
  410. <member name="M:Devart.Common.DbDataAdapter.FillPage(System.Data.DataTable,System.Int32,System.Int32)">
  411. <summary>Fills associated DataSet with specified range of rows. </summary>
  412. <keywords>DbDataAdapter.FillPage method </keywords>
  413. <param name="dataTable">A <b>DataTable</b> to fill. </param>
  414. <param name="startRecord">Ordinal of row that result set starts with. </param>
  415. <param name="maxRecords">Quantity of rows to fill. </param>
  416. <returns>Number of rows filled. </returns>
  417. </member>
  418. <member name="T:Devart.Common.DbDataReaderBase">
  419. <summary>Allows to read a forward-only stream of rows from a data source. </summary>
  420. </member>
  421. <member name="M:Devart.Common.DbDataReaderBase.Close()">
  422. <summary>Closes the <see cref="T:Devart.Common.DbDataReaderBase" /> object. </summary>
  423. <keywords>DbDataReaderBase.Close method </keywords>
  424. </member>
  425. <member name="P:Devart.Common.DbDataReaderBase.Depth">
  426. <summary>Gets a value indicating the depth of nesting for the current row. </summary>
  427. <keywords>DbDataReaderBase.Depth property </keywords>
  428. <value>The depth of nesting for the current row. </value>
  429. </member>
  430. <member name="P:Devart.Common.DbDataReaderBase.EndOfData">
  431. <summary>Indicates whether the <see cref="T:Devart.Common.DbDataReaderBase" /> has been read completely. </summary>
  432. <keywords>DbDataReaderBase.EndOfData property </keywords>
  433. <value>
  434. <see langword="true" /> if there is no more data in <see cref="T:Devart.Common.DbDataReaderBase" />. This property is <see langword="false" /> if there is more data to read, or there were no data at all. </value>
  435. </member>
  436. <member name="P:Devart.Common.DbDataReaderBase.FieldCount">
  437. <summary>Gets the number of columns in the current row. </summary>
  438. <keywords>DbDataReaderBase.FieldCount property </keywords>
  439. <value>When not positioned in a valid record set, 0; otherwise the number of columns in the current record. The default value is -1. </value>
  440. </member>
  441. <member name="M:Devart.Common.DbDataReaderBase.GetBoolean(System.String)">
  442. <summary>Gets the value of the specified column as a Boolean. </summary>
  443. <keywords>DbDataReaderBase.GetBoolean method </keywords>
  444. <param name="name">The name of the column. </param>
  445. <returns>The value of the specified column. </returns>
  446. </member>
  447. <member name="M:Devart.Common.DbDataReaderBase.GetByte(System.String)">
  448. <summary>Gets the value of the specified column as a byte. </summary>
  449. <keywords>DbDataReaderBase.GetByte method </keywords>
  450. <param name="name">The name of the column. </param>
  451. <returns>The value of the specified column. </returns>
  452. </member>
  453. <member name="M:Devart.Common.DbDataReaderBase.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
  454. <summary>Reads a stream of bytes from the specified column offset into the buffer as an array starting at the given buffer offset. </summary>
  455. <keywords>DbDataReaderBase.GetBytes method </keywords>
  456. <param name="ordinal">The zero-based column ordinal. </param>
  457. <param name="fieldOffset">The index within the field where the read operation is to begin. </param>
  458. <param name="buffer">The buffer into which to read the stream of bytes. </param>
  459. <param name="bufferOffset">The index where buffer is to begin the write operation. </param>
  460. <param name="length">The maximum length to copy into the buffer. </param>
  461. <returns>
  462. <para>The actual number of bytes read.</para> </returns>
  463. </member>
  464. <member name="M:Devart.Common.DbDataReaderBase.GetBytes(System.String,System.Int64,System.Byte[],System.Int32,System.Int32)">
  465. <summary>Reads a stream of bytes from the specified column offset into the buffer as an array starting at the given buffer offset. </summary>
  466. <keywords>DbDataReaderBase.GetBytes method </keywords>
  467. <param name="name">The name of the column. </param>
  468. <param name="fieldOffset">The index within the field where the read operation is to begin. </param>
  469. <param name="buffer">The buffer into which to read the stream of bytes. </param>
  470. <param name="bufferOffset">The index where buffer is to begin the write operation. </param>
  471. <param name="length">The maximum length to copy into the buffer. </param>
  472. <returns>
  473. <para>The actual number of bytes read.</para> </returns>
  474. </member>
  475. <member name="M:Devart.Common.DbDataReaderBase.GetChar(System.String)">
  476. <summary>Gets the value of the specified column as a single character. </summary>
  477. <keywords>DbDataReaderBase.GetChar method </keywords>
  478. <param name="name">The name of the column. </param>
  479. <returns>The value of the specified column. </returns>
  480. </member>
  481. <member name="M:Devart.Common.DbDataReaderBase.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
  482. <summary>Reads a stream of characters from the specified column offset into the buffer as an array starting at the given buffer offset. </summary>
  483. <keywords>DbDataReaderBase.GetChars method </keywords>
  484. <param name="ordinal">The zero-based column ordinal. </param>
  485. <param name="fieldOffset">The index within the row where the read operation is to begin. </param>
  486. <param name="buffer">The buffer into which to copy data. </param>
  487. <param name="bufferOffset">The index where buffer is to begin the write operation. </param>
  488. <param name="length">The maximum number of characters to read. </param>
  489. <returns>
  490. <para>The actual number of characters read.</para> </returns>
  491. </member>
  492. <member name="M:Devart.Common.DbDataReaderBase.GetChars(System.String,System.Int64,System.Char[],System.Int32,System.Int32)">
  493. <summary>Reads a stream of characters from the specified column offset into the buffer as an array starting at the given buffer offset. </summary>
  494. <keywords>DbDataReaderBase.GetChars method </keywords>
  495. <param name="name">The name of the column. </param>
  496. <param name="fieldOffset">The index within the row where the read operation is to begin. </param>
  497. <param name="buffer">The buffer into which to copy data. </param>
  498. <param name="bufferOffset">The index where buffer is to begin the write operation. </param>
  499. <param name="length">The maximum number of characters to read. </param>
  500. <returns>
  501. <para>The actual number of characters read.</para> </returns>
  502. </member>
  503. <member name="M:Devart.Common.DbDataReaderBase.GetDataTypeName(System.Int32)">
  504. <summary>Gets the name of the source data type. </summary>
  505. <keywords>DbDataReaderBase.GetDataTypeName method </keywords>
  506. <param name="ordinal">The zero-based column ordinal. </param>
  507. <returns>The name of the back-end data type. </returns>
  508. </member>
  509. <member name="M:Devart.Common.DbDataReaderBase.GetDataTypeName(System.String)">
  510. <summary>Gets the name of the source data type. </summary>
  511. <keywords>DbDataReaderBase.GetDataTypeName method </keywords>
  512. <param name="name">The name of the column. </param>
  513. <returns>The name of the back-end data type. </returns>
  514. </member>
  515. <member name="M:Devart.Common.DbDataReaderBase.GetDateTime(System.String)">
  516. <summary>Gets the value of the specified column as a DateTime object. </summary>
  517. <keywords>DbDataReaderBase.GetDateTime method </keywords>
  518. <param name="name">The name of the column. </param>
  519. <returns>The value of the specified column. </returns>
  520. </member>
  521. <member name="M:Devart.Common.DbDataReaderBase.GetDateTimeOffset(System.Int32)">
  522. <summary>Gets the value of the specified column as a <see cref="T:System.DateTimeOffset" /> object. </summary>
  523. <keywords>DbDataReaderBase.GetDateTimeOffset method </keywords>
  524. <param name="ordinal">The zero-based column ordinal. </param>
  525. <returns>The value of the specified column. </returns>
  526. </member>
  527. <member name="M:Devart.Common.DbDataReaderBase.GetDateTimeOffset(System.String)">
  528. <summary>Gets the value of the specified column as a DateTimeOffset object. </summary>
  529. <keywords>DbDataReaderBase.GetDateTimeOffset method </keywords>
  530. <param name="name">The name of the column. </param>
  531. <returns>The value of the specified column. </returns>
  532. </member>
  533. <member name="M:Devart.Common.DbDataReaderBase.GetDecimal(System.String)">
  534. <summary>Gets the value of the specified column as a DateTime object. </summary>
  535. <keywords>DbDataReaderBase.GetDecimal method </keywords>
  536. <param name="name">The name of the column. </param>
  537. <returns>The value of the specified column. </returns>
  538. </member>
  539. <member name="M:Devart.Common.DbDataReaderBase.GetDouble(System.String)">
  540. <summary>Gets the value of the specified column as a double-precision floating point number. </summary>
  541. <keywords>DbDataReaderBase.GetDouble method </keywords>
  542. <param name="name">The name of the column. </param>
  543. <returns>The value of the specified column. </returns>
  544. </member>
  545. <member name="M:Devart.Common.DbDataReaderBase.GetEnumerator()">
  546. <summary>Fills <see cref="T:System.Collection.IEnumerator" /> object with data from <see cref="T:Devart.Common.DbDataReaderBase" />. </summary>
  547. <keywords>DbDataReaderBase.GetEnumerator method </keywords>
  548. <returns>
  549. <see cref="T:System.Collection.IEnumerator" /> object to be populated with data. </returns>
  550. </member>
  551. <member name="M:Devart.Common.DbDataReaderBase.GetFieldType(System.Int32)">
  552. <summary>Gets the <see cref="T:System.Type" /> that is the data type of the object. </summary>
  553. <keywords>DbDataReaderBase.GetFieldType method </keywords>
  554. <param name="ordinal">The zero-based column ordinal. </param>
  555. <returns>The <see cref="T:System.Type" /> that is the data type of the object. </returns>
  556. </member>
  557. <member name="M:Devart.Common.DbDataReaderBase.GetFieldType(System.String)">
  558. <summary>Gets the <see cref="T:System.Type" /> that is the data type of the object. </summary>
  559. <keywords>DbDataReaderBase.GetFieldType method </keywords>
  560. <param name="name">The name of the column. </param>
  561. <returns>The <see cref="T:System.Type" /> that is the data type of the object. </returns>
  562. </member>
  563. <member name="M:Devart.Common.DbDataReaderBase.GetFloat(System.String)">
  564. <summary>Gets the value of the specified column as a single-precision floating point number. </summary>
  565. <keywords>DbDataReaderBase.GetFloat method </keywords>
  566. <param name="name">The name of the column. </param>
  567. <returns>The value of the specified column. </returns>
  568. </member>
  569. <member name="M:Devart.Common.DbDataReaderBase.GetGuid(System.String)">
  570. <summary>Gets the value of the specified column as a globally-unique identifier (GUID). </summary>
  571. <keywords>DbDataReaderBase.GetGuid method </keywords>
  572. <param name="name">The name of the column. </param>
  573. <returns>The value of the specified column. </returns>
  574. </member>
  575. <member name="M:Devart.Common.DbDataReaderBase.GetInt16(System.String)">
  576. <summary>Gets the value of the specified column as a 16-bit signed integer. </summary>
  577. <keywords>DbDataReaderBase.GetInt16 method </keywords>
  578. <param name="name">The name of the column. </param>
  579. <returns>The value of the specified column. </returns>
  580. </member>
  581. <member name="M:Devart.Common.DbDataReaderBase.GetInt32(System.String)">
  582. <summary>Gets the value of the specified column as a 32-bit signed integer. </summary>
  583. <keywords>DbDataReaderBase.GetInt32 method </keywords>
  584. <param name="name">The name of the column. </param>
  585. <returns>The value of the specified column. </returns>
  586. </member>
  587. <member name="M:Devart.Common.DbDataReaderBase.GetInt64(System.String)">
  588. <summary>Gets the value of the specified column as a 64-bit signed integer. </summary>
  589. <keywords>DbDataReaderBase.GetInt64 method </keywords>
  590. <param name="name">The name of the column. </param>
  591. <returns>The value of the specified column. </returns>
  592. </member>
  593. <member name="M:Devart.Common.DbDataReaderBase.GetName(System.Int32)">
  594. <summary>
  595. <para>Gets the name of the specified column.</para> </summary>
  596. <keywords>DbDataReaderBase.GetName method </keywords>
  597. <param name="ordinal">The zero-based column ordinal. </param>
  598. <returns>
  599. <para>A string that is the name of the specified column.</para> </returns>
  600. </member>
  601. <member name="M:Devart.Common.DbDataReaderBase.GetOrdinal(System.String)">
  602. <summary>Gets the column ordinal, given the name of the column. </summary>
  603. <keywords>DbDataReaderBase.GetOrdinal method </keywords>
  604. <param name="name">The name of the column. </param>
  605. <returns>The zero-based column ordinal. </returns>
  606. </member>
  607. <member name="M:Devart.Common.DbDataReaderBase.GetProviderSpecificFieldType(System.String)">
  608. <summary>Returns the provider-specific field type of the specified column. </summary>
  609. <keywords>DbDataReaderBase.GetProviderSpecificFieldType method </keywords>
  610. <param name="name">The name of the column. </param>
  611. <returns>The provider-specific field type of the specified column. </returns>
  612. </member>
  613. <member name="M:Devart.Common.DbDataReaderBase.GetProviderSpecificValue(System.String)">
  614. <summary>Gets the value of the specified column as an instance of <see cref="T:System.Object" /> </summary>
  615. <keywords>DbDataReaderBase.GetProviderSpecificValue method </keywords>
  616. <param name="name">The name of the column. </param>
  617. <returns>The provider-specific field type of the specified column. </returns>
  618. </member>
  619. <member name="M:Devart.Common.DbDataReaderBase.GetSchemaTable()">
  620. <summary>Returns a <see cref="T:System.Data.DataTable" /> that describes the column metadata of the <see cref="T:Devart.Common.DbDataReaderBase" />. </summary>
  621. <keywords>DbDataReaderBase.GetSchemaTable method </keywords>
  622. <returns>A <see cref="T:System.Data.DataTable" /> that describes the column metadata. </returns>
  623. </member>
  624. <member name="M:Devart.Common.DbDataReaderBase.GetString(System.String)">
  625. <summary>Gets the value of the specified column as an instance of <see cref="T:System.String" /> </summary>
  626. <keywords>DbDataReaderBase.GetString method </keywords>
  627. <param name="name">The name of the column. </param>
  628. <returns>The value of the specified column. </returns>
  629. </member>
  630. <member name="M:Devart.Common.DbDataReaderBase.GetValue(System.Int32)">
  631. <summary>Gets the value of the specified column in its native format. </summary>
  632. <keywords>DbDataReaderBase.GetValue method </keywords>
  633. <param name="ordinal">The zero-based column ordinal. </param>
  634. <returns>The value to return. </returns>
  635. </member>
  636. <member name="M:Devart.Common.DbDataReaderBase.GetValue(System.String)">
  637. <summary>Gets the value of the specified column in its native format. </summary>
  638. <keywords>DbDataReaderBase.GetValue method </keywords>
  639. <param name="name">The value of the specified column. </param>
  640. <returns>The value to return. </returns>
  641. </member>
  642. <member name="M:Devart.Common.DbDataReaderBase.GetValues(System.Object[])">
  643. <summary>Gets all attribute columns in the collection for the current row. </summary>
  644. <keywords>DbDataReaderBase.GetValues method </keywords>
  645. <param name="values">An array of <see cref="T:System.Object" /> into which to copy the attribute columns. </param>
  646. <returns>The number of instances of <see cref="T:System.Object" /> in the array. </returns>
  647. </member>
  648. <member name="P:Devart.Common.DbDataReaderBase.HasRows">
  649. <summary>Gets a value indicating whether the <see cref="T:Devart.Common.DbDataReaderBase" /> contains one or more rows. </summary>
  650. <keywords>DbDataReaderBase.HasRows property </keywords>
  651. <value>
  652. <see langword="true" /> if the <see cref="T:Devart.Common.DbDataReaderBase" /> contains one or more rows; otherwise, <see langword="false" />. </value>
  653. </member>
  654. <member name="P:Devart.Common.DbDataReaderBase.IsClosed">
  655. <summary>Gets a value indicating whether the data reader is closed. </summary>
  656. <keywords>DbDataReaderBase.IsClosed property </keywords>
  657. <value>
  658. <see langword="true" /> if the <see cref="T:Devart.Common.DbDataReaderBase" /> is closed; otherwise, <see langword="false" />. </value>
  659. </member>
  660. <member name="M:Devart.Common.DbDataReaderBase.IsDBNull(System.Int32)">
  661. <summary>Gets a value indicating whether the column contains non-existent or missing values. </summary>
  662. <keywords>DbDataReaderBase.IsDBNull method </keywords>
  663. <param name="ordinal">The zero-based column ordinal. </param>
  664. <returns>
  665. <see langword="true" /> if the specified column value is equivalent to <see cref="T:System.DBNull" />; otherwise, <see langword="false" />. </returns>
  666. </member>
  667. <member name="M:Devart.Common.DbDataReaderBase.IsDBNull(System.String)">
  668. <summary>Gets a value indicating whether the column contains non-existent or missing values. </summary>
  669. <keywords>DbDataReaderBase.IsDBNull method </keywords>
  670. <param name="name">The value of the specified column. </param>
  671. <returns>
  672. <see langword="true" /> if the specified column value is equivalent to <see cref="T:System.DBNull" />; otherwise, <see langword="false" />. </returns>
  673. </member>
  674. <member name="P:Devart.Common.DbDataReaderBase.Item(System.Int32)">
  675. <summary>Gets the value of the specified column in its native format given the column ordinal. </summary>
  676. <keywords>DbDataReaderBase.Item property </keywords>
  677. <param name="ordinal">The zero-based column ordinal. </param>
  678. <value>The value of the specified column in its native format. </value>
  679. </member>
  680. <member name="P:Devart.Common.DbDataReaderBase.Item(System.String)">
  681. <summary>Gets the value of the specified column in its native format given the column name. </summary>
  682. <keywords>DbDataReaderBase.Item property </keywords>
  683. <param name="name">The column name. </param>
  684. <value>The value of the specified column in its native format. </value>
  685. </member>
  686. <member name="M:Devart.Common.DbDataReaderBase.NextResult()">
  687. <summary>Advances the data reader to the next result, when reading the results of batch SQL statements. </summary>
  688. <keywords>DbDataReaderBase.NextResult method </keywords>
  689. <returns>
  690. <see langword="true" /> if there are more result sets; otherwise, <see langword="false" />. </returns>
  691. </member>
  692. <member name="M:Devart.Common.DbDataReaderBase.Read()">
  693. <summary>Advances the <see cref="T:Devart.Common.DbDataReaderBase" /> to the next record. </summary>
  694. <keywords>DbDataReaderBase.Read method </keywords>
  695. <returns>
  696. <see langword="true" /> if there are more rows; otherwise, <see langword="false" />. </returns>
  697. </member>
  698. <member name="P:Devart.Common.DbDataReaderBase.RecordsAffected">
  699. <summary>Gets the number of rows changed, inserted, or deleted by execution of the SQL statement. </summary>
  700. <keywords>DbDataReaderBase.RecordsAffected property </keywords>
  701. <value>The number of rows changed, inserted, or deleted. -1 for SELECT statements; 0 if no rows were affected, or the statement failed. </value>
  702. </member>
  703. <member name="T:Devart.Common.DbDataSet">
  704. <summary>Represents an in-memory cache of data with connected model support. </summary>
  705. </member>
  706. <member name="M:Devart.Common.DbDataSet.#ctor()">
  707. <summary>Initializes a new instance of a <see cref="T:Devart.Common.DbDataSet" /> class with the given name. </summary>
  708. </member>
  709. <member name="M:Devart.Common.DbDataSet.Clear()">
  710. <summary>Clears the <see cref="T:Devart.Common.DbDataSet" /> of any data by removing all rows in all tables. </summary>
  711. <keywords>DbDataSet.Clear method </keywords>
  712. <overloads>Clears the <see cref="T:Devart.Common.DbDataSet" /> of any data by removing all rows in all tables. </overloads>
  713. </member>
  714. <member name="M:Devart.Common.DbDataSet.Clone()">
  715. <summary>Copies the structure of the <see cref="T:Devart.Common.DbDataSet" />, including all <see cref="T:Devart.Common.DbDataTable" /> schemas, relations, and constraints. Does not copy any data. </summary>
  716. <keywords>DbDataSet.Clone method </keywords>
  717. </member>
  718. <member name="P:Devart.Common.DbDataSet.Connection">
  719. <summary>Gets or sets <see cref="T:Devart.Common.DbConnectionBase" /> used by the <see cref="T:Devart.Common.DbDataSet" />. </summary>
  720. <keywords>DbDataSet.Connection property </keywords>
  721. <value>A <see cref="T:Devart.Common.DbDataSet" /> object. </value>
  722. </member>
  723. <member name="M:Devart.Common.DbDataSet.CreateDataTable()">
  724. <summary>Creates new table in the <see cref="T:Devart.Common.DbDataSet" />. </summary>
  725. <keywords>DbDataSet.CreateDataTable method </keywords>
  726. <returns>A new table object. </returns>
  727. </member>
  728. <member name="M:Devart.Common.DbDataSet.Fill()">
  729. <summary>Fills the <see cref="P:System.Data.DataTable.Rows" /> collection of the <see cref="T:Devart.Common.DbDataSet" /> with rows from the data source. </summary>
  730. <keywords>DbDataSet.Fill method </keywords>
  731. </member>
  732. <member name="P:Devart.Common.DbDataSet.Name">
  733. <summary>Gets or sets name of the <see cref="T:Devart.Common.DbDataSet" />. </summary>
  734. <keywords>DbDataSet.Name property </keywords>
  735. <value>The name of the <see cref="T:Devart.Common.DbDataSet" />. </value>
  736. </member>
  737. <member name="P:Devart.Common.DbDataSet.Owner">
  738. <summary>Gets or sets a form or other container that the <see cref="T:Devart.Common.DbDataSet" /> instance belongs to. </summary>
  739. <keywords>DbDataSet.Owner property </keywords>
  740. <value>A form or other container that the object belongs to. </value>
  741. </member>
  742. <member name="M:Devart.Common.DbDataSet.ReadXml(System.IO.Stream)">
  743. <summary>Reads XML schema and data into the <see cref="T:Devart.Common.DbDataSet" /> using the specified <see cref="E:System.IO.Stream" />. </summary>
  744. <keywords>DbDataSet.ReadXml method </keywords>
  745. <param name="stream">An object that derives from <see cref="E:System.IO.Stream" />. </param>
  746. <returns>The <see cref="E:System.Data.XmlReadMode" /> used to read the data. </returns>
  747. <overloads>Reads XML schema and data into the <see cref="T:Devart.Common.DbDataSet" />. </overloads>
  748. </member>
  749. <member name="M:Devart.Common.DbDataSet.ReadXml(System.IO.Stream,System.Data.XmlReadMode)">
  750. <summary>Reads XML schema and data into the <see cref="T:Devart.Common.DbDataSet" /> using the specified <see cref="E:System.IO.Stream" />. </summary>
  751. <keywords>DbDataSet.ReadXml method </keywords>
  752. <param name="stream">An object that derives from <see cref="E:System.IO.Stream" />. </param>
  753. <param name="mode">One of the <see cref="E:System.Data.XmlReadMode" /> values. </param>
  754. <returns>The <see cref="E:System.Data.XmlReadMode" /> used to read the data. </returns>
  755. </member>
  756. <member name="M:Devart.Common.DbDataSet.ReadXml(System.IO.TextReader)">
  757. <summary>Reads XML schema and data into the <see cref="T:Devart.Common.DbDataSet" /> using the specified <see cref="E:System.IO.TextReader" />. </summary>
  758. <keywords>DbDataSet.ReadXml method </keywords>
  759. <param name="reader">The <see cref="E:System.IO.TextReader" /> from which to read the schema and data. </param>
  760. <returns>The <see cref="E:System.Data.XmlReadMode" /> used to read the data. </returns>
  761. </member>
  762. <member name="M:Devart.Common.DbDataSet.ReadXml(System.IO.TextReader,System.Data.XmlReadMode)">
  763. <summary>Reads XML schema and data into the <see cref="T:Devart.Common.DbDataSet" /> using the specified <see cref="E:System.IO.TextReader" />. </summary>
  764. <keywords>DbDataSet.ReadXml method </keywords>
  765. <param name="reader">The <see cref="E:System.IO.TextReader" /> from which to read the schema and data. </param>
  766. <param name="mode">One of the <see cref="E:System.Data.XmlReadMode" /> values. </param>
  767. <returns>The <see cref="E:System.Data.XmlReadMode" /> used to read the data. </returns>
  768. </member>
  769. <member name="M:Devart.Common.DbDataSet.ReadXml(System.String)">
  770. <summary>Reads XML schema and data into the <see cref="T:Devart.Common.DbDataSet" /> using the specified file. </summary>
  771. <keywords>DbDataSet.ReadXml method </keywords>
  772. <param name="fileName">The filename (including the path) from which to read. </param>
  773. <returns>The <see cref="E:System.Data.XmlReadMode" /> used to read the data. </returns>
  774. </member>
  775. <member name="M:Devart.Common.DbDataSet.ReadXml(System.String,System.Data.XmlReadMode)">
  776. <summary>Reads XML schema and data into the <see cref="T:Devart.Common.DbDataSet" /> using the specified file and <see cref="E:System.Data.XmlReadMode" />. </summary>
  777. <keywords>DbDataSet.ReadXml method </keywords>
  778. <param name="fileName">The filename (including the path) from which to read. </param>
  779. <param name="mode">One of the <see cref="E:System.Data.XmlReadMode" /> values. </param>
  780. <returns>The <see cref="E:System.Data.XmlReadMode" /> used to read the data. </returns>
  781. </member>
  782. <member name="M:Devart.Common.DbDataSet.ReadXml(System.Xml.XmlReader)">
  783. <summary>Reads XML schema and data into the <see cref="T:Devart.Common.DbDataSet" /> using the specified <see cref="E:System.Xml.XmlReader" />. </summary>
  784. <keywords>DbDataSet.ReadXml method </keywords>
  785. <param name="reader">The <see cref="E:System.Xml.XmlReader" /> from which to read the schema and data. </param>
  786. <returns>The <see cref="E:System.Data.XmlReadMode" /> used to read the data. </returns>
  787. </member>
  788. <member name="M:Devart.Common.DbDataSet.ReadXml(System.Xml.XmlReader,System.Data.XmlReadMode)">
  789. <summary>Reads XML schema and data into the <see cref="T:Devart.Common.DbDataSet" /> using the specified <see cref="E:System.Xml.XmlReader" />. </summary>
  790. <keywords>DbDataSet.ReadXml method </keywords>
  791. <param name="reader">The <see cref="E:System.Xml.XmlReader" /> from which to read the schema and data. </param>
  792. <param name="mode">One of the <see cref="E:System.Data.XmlReadMode" /> values. </param>
  793. <returns>The <see cref="E:System.Data.XmlReadMode" /> used to read the data. </returns>
  794. </member>
  795. <member name="P:Devart.Common.DbDataSet.RemotingFormat">
  796. <summary>Gets or sets a <see cref="T:System.Data.SerializationFormat" /> for the <see cref="T:Devart.Common.DbDataSet" /> used during remoting. </summary>
  797. <keywords>DbDataSet.RemotingFormat property </keywords>
  798. <value>A <see cref="T:System.Data.SerializationFormat" /> object. </value>
  799. </member>
  800. <member name="M:Devart.Common.DbDataSet.Update()">
  801. <summary>Executes the appropriate commands to delete, insert, or update rows in the data source. </summary>
  802. <keywords>DbDataSet.Update method </keywords>
  803. </member>
  804. <member name="T:Devart.Common.DbDataSourceEnumerator">
  805. <summary>Retrieves list of available servers in the network. </summary>
  806. </member>
  807. <member name="M:Devart.Common.DbDataSourceEnumerator.GetDataSources()">
  808. <summary>Retrieves a <b>DataTable</b> containing information about all visible instances of the server. </summary>
  809. <keywords>DbDataSourceEnumerator.GetDataSources method </keywords>
  810. <returns>A <b>DataTable</b> containing information about the visible instances of the associated data source. </returns>
  811. </member>
  812. <member name="T:Devart.Common.DbDataTable">
  813. <summary>The <see cref="T:Devart.Common.DbDataTable" /> class represents a single object that provides all of the functionality needed to retrieve and manipulate data from a data source. The <see cref="T:Devart.Common.DbDataTable" /> class is built using existing ADO.NET components. </summary>
  814. </member>
  815. <member name="P:Devart.Common.DbDataTable.Active">
  816. <summary>Gets or sets whether a <see cref="T:Devart.Common.DbDataTable" /> is filled with data from a data source. </summary>
  817. <keywords>DbDataTable.Active property </keywords>
  818. <value>
  819. <see langword="true" /> if a <see cref="T:Devart.Common.DbDataTable" /> is populated with data from a data source; otherwise, <see langword="false" />. The default value is <see langword="false" />. </value>
  820. </member>
  821. <member name="M:Devart.Common.DbDataTable.BeginFill(System.AsyncCallback,System.Object)">
  822. <summary>Starts an asynchronous invocation of the <see cref="M:Devart.Common.DbDataTable.Fill()" /> method. </summary>
  823. <keywords>DbDataTable.BeginFill method </keywords>
  824. <param name="callback">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. </param>
  825. <param name="stateObject">State information that is passed on to the delegate. </param>
  826. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  827. </member>
  828. <member name="P:Devart.Common.DbDataTable.CachedUpdates">
  829. <summary>Enables or disables cached updates mode. </summary>
  830. <keywords>DbDataTable.CachedUpdates property </keywords>
  831. <value>If <see langword="true" />, the changes made to <see cref="T:Devart.Common.DbDataTable" /> are not sent to server until the <see cref="M:Devart.Common.DbDataTable.Update()" /> method is invoked. If <see langword="false" />, the <see cref="M:Devart.Common.DbDataTable.Update()" /> method is automatically called once a row finishes editing in a visual component. </value>
  832. </member>
  833. <member name="M:Devart.Common.DbDataTable.CancelFetch()">
  834. <summary>Stops asynchronous fill operation. </summary>
  835. <keywords>DbDataTable.CancelFetch method </keywords>
  836. </member>
  837. <member name="M:Devart.Common.DbDataTable.Clear()">
  838. <summary>Clears <see cref="T:Devart.Common.DbDataTable" /> and stops Fill operation. </summary>
  839. <keywords>DbDataTable.Clear method </keywords>
  840. <overloads>Clears <see cref="T:Devart.Common.DbDataTable" /> and stops Fill operation. </overloads>
  841. </member>
  842. <member name="M:Devart.Common.DbDataTable.Clone()">
  843. <summary>Clones the structure of the <see cref="T:Devart.Common.DbDataTable" />, including all <see cref="T:System.Data.DataTable" /> schemes and constraints. </summary>
  844. <keywords>DbDataTable.Clone method </keywords>
  845. <returns>A new <see cref="T:Devart.Common.DbDataTable" /> with the same schema as the current <see cref="T:Devart.Common.DbDataTable" />. </returns>
  846. </member>
  847. <member name="M:Devart.Common.DbDataTable.Close()">
  848. <summary>Disconnects <see cref="T:Devart.Common.DbDataTable" /> from the data source and frees server resources allocated for the query. </summary>
  849. <keywords>DbDataTable.Close method </keywords>
  850. </member>
  851. <member name="P:Devart.Common.DbDataTable.Columns">
  852. <summary>Gets the collection of columns that belong to this table. </summary>
  853. <keywords>DbDataTable.Columns property </keywords>
  854. <value>A <see cref="T:System.Data.DataColumnCollection" /> that contains the collection of <see cref="T:System.Data.DataColumn" /> objects for the table; otherwise, a null value if no <see cref="T:System.Data.DataColumn" /> objects exist.
  855. <para>This property is read-only.</para> </value>
  856. </member>
  857. <member name="P:Devart.Common.DbDataTable.ConflictOption">
  858. <summary>Specifies which <see cref="T:System.Data.ConflictOption" /> is to be used by the <see cref="T:Devart.Common.DbDataTable" />. </summary>
  859. <keywords>DbDataTable.ConflictOption property </keywords>
  860. <value>One of the <see cref="T:System.Data.ConflictOption" /> values describing the behavior of this <see cref="T:Devart.Common.DbDataTable" />. </value>
  861. </member>
  862. <member name="P:Devart.Common.DbDataTable.Connection">
  863. <summary>Gets or sets the <see cref="T:System.Data.IDbConnection" /> used to connect to the data source. </summary>
  864. <keywords>DbDataTable.Connection property </keywords>
  865. <value>An <see cref="T:System.Data.IDbConnection" /> object which provides a connection to the data source. </value>
  866. </member>
  867. <member name="P:Devart.Common.DbDataTable.Constraints">
  868. <summary>Gets the collection of constraints maintained by this table. </summary>
  869. <keywords>DbDataTable.Constraints property </keywords>
  870. <value>A <see cref="T:System.Data.ConstraintCollection" /> that contains the collection of <see cref="T:System.Data.Constraint" /> objects for the table; otherwise, a null value if no <see cref="T:System.Data.Constraint" /> objects exist.
  871. <para>This property is read-only.</para> </value>
  872. </member>
  873. <member name="P:Devart.Common.DbDataTable.DeleteCommand">
  874. <summary>Gets or sets a SQL statement to delete records from the data set. </summary>
  875. <keywords>DbDataTable.DeleteCommand property </keywords>
  876. <value>An <see cref="T:System.Data.IDbCommand" /> used during an update operation to delete records in the data source that correspond to deleted rows in the <see cref="T:System.Data.DataSet" />. </value>
  877. </member>
  878. <member name="P:Devart.Common.DbDataTable.DesignTimeVisible">
  879. <summary>Determines whether the component is visible in design time. </summary>
  880. <keywords>DbDataTable.DesignTimeVisible property </keywords>
  881. </member>
  882. <member name="P:Devart.Common.DbDataTable.DisableListChangedEvents">
  883. <summary>Disables some of the events, which occurs when <see cref="T:Devart.Common.DbDataTable" /> content is changed. </summary>
  884. <keywords>DbDataTable.DisableListChangedEvents property </keywords>
  885. </member>
  886. <member name="E:Devart.Common.DbDataTable.Disposed">
  887. <summary>Adds an event handler to listen to the Disposed event on the component. </summary>
  888. <keywords>DbDataTable.Disposed event </keywords>
  889. </member>
  890. <member name="M:Devart.Common.DbDataTable.EndFill(System.IAsyncResult)">
  891. <summary>Ends an asynchronous invocation of the <see cref="M:Devart.Common.DbDataTable.Fill()" /> method. </summary>
  892. <keywords>DbDataTable.EndFill method </keywords>
  893. <param name="result">The <see cref="T:System.IAsyncResult" /> returned from <see cref="M:Devart.Common.DbDataTable.BeginFill(System.AsyncCallback,System.Object)" />. </param>
  894. </member>
  895. <member name="M:Devart.Common.DbDataTable.EndInit()">
  896. <summary>Ends the initialization of a <see cref="T:Devart.Common.DbDataTable" /> that is used on a form or used by another component. The initialization occurs at run time. </summary>
  897. <keywords>DbDataTable.EndInit method </keywords>
  898. </member>
  899. <member name="P:Devart.Common.DbDataTable.FetchAll">
  900. <summary>Determines whether data is requested from server entirely or partially. </summary>
  901. <keywords>DbDataTable.FetchAll property </keywords>
  902. <value>If <see langword="true" />, the data is requested when the <see cref="T:Devart.Common.DbDataTable" /> is opened, otherwise records are fetched only when necessary. </value>
  903. </member>
  904. <member name="E:Devart.Common.DbDataTable.FetchFinished">
  905. <summary>Occurs when a result set is completely fetched. </summary>
  906. <keywords>DbDataTable.FetchFinished event </keywords>
  907. </member>
  908. <member name="M:Devart.Common.DbDataTable.Fill()">
  909. <summary>Fills the <see cref="P:System.Data.DataTable.Rows" /> collection of the <see cref="T:Devart.Common.DbDataTable" /> with rows from the data source. </summary>
  910. <keywords>DbDataTable.Fill method </keywords>
  911. <returns>The number of rows successfully added to or refreshed in the <see cref="T:Devart.Common.DbDataTable" />. This does not include rows affected by statements that do not return rows. </returns>
  912. <overloads>Fills the <see cref="P:System.Data.DataTable.Rows" /> collection of the <see cref="T:Devart.Common.DbDataTable" /> with rows from the data source. </overloads>
  913. </member>
  914. <member name="M:Devart.Common.DbDataTable.Fill(System.Object[])">
  915. <summary>Fills the <see cref="P:System.Data.DataTable.Rows" /> collection of the <see cref="T:Devart.Common.DbDataTable" /> with rows from the data source using the parameter values passed in <paramref name="parameterValues" />. </summary>
  916. <keywords>DbDataTable.Fill method </keywords>
  917. <param name="parameterValues">Used to fill the <see cref="P:Devart.Data.SQLite.SQLiteCommand.Parameters" /> collection of the <see cref="P:Devart.Common.DbDataTable.SelectCommand" /> property. </param>
  918. <returns>The number of rows successfully added to or refreshed in the <see cref="T:Devart.Common.DbDataTable" />. This does not include rows affected by statements that do not return rows. </returns>
  919. </member>
  920. <member name="E:Devart.Common.DbDataTable.FillError">
  921. <summary>Occurs when an error is raised during a fill operation. </summary>
  922. <keywords>DbDataTable.FillError event </keywords>
  923. </member>
  924. <member name="M:Devart.Common.DbDataTable.FillPage(System.Int32,System.Int32)">
  925. <summary>Fills the <see cref="P:System.Data.DataTable.Rows" /> collection of the <see cref="T:Devart.Common.DbDataTable" /> with rows from the data source starting at the row indicated by <paramref name="startRecord" /> and including up to the number of rows indicated by <paramref name="maxRecords" />. </summary>
  926. <keywords>DbDataTable.FillPage method </keywords>
  927. <param name="startRecord">The number of the first row to retrieve. Value 0 means the first row, 1 means the second, and so on. </param>
  928. <param name="maxRecords">The maximum number of records to retrieve. </param>
  929. <returns>The number of rows successfully added to or refreshed in the <see cref="T:Devart.Common.DbDataTable" />. This does not include rows affected by statements that do not return rows. </returns>
  930. <overloads>Fills the <see cref="P:System.Data.DataTable.Rows" /> collection of the <see cref="T:Devart.Common.DbDataTable" /> with rows from the data source starting at the row indicated by <paramref name="startRecord" /> and including up to the number of rows indicated by <paramref name="maxRecords" />. </overloads>
  931. </member>
  932. <member name="M:Devart.Common.DbDataTable.FillPage(System.Int32,System.Int32,System.Object[])">
  933. <summary>Fills the <see cref="P:System.Data.DataTable.Rows" /> collection of the <see cref="T:Devart.Common.DbDataTable" /> with rows from the data source starting at the row indicated by <paramref name="startRecord" /> and including up to the number of rows indicated by <paramref name="maxRecords" /> using the parameter values passed in <paramref name="parameterValues" />. </summary>
  934. <keywords>DbDataTable.FillPage method </keywords>
  935. <param name="startRecord">The number of the first row to retrieve. Value 0 means the first row, 1 means the second, and so on. </param>
  936. <param name="maxRecords">The maximum number of records to retrieve. </param>
  937. <param name="parameterValues">Used to fill the <see cref="P:System.Data.IDbCommand.Parameters" /> collection of the <see cref="P:Devart.Common.DbDataTable.SelectCommand" /> property. </param>
  938. <returns>The number of rows successfully added to or refreshed in the <see cref="T:Devart.Common.DbDataTable" />. This does not include rows affected by statements that do not return rows. </returns>
  939. </member>
  940. <member name="M:Devart.Common.DbDataTable.FillSchema()">
  941. <summary>Configures the schema to match that in the data source. </summary>
  942. <keywords>DbDataTable.FillSchema method </keywords>
  943. </member>
  944. <member name="P:Devart.Common.DbDataTable.InsertCommand">
  945. <summary>Gets or sets a SQL statement to insert new records into the data source. </summary>
  946. <keywords>DbDataTable.InsertCommand property </keywords>
  947. <value>An <see cref="T:System.Data.IDbCommand" /> used during an update operation to insert records in the data source that correspond to new rows in the <see cref="T:System.Data.DataTable" />. </value>
  948. </member>
  949. <member name="P:Devart.Common.DbDataTable.MaxRecords">
  950. <summary>Gets or sets max number of records to fetch starting from <see cref="P:Devart.Common.DbDataTable.StartRecord" />. </summary>
  951. <keywords>DbDataTable.MaxRecords property </keywords>
  952. <value>Max number of records to fetch starting from <see cref="P:Devart.Common.DbDataTable.StartRecord" />. </value>
  953. </member>
  954. <member name="P:Devart.Common.DbDataTable.MissingSchemaAction">
  955. <summary>Determines the action to take when existing DataSet schema does not match incoming data. </summary>
  956. <keywords>DbDataTable.MissingSchemaAction property </keywords>
  957. <value>One of the <see cref="T:System.Data.MissingSchemaAction" /> values. </value>
  958. </member>
  959. <member name="P:Devart.Common.DbDataTable.Name">
  960. <summary>Gets or sets name of the component. </summary>
  961. <keywords>DbDataTable.Name property </keywords>
  962. <value>Name of the component </value>
  963. </member>
  964. <member name="P:Devart.Common.DbDataTable.NonBlocking">
  965. <summary>Gets or sets data request mode. </summary>
  966. <keywords>DbDataTable.NonBlocking property </keywords>
  967. <value>If this property is true, <see langword="true" />, and the <see cref="P:Devart.Common.DbDataTable.FetchAll" /> property is <see langword="true" /> also, the data is requested asynchronously. </value>
  968. </member>
  969. <member name="M:Devart.Common.DbDataTable.Open()">
  970. <summary>Fetches data and sets the <see cref="P:Devart.Common.DbDataTable.Active" /> property to true. </summary>
  971. <keywords>DbDataTable.Open method </keywords>
  972. </member>
  973. <member name="P:Devart.Common.DbDataTable.Owner">
  974. <summary>Gets or sets form that the component resides on. </summary>
  975. <keywords>DbDataTable.Owner property </keywords>
  976. <value>The form that the component resides on. </value>
  977. </member>
  978. <member name="P:Devart.Common.DbDataTable.ParentRelation">
  979. <summary>Gets or sets a <see cref="T:Devart.Common.ParentDataRelation" /> object that is used for server side master-detail relation. </summary>
  980. <keywords>DbDataTable.ParentRelation property </keywords>
  981. <value>A <see cref="T:Devart.Common.ParentDataRelation" /> object. </value>
  982. </member>
  983. <member name="P:Devart.Common.DbDataTable.PrimaryKey">
  984. <summary>Gets or sets an array of columns that function as primary keys for the data table. </summary>
  985. <keywords>DbDataTable.PrimaryKey property </keywords>
  986. <value>An array of <see cref="T:System.Data.DataColumn" /> objects. </value>
  987. </member>
  988. <member name="P:Devart.Common.DbDataTable.QueryRecordCount">
  989. <summary>Determines whether <see cref="T:Devart.Common.DbDataTable" /> should perfrom additional request to determine quantity of records in the result set. </summary>
  990. <keywords>DbDataTable.QueryRecordCount property </keywords>
  991. <value>If <see langword="true" />, an additional request to server is executed, and the <see cref="P:Devart.Common.DbDataTable.RecordCount" /> is updated. </value>
  992. </member>
  993. <member name="P:Devart.Common.DbDataTable.Quoted">
  994. <summary>Gets or sets whether the <see cref="T:Devart.Common.DbDataTable" /> quotes all the names of data source objects. </summary>
  995. <keywords>DbDataTable.Quoted property </keywords>
  996. <value>
  997. <see langword="true" /> if the <see cref="T:Devart.Common.DbDataTable" /> will quote all the names of data source objects; otherwise, <see langword="false" />. The default value is <see langword="false" />. </value>
  998. </member>
  999. <member name="M:Devart.Common.DbDataTable.Read()">
  1000. <summary>Reads the next data row when <see cref="T:Devart.Common.DbDataTable" /> operates in connected model. </summary>
  1001. <keywords>DbDataTable.Read method </keywords>
  1002. <returns>
  1003. <see langword="true" /> if there are more rows; otherwise, <see langword="false" />. </returns>
  1004. </member>
  1005. <member name="M:Devart.Common.DbDataTable.ReadComplete(System.Data.DataRow)">
  1006. <summary>Fills a row with data not fetched in the initial fill operation. </summary>
  1007. <keywords>DbDataTable.ReadComplete method </keywords>
  1008. <param name="row">Row to read out. </param>
  1009. </member>
  1010. <member name="P:Devart.Common.DbDataTable.RecordCount">
  1011. <summary>Gets number of rows in the result set. </summary>
  1012. <keywords>DbDataTable.RecordCount property </keywords>
  1013. <value>Number of rows in the result set. Meaning of this value depends on the <see cref="P:Devart.Common.DbDataTable.QueryRecordCount" /> property. </value>
  1014. </member>
  1015. <member name="P:Devart.Common.DbDataTable.RefreshMode">
  1016. <summary>Gets or sets a value that indicates whether and how the <see cref="T:Devart.Common.DbDataTable" /> should retrieve field values adjusted by server after an update. </summary>
  1017. <keywords>DbDataTable.RefreshMode property </keywords>
  1018. <value>One of the <see cref="T:Devart.Common.RefreshRowMode" /> values. </value>
  1019. </member>
  1020. <member name="M:Devart.Common.DbDataTable.RefreshRow(System.Data.DataRow)">
  1021. <summary>Refreshes the specified row with values from server. </summary>
  1022. <keywords>DbDataTable.RefreshRow method </keywords>
  1023. <param name="row">The row to refresh. </param>
  1024. </member>
  1025. <member name="P:Devart.Common.DbDataTable.RefreshingFields">
  1026. <summary>Gets or sets list of fields whose values should be retrieved after a DML statement execution. </summary>
  1027. <keywords>DbDataTable.RefreshingFields property </keywords>
  1028. <value>The string containing list of field names separated by semicolon. </value>
  1029. </member>
  1030. <member name="P:Devart.Common.DbDataTable.RemotingFormat">
  1031. <summary>Gets or sets a <see cref="T:System.Data.SerializationFormat" /> for the <see cref="T:Devart.Common.DbDataTable" /> used during remoting. </summary>
  1032. <keywords>DbDataTable.RemotingFormat property </keywords>
  1033. <value>A <see cref="T:System.Data.SerializationFormat" /> object. </value>
  1034. </member>
  1035. <member name="P:Devart.Common.DbDataTable.RetrieveAutoIncrementSeed">
  1036. <summary>Gets or sets a value that indicates whether <see cref="T:Devart.Common.DbDataTable" /> should perform additional roundtrip to server to request the autoincremented value. </summary>
  1037. <keywords>DbDataTable.RetrieveAutoIncrementSeed property </keywords>
  1038. <value>If <see langword="true" />, an additional roundtrip is performed. The default value is <see langword="true" />. </value>
  1039. </member>
  1040. <member name="P:Devart.Common.DbDataTable.ReturnProviderSpecificTypes">
  1041. <summary>Determines whether to use provider-specific types whenever possible. </summary>
  1042. <keywords>DbDataTable.ReturnProviderSpecificTypes property </keywords>
  1043. <value>If <see langword="true" />, <see cref="T:Devart.Common.DbDataTable" /> uses the <see cref="M:Devart.Common.DbDataReaderBase.GetProviderSpecificFieldType(System.Int32)" /> and <see cref="M:Devart.Common.DbDataReaderBase.GetProviderSpecificValue(System.Int32)" /> methods to retrieve data from server. </value>
  1044. </member>
  1045. <member name="E:Devart.Common.DbDataTable.RowFetched">
  1046. <summary>Occurs when another row is completely fetched. </summary>
  1047. <keywords>DbDataTable.RowFetched event </keywords>
  1048. </member>
  1049. <member name="P:Devart.Common.DbDataTable.SchemaTable">
  1050. <summary>Gets the schema table corresponding to the <see cref="P:Devart.Common.DbDataTable.SelectCommand" /> query. </summary>
  1051. <keywords>DbDataTable.SchemaTable property </keywords>
  1052. <value>The schema table corresponding to the <see cref="P:Devart.Common.DbDataTable.SelectCommand" /> query. </value>
  1053. </member>
  1054. <member name="M:Devart.Common.DbDataTable.Select()">
  1055. <summary>Gets an array of all DataRow objects. </summary>
  1056. <keywords>DbDataTable.Select method </keywords>
  1057. <returns>An array of DataRow objects. </returns>
  1058. <overloads>Gets an array of DataRow objects. </overloads>
  1059. </member>
  1060. <member name="M:Devart.Common.DbDataTable.Select(System.String)">
  1061. <summary>Gets an array of all DataRow objects that match the filter criteria. </summary>
  1062. <keywords>DbDataTable.Select method </keywords>
  1063. <param name="filterExpression">The criteria to use to filter the rows. </param>
  1064. <returns>An array of DataRow objects. </returns>
  1065. </member>
  1066. <member name="M:Devart.Common.DbDataTable.Select(System.String,System.String)">
  1067. <summary>Gets an array of all DataRow objects that match the filter criteria, in the specified sort order. </summary>
  1068. <keywords>DbDataTable.Select method </keywords>
  1069. <param name="filterExpression">The criteria to use to filter the rows. </param>
  1070. <param name="sort">A string specifying the column and sort direction. </param>
  1071. <returns>An array of DataRow objects matching the filter expression. </returns>
  1072. </member>
  1073. <member name="M:Devart.Common.DbDataTable.Select(System.String,System.String,System.Data.DataViewRowState)">
  1074. <summary>Gets an array of all DataRow objects that match the filter in the order of the sort that match the specified state. </summary>
  1075. <keywords>DbDataTable.Select method </keywords>
  1076. <param name="filterExpression">The criteria to use to filter the rows. </param>
  1077. <param name="sort">A string specifying the column and sort direction. </param>
  1078. <param name="recordStates">One of the <b>DataViewRowState</b> values. </param>
  1079. <returns>An array of DataRow objects matching the filter expression. </returns>
  1080. </member>
  1081. <member name="P:Devart.Common.DbDataTable.SelectCommand">
  1082. <summary>Gets or sets a SQL statement used to select records in the data source. </summary>
  1083. <keywords>DbDataTable.SelectCommand property </keywords>
  1084. <value>An <see cref="T:System.Data.IDbCommand" /> that is used during a fill operation to select records from the data source for placement in the <see cref="T:Devart.Common.DbDataTable" />. </value>
  1085. </member>
  1086. <member name="P:Devart.Common.DbDataTable.StartRecord">
  1087. <summary>Gets or sets record number to start. </summary>
  1088. <keywords>DbDataTable.StartRecord property </keywords>
  1089. <value>Record number to start. Value 0 means the first row, 1 means the second, and so on. </value>
  1090. </member>
  1091. <member name="M:Devart.Common.DbDataTable.SuspendFill()">
  1092. <summary>Suspends asynchronous fill operation. </summary>
  1093. <keywords>DbDataTable.SuspendFill method </keywords>
  1094. <overloads>Suspends asynchronous fill operation. </overloads>
  1095. </member>
  1096. <member name="M:Devart.Common.DbDataTable.SuspendFill(System.Boolean)">
  1097. <summary>Suspends asynchronous fill operation. </summary>
  1098. <keywords>DbDataTable.SuspendFill method </keywords>
  1099. <param name="wait">Determines whether to wait for break operation. If <see langword="false" />, the method returns before the fill operation is actually suspended. </param>
  1100. </member>
  1101. <member name="P:Devart.Common.DbDataTable.SyncRoot">
  1102. <summary>Gets an object that can be used to synchronize access to the <see cref="P:System.Data.DataTable.Rows" /> collection. </summary>
  1103. <keywords>DbDataTable.SyncRoot property </keywords>
  1104. <value>A synchronization object. </value>
  1105. </member>
  1106. <member name="P:Devart.Common.DbDataTable.TableMapping">
  1107. <summary>Gets a <see cref="T:System.Data.Common.DataTableMapping" /> that provides the master mapping between a source table and a <see cref="T:Devart.Common.DbDataTable" />. </summary>
  1108. <keywords>DbDataTable.TableMapping property </keywords>
  1109. <value>A <see cref="T:System.Data.Common.DataTableMapping" /> that provides the master mapping between a source table and a <see cref="T:Devart.Common.DbDataTable" />. </value>
  1110. </member>
  1111. <member name="M:Devart.Common.DbDataTable.Update()">
  1112. <summary>Executes the appropriate commands to delete, insert, or update rows in the data source. </summary>
  1113. <keywords>DbDataTable.Update method </keywords>
  1114. <returns>The number of rows successfully updated from the <see cref="T:Devart.Common.DbDataTable" />. </returns>
  1115. </member>
  1116. <member name="P:Devart.Common.DbDataTable.UpdateBatchSize">
  1117. <summary>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. </summary>
  1118. <keywords>DbDataTable.UpdateBatchSize property </keywords>
  1119. <value>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. </value>
  1120. </member>
  1121. <member name="P:Devart.Common.DbDataTable.UpdateCommand">
  1122. <summary>Gets or sets a SQL statement used to update records in the data source. </summary>
  1123. <keywords>DbDataTable.UpdateCommand property </keywords>
  1124. <value>An <see cref="T:System.Data.IDbCommand" /> used during an update operation to update records in the data source that correspond to modified rows in the <see cref="T:Devart.Common.DbDataTable" />. </value>
  1125. </member>
  1126. <member name="M:Devart.Common.DbDataTable.UpdateRows(System.Data.DataRow[])">
  1127. <summary>Executes the appropriate commands to delete, insert, or update the specified rows in the data source. </summary>
  1128. <keywords>DbDataTable.UpdateRows method </keywords>
  1129. <param name="datarows">An array of <see cref="T:System.Data.DataRow" /> objects containing the rows to be updated. </param>
  1130. <returns>The number of rows successfully updated from the <see cref="T:Devart.Common.DbDataTable" />. </returns>
  1131. </member>
  1132. <member name="P:Devart.Common.DbDataTable.UpdatingFields">
  1133. <summary>Gets or sets string containing list of field names used to generate update commands. </summary>
  1134. <keywords>DbDataTable.UpdatingFields property </keywords>
  1135. <value>The string containing list of field names separated by semicolon. </value>
  1136. </member>
  1137. <member name="P:Devart.Common.DbDataTable.UpdatingKeyFields">
  1138. <summary>Gets or sets string containing list of key field names separated by semicolon. They are used to generate update commands. </summary>
  1139. <keywords>DbDataTable.UpdatingKeyFields property </keywords>
  1140. <value>The string containing list of key field names separated by semicolon. </value>
  1141. </member>
  1142. <member name="P:Devart.Common.DbDataTable.UpdatingTable">
  1143. <summary>Gets or sets table name to generate update statements for. </summary>
  1144. <keywords>DbDataTable.UpdatingTable property </keywords>
  1145. <value>The name of the table. </value>
  1146. </member>
  1147. <member name="T:Devart.Common.DbDump">
  1148. <summary>Serves to store a database or its parts as a script and also to restore database from the received script. </summary>
  1149. </member>
  1150. <member name="M:Devart.Common.DbDump.Backup()">
  1151. <summary>Generates a script and writes it to the <see cref="P:Devart.Common.DbDump.DumpText" /> property. </summary>
  1152. <keywords>DbDump.Backup method </keywords>
  1153. <overloads>Generates a script for further restoring with the <see cref="M:Devart.Common.DbDump.Restore" /> method. </overloads>
  1154. </member>
  1155. <member name="M:Devart.Common.DbDump.Backup(System.IO.Stream)">
  1156. <summary>Generates a script and writes it to the specified <see cref="T:System.IO.Stream" />. </summary>
  1157. <keywords>DbDump.Backup method </keywords>
  1158. <param name="stream">The <see cref="T:System.IO.Stream" /> to write the script to. </param>
  1159. </member>
  1160. <member name="M:Devart.Common.DbDump.Backup(System.IO.TextWriter)">
  1161. <summary>Generates a script and writes it to the specified <see cref="T:System.IO.TextWriter" />. </summary>
  1162. <keywords>DbDump.Backup method </keywords>
  1163. <param name="writer">The <see cref="T:System.IO.TextWriter" /> to write the script to. </param>
  1164. </member>
  1165. <member name="M:Devart.Common.DbDump.Backup(System.String)">
  1166. <summary>Generates a script and writes it to the specified file. </summary>
  1167. <keywords>DbDump.Backup method </keywords>
  1168. <param name="fileName">The name of the file to write the script to. </param>
  1169. </member>
  1170. <member name="M:Devart.Common.DbDump.BackupQuery(System.String)">
  1171. <summary>Generates a script with a backup of the data, returned by the specified query, and writes it to the <see cref="P:Devart.Common.DbDump.DumpText" /> property. </summary>
  1172. <keywords>DbDump.BackupQuery method </keywords>
  1173. <param name="query">The query, returning data for backup. </param>
  1174. <overloads>Generates a script with a backup of the data, returned by the specified query, for further restoring with the <see cref="M:Devart.Common.DbDump.Restore" /> method. </overloads>
  1175. </member>
  1176. <member name="M:Devart.Common.DbDump.BackupQuery(System.String,System.IO.Stream)">
  1177. <summary>Generates a script with a backup of the data, returned by the specified query, and writes it to the specified <see cref="T:System.IO.Stream" />. </summary>
  1178. <keywords>DbDump.BackupQuery method </keywords>
  1179. <param name="query">The query, returning data for backup. </param>
  1180. <param name="stream">The <see cref="T:System.IO.Stream" /> to write the script to. </param>
  1181. </member>
  1182. <member name="M:Devart.Common.DbDump.BackupQuery(System.String,System.IO.TextWriter)">
  1183. <summary>Generates a script with a backup of the data, returned by the specified query, and writes it to the specified <see cref="T:System.IO.TextWriter" />. </summary>
  1184. <keywords>DbDump.BackupQuery method </keywords>
  1185. <param name="query">The query, returning data for backup. </param>
  1186. <param name="writer">The <see cref="T:System.IO.TextWriter" /> to write the script to. </param>
  1187. </member>
  1188. <member name="M:Devart.Common.DbDump.BackupQuery(System.String,System.String)">
  1189. <summary>Generates a script with a backup of the data, returned by the specified query, and writes it to the specified file. </summary>
  1190. <keywords>DbDump.BackupQuery method </keywords>
  1191. <param name="query">The query, returning data for backup. </param>
  1192. <param name="fileName">Name of the file to write the script to. </param>
  1193. </member>
  1194. <member name="M:Devart.Common.DbDump.BeginBackup()">
  1195. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.Backup" /> method. </summary>
  1196. <keywords>DbDump.BeginBackup method </keywords>
  1197. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1198. <overloads>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.Backup" /> method. </overloads>
  1199. </member>
  1200. <member name="M:Devart.Common.DbDump.BeginBackup(System.AsyncCallback,System.Object)">
  1201. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.Backup" /> method with information for callback function. </summary>
  1202. <keywords>DbDump.BeginBackup method </keywords>
  1203. <param name="callback">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. </param>
  1204. <param name="stateObject">State information that is passed on to the delegate. </param>
  1205. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1206. </member>
  1207. <member name="M:Devart.Common.DbDump.BeginBackup(System.IO.Stream)">
  1208. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.Backup(System.IO.Stream)" /> method. </summary>
  1209. <keywords>DbDump.BeginBackup method </keywords>
  1210. <param name="stream">The <see cref="T:System.IO.Stream" /> to write the script to. </param>
  1211. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1212. </member>
  1213. <member name="M:Devart.Common.DbDump.BeginBackup(System.IO.Stream,System.AsyncCallback,System.Object)">
  1214. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.Backup(System.IO.Stream)" /> method with information for callback function. </summary>
  1215. <keywords>DbDump.BeginBackup method </keywords>
  1216. <param name="stream">The <see cref="T:System.IO.Stream" /> to write the script to. </param>
  1217. <param name="callback">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. </param>
  1218. <param name="stateObject">State information that is passed on to the delegate. </param>
  1219. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1220. </member>
  1221. <member name="M:Devart.Common.DbDump.BeginBackup(System.IO.TextWriter)">
  1222. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.Backup(System.IO.TextWriter)" /> method. </summary>
  1223. <keywords>DbDump.BeginBackup method </keywords>
  1224. <param name="writer">The <see cref="T:System.IO.TextWriter" /> to write the script to. </param>
  1225. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1226. </member>
  1227. <member name="M:Devart.Common.DbDump.BeginBackup(System.IO.TextWriter,System.AsyncCallback,System.Object)">
  1228. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.Backup(System.IO.TextWriter)" /> method with information for callback function. </summary>
  1229. <keywords>DbDump.BeginBackup method </keywords>
  1230. <param name="writer">The <see cref="T:System.IO.TextWriter" /> to write the script to. </param>
  1231. <param name="callback">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. </param>
  1232. <param name="stateObject">State information that is passed on to the delegate. </param>
  1233. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1234. </member>
  1235. <member name="M:Devart.Common.DbDump.BeginBackup(System.String)">
  1236. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.Backup(System.String)" /> method. </summary>
  1237. <keywords>DbDump.BeginBackup method </keywords>
  1238. <param name="fileName">The name of the file to write the script to. </param>
  1239. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1240. </member>
  1241. <member name="M:Devart.Common.DbDump.BeginBackup(System.String,System.AsyncCallback,System.Object)">
  1242. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.Backup(System.String)" /> method with information for callback function. </summary>
  1243. <keywords>DbDump.BeginBackup method </keywords>
  1244. <param name="fileName">The name of the file to write the script to. </param>
  1245. <param name="callback">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. </param>
  1246. <param name="stateObject">State information that is passed on to the delegate. </param>
  1247. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1248. </member>
  1249. <member name="M:Devart.Common.DbDump.BeginBackupQuery(System.String)">
  1250. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.BackupQuery(System.String)" /> method. </summary>
  1251. <keywords>DbDump.BeginBackupQuery method </keywords>
  1252. <param name="query">The query, returning data for backup. </param>
  1253. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1254. <overloads>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.BackupQuery" /> method. </overloads>
  1255. </member>
  1256. <member name="M:Devart.Common.DbDump.BeginBackupQuery(System.String,System.AsyncCallback,System.Object)">
  1257. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.BackupQuery(System.String)" /> method with information for callback function. </summary>
  1258. <keywords>DbDump.BeginBackupQuery method </keywords>
  1259. <param name="query">The query, returning data for backup. </param>
  1260. <param name="callback">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. </param>
  1261. <param name="stateObject">State information that is passed on to the delegate. </param>
  1262. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1263. </member>
  1264. <member name="M:Devart.Common.DbDump.BeginBackupQuery(System.String,System.IO.Stream)">
  1265. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.BackupQuery(System.String,System.IO.Stream)" /> method. </summary>
  1266. <keywords>DbDump.BeginBackupQuery method </keywords>
  1267. <param name="query">The query, returning data for backup. </param>
  1268. <param name="stream">The <see cref="T:System.IO.Stream" /> to write the script to. </param>
  1269. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1270. </member>
  1271. <member name="M:Devart.Common.DbDump.BeginBackupQuery(System.String,System.IO.Stream,System.AsyncCallback,System.Object)">
  1272. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.BackupQuery(System.String,System.IO.Stream)" /> method with information for callback function. </summary>
  1273. <keywords>DbDump.BeginBackupQuery method </keywords>
  1274. <param name="query">The query, returning data for backup. </param>
  1275. <param name="stream">The <see cref="T:System.IO.Stream" /> to write the script to. </param>
  1276. <param name="callback">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. </param>
  1277. <param name="stateObject">State information that is passed on to the delegate. </param>
  1278. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1279. </member>
  1280. <member name="M:Devart.Common.DbDump.BeginBackupQuery(System.String,System.IO.TextWriter)">
  1281. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.BackupQuery(System.String,System.IO.TextWriter)" /> method. </summary>
  1282. <keywords>DbDump.BeginBackupQuery method </keywords>
  1283. <param name="query">The query, returning data for backup. </param>
  1284. <param name="writer">The <see cref="T:System.IO.TextWriter" /> to write the script to. </param>
  1285. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1286. </member>
  1287. <member name="M:Devart.Common.DbDump.BeginBackupQuery(System.String,System.IO.TextWriter,System.AsyncCallback,System.Object)">
  1288. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.BackupQuery(System.String,System.IO.TextWriter)" /> method with information for callback function. </summary>
  1289. <keywords>DbDump.BeginBackupQuery method </keywords>
  1290. <param name="query">The query, returning data for backup. </param>
  1291. <param name="writer">The <see cref="T:System.IO.TextWriter" /> to write the script to. </param>
  1292. <param name="callback">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. </param>
  1293. <param name="stateObject">State information that is passed on to the delegate. </param>
  1294. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1295. </member>
  1296. <member name="M:Devart.Common.DbDump.BeginBackupQuery(System.String,System.String)">
  1297. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.BackupQuery(System.String,System.String)" /> method. </summary>
  1298. <keywords>DbDump.BeginBackupQuery method </keywords>
  1299. <param name="query">The query, returning data for backup. </param>
  1300. <param name="fileName">The name of the file to write the script to. </param>
  1301. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1302. </member>
  1303. <member name="M:Devart.Common.DbDump.BeginBackupQuery(System.String,System.String,System.AsyncCallback,System.Object)">
  1304. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.BackupQuery(System.String,System.String)" /> method with information for callback function. </summary>
  1305. <keywords>DbDump.BeginBackupQuery method </keywords>
  1306. <param name="query">The query, returning data for backup. </param>
  1307. <param name="fileName">The name of the file to write the script to. </param>
  1308. <param name="callback">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. </param>
  1309. <param name="stateObject">State information that is passed on to the delegate. </param>
  1310. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1311. </member>
  1312. <member name="M:Devart.Common.DbDump.BeginRestore()">
  1313. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.Restore" /> method. </summary>
  1314. <keywords>DbDump.BeginRestore method </keywords>
  1315. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1316. <overloads>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.Restore" /> method. </overloads>
  1317. </member>
  1318. <member name="M:Devart.Common.DbDump.BeginRestore(System.AsyncCallback,System.Object)">
  1319. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.Restore" /> method with information for callback function. </summary>
  1320. <keywords>DbDump.BeginRestore method </keywords>
  1321. <param name="callback">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. </param>
  1322. <param name="stateObject">State information that is passed on to the delegate. </param>
  1323. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1324. </member>
  1325. <member name="M:Devart.Common.DbDump.BeginRestore(System.IO.Stream)">
  1326. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.Restore(System.IO.Stream)" /> method. </summary>
  1327. <keywords>DbDump.BeginRestore method </keywords>
  1328. <param name="stream">The <see cref="T:System.IO.Stream" /> object to read the script from. </param>
  1329. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1330. </member>
  1331. <member name="M:Devart.Common.DbDump.BeginRestore(System.IO.Stream,System.AsyncCallback,System.Object)">
  1332. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.Restore(System.IO.Stream)" /> method with information for callback function. </summary>
  1333. <keywords>DbDump.BeginRestore method </keywords>
  1334. <param name="stream">The <see cref="T:System.IO.Stream" /> object to read the script from. </param>
  1335. <param name="callback">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. </param>
  1336. <param name="stateObject">State information that is passed on to the delegate. </param>
  1337. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1338. </member>
  1339. <member name="M:Devart.Common.DbDump.BeginRestore(System.IO.TextReader)">
  1340. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.Restore(System.IO.TextReader)" /> method. </summary>
  1341. <keywords>DbDump.BeginRestore method </keywords>
  1342. <param name="reader">The <see cref="T:System.IO.TextReader" /> object to read the script from. </param>
  1343. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1344. </member>
  1345. <member name="M:Devart.Common.DbDump.BeginRestore(System.IO.TextReader,System.AsyncCallback,System.Object)">
  1346. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.Restore(System.IO.TextReader)" /> method with information for callback function. </summary>
  1347. <keywords>DbDump.BeginRestore method </keywords>
  1348. <param name="reader">The <see cref="T:System.IO.TextReader" /> object to read the script from. </param>
  1349. <param name="callback">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. </param>
  1350. <param name="stateObject">State information that is passed on to the delegate. </param>
  1351. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1352. </member>
  1353. <member name="M:Devart.Common.DbDump.BeginRestore(System.String)">
  1354. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.Restore(System.String)" /> method. </summary>
  1355. <keywords>DbDump.BeginRestore method </keywords>
  1356. <param name="fileName">The name of the file to load the script from. </param>
  1357. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1358. </member>
  1359. <member name="M:Devart.Common.DbDump.BeginRestore(System.String,System.AsyncCallback,System.Object)">
  1360. <summary>Starts an asynchronous invocation of a <see cref="M:Devart.Common.DbDump.Restore(System.String)" /> method with information for callback function. </summary>
  1361. <keywords>DbDump.BeginRestore method </keywords>
  1362. <param name="fileName">The name of the file to load the script from. </param>
  1363. <param name="callback">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. </param>
  1364. <param name="stateObject">State information that is passed on to the delegate. </param>
  1365. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  1366. </member>
  1367. <member name="P:Devart.Common.DbDump.Connection">
  1368. <summary>Gets or sets the <see cref="T:System.Data.Common.DbConnectionBase" /> used by this instance of the <see cref="T:Devart.Common.DbDump" />. </summary>
  1369. <keywords>DbDump.Connection property </keywords>
  1370. <value>The connection to a data source. The default value is a null reference. </value>
  1371. </member>
  1372. <member name="P:Devart.Common.DbDump.DumpText">
  1373. <summary>Gets as a result of <see cref="M:Devart.Common.DbDump.Backup()" /> execution, or sets data needed to execute <see cref="M:Devart.Common.DbDump.Restore()" /> method. </summary>
  1374. <keywords>DbDump.DumpText property </keywords>
  1375. <value>SQL commands separated by ';' symbols. </value>
  1376. </member>
  1377. <member name="M:Devart.Common.DbDump.EndBackup(System.IAsyncResult)">
  1378. <summary>Ends an asynchronous invocation of the <see cref="M:Devart.Common.DbDump.Backup" /> method. </summary>
  1379. <keywords>DbDump.EndBackup method </keywords>
  1380. <param name="result">The <see cref="T:System.IAsyncResult" /> returned by <see cref="M:Devart.Common.DbDump.BeginBackup" />. </param>
  1381. </member>
  1382. <member name="M:Devart.Common.DbDump.EndBackupQuery(System.IAsyncResult)">
  1383. <summary>Ends an asynchronous invocation of the <see cref="M:Devart.Common.DbDump.BackupQuery" /> method. </summary>
  1384. <keywords>DbDump.EndBackupQuery method </keywords>
  1385. <param name="result">The <see cref="T:System.IAsyncResult" /> returned by <see cref="M:Devart.Common.DbDump.BeginBackupQuery" />. </param>
  1386. </member>
  1387. <member name="M:Devart.Common.DbDump.EndRestore(System.IAsyncResult)">
  1388. <summary>Ends an asynchronous invocation of the <see cref="M:Devart.Common.DbDump.Restore" /> method. </summary>
  1389. <keywords>DbDump.EndRestore method </keywords>
  1390. <param name="result">The <see cref="T:System.IAsyncResult" /> returned by <see cref="M:Devart.Common.DbDump.BeginRestore" />. </param>
  1391. </member>
  1392. <member name="P:Devart.Common.DbDump.GenerateHeader">
  1393. <summary>Gets or sets a value that determines whether to add some extra information in the script header. </summary>
  1394. <keywords>DbDump.GenerateHeader property </keywords>
  1395. <value>If <see langword="true" />, <see cref="T:Devart.Data.SQLite.SQLiteDump" /> adds comments with information about server version, script generation date, and so on. </value>
  1396. </member>
  1397. <member name="P:Devart.Common.DbDump.IncludeDrop">
  1398. <summary>Determines whether to recreate database objects. </summary>
  1399. <keywords>DbDump.IncludeDrop property </keywords>
  1400. <value><see langword="true" />, if database objects must be recreated; otherwise, <see langword="false" />. The default value is <see langword="false" />. </value>
  1401. </member>
  1402. <member name="P:Devart.Common.DbDump.Mode">
  1403. <summary>Determines whether to include data from tables into the dump text, script to create database objects or both. </summary>
  1404. <keywords>DbDump.Mode property </keywords>
  1405. <value>One of <see cref="T:Devart.Common.DumpMode" /> values. </value>
  1406. </member>
  1407. <member name="P:Devart.Common.DbDump.QuoteIdentifier">
  1408. <summary>Determines whether to quote all identifiers present in the database. </summary>
  1409. <keywords>DbDump.QuoteIdentifier property </keywords>
  1410. <value><see langword="true" />, if database identifiers must be quoted; otherwise, <see langword="false" />. The default value is <see langword="false" />. </value>
  1411. </member>
  1412. <member name="M:Devart.Common.DbDump.Restore()">
  1413. <summary>Executes script specified in the <see cref="T:Devart.Common.DbDump" /> descendant property. </summary>
  1414. <keywords>DbDump.Restore method </keywords>
  1415. <overloads>Executes the previously dumped script. </overloads>
  1416. </member>
  1417. <member name="M:Devart.Common.DbDump.Restore(System.IO.Stream)">
  1418. <summary>Executes script from the specified <see cref="T:System.IO.Stream" /> object. </summary>
  1419. <keywords>DbDump.Restore method </keywords>
  1420. <param name="stream">The <see cref="T:System.IO.Stream" /> object to read the script from. </param>
  1421. </member>
  1422. <member name="M:Devart.Common.DbDump.Restore(System.IO.TextReader)">
  1423. <summary>Executes script from the specified <see cref="T:System.IO.TextReader" /> object. </summary>
  1424. <keywords>DbDump.Restore method </keywords>
  1425. <param name="reader">The <see cref="T:System.IO.TextReader" /> object to read the script from. </param>
  1426. </member>
  1427. <member name="M:Devart.Common.DbDump.Restore(System.String)">
  1428. <summary>Executes script from the specified file. </summary>
  1429. <keywords>DbDump.Restore method </keywords>
  1430. <param name="fileName">The name of the file to load the script from. </param>
  1431. </member>
  1432. <member name="P:Devart.Common.DbDump.Tables">
  1433. <summary>Gets or sets a list of the tables which will be used in the script. Table names are separated by semicolon. </summary>
  1434. <keywords>DbDump.Tables property </keywords>
  1435. <value><see cref="T:System.String" /> containing a list of the tables separated by semicolon. </value>
  1436. </member>
  1437. <member name="T:Devart.Common.DbLoader">
  1438. <summary>This class is not used in dotConnect for SQLite. </summary>
  1439. </member>
  1440. <member name="M:Devart.Common.DbLoader.#ctor()">
  1441. <summary>Initializes a new instance of the <see cref="T:Devart.Common.DbLoader" /> class. </summary>
  1442. <overloads>Initializes a new instance of the <see cref="T:Devart.Common.DbLoader" /> class. </overloads>
  1443. </member>
  1444. <member name="M:Devart.Common.DbLoader.#ctor(System.String)">
  1445. <summary>Initializes a new instance of the <see cref="T:Devart.Common.DbLoader" /> class with table name that will be loaded. </summary>
  1446. <param name="tableName">Name of the table that will be loaded. </param>
  1447. </member>
  1448. <member name="M:Devart.Common.DbLoader.#ctor(System.String,System.Data.Common.DbConnection)">
  1449. <summary>Initializes a new instance of the <see cref="T:Devart.Common.DbLoader" /> class with table name that will be loaded and a <see cref="T:System.Data.Common.DbConnectionBase" /> object. </summary>
  1450. <param name="tableName">Name of the table that will be loaded. </param>
  1451. <param name="connection">A <see cref="T:System.Data.Common.DbConnectionBase" /> object that represents the connection to a data source. </param>
  1452. </member>
  1453. <member name="P:Devart.Common.DbLoader.BufferSize">
  1454. <summary>Gets or sets a size of data packet loaded to the server. </summary>
  1455. <keywords>DbLoader.BufferSize property </keywords>
  1456. <value>Size of the data packet in bytes. </value>
  1457. </member>
  1458. <member name="M:Devart.Common.DbLoader.Close()">
  1459. <summary>Closes loading session and flushes remaining rows to the table. </summary>
  1460. <keywords>DbLoader.Close method </keywords>
  1461. </member>
  1462. <member name="P:Devart.Common.DbLoader.Columns">
  1463. <summary>Gets the <see cref="T:Devart.Common.DbLoaderColumnCollection" /> collection. </summary>
  1464. <keywords>DbLoader.Columns property </keywords>
  1465. <value>Columns which loaded table consist of. </value>
  1466. </member>
  1467. <member name="P:Devart.Common.DbLoader.Connection">
  1468. <summary>Gets or sets the <see cref="T:Devart.Common.DbConnectionBase" /> used by this instance of the <see cref="T:Devart.Common.DbLoader" />. </summary>
  1469. <keywords>DbLoader.Connection property </keywords>
  1470. <value>The connection to a data source. The default value is a null reference. </value>
  1471. </member>
  1472. <member name="M:Devart.Common.DbLoader.CreateColumns()">
  1473. <summary>Retrieves table columns information from the table specified in the <see cref="P:Devart.Common.DbLoader.TableName" /> property and populates columns collection. </summary>
  1474. <keywords>DbLoader.CreateColumns method </keywords>
  1475. </member>
  1476. <member name="P:Devart.Common.DbLoader.Item(System.Int32)">
  1477. <summary>Sets the value of the column at the specified index for <see cref="T:Devart.Common.DbLoaderColumnCollection" />. </summary>
  1478. <keywords>DbLoader.Item property </keywords>
  1479. <param name="columnIndex">The zero-based index. </param>
  1480. </member>
  1481. <member name="P:Devart.Common.DbLoader.Item(System.String)">
  1482. <summary>Sets the value of the column with the specified name for <see cref="T:Devart.Common.DbLoaderColumnCollection" />. </summary>
  1483. <keywords>DbLoader.Item property </keywords>
  1484. <param name="columnName">The name of the column. </param>
  1485. </member>
  1486. <member name="M:Devart.Common.DbLoader.LoadTable(System.Data.DataRow[])">
  1487. <summary>Loads data into the table from the specified array of data rows. </summary>
  1488. <keywords>DbLoader.LoadTable method </keywords>
  1489. <param name="rows">The array of data rows to load into target table. </param>
  1490. <overloads>Loads data into the table from the specified <b>DataTable</b>. </overloads>
  1491. </member>
  1492. <member name="M:Devart.Common.DbLoader.LoadTable(System.Data.DataTable)">
  1493. <summary>Loads data into the table from the specified <b>DataTable</b>. </summary>
  1494. <keywords>DbLoader.LoadTable method </keywords>
  1495. <param name="table">The <b>DataTable</b> object to obtain data from. </param>
  1496. </member>
  1497. <member name="M:Devart.Common.DbLoader.LoadTable(System.Data.DataTable,System.Data.DataRowState)">
  1498. <summary>Loads rows that match to the specified row state from the specified <b>DataTable</b> into the table. </summary>
  1499. <keywords>DbLoader.LoadTable method </keywords>
  1500. <param name="table">The <b>DataTable</b> object to obtain data from. </param>
  1501. <param name="rowState">The specified row state. Only rows that match it will be copied to the target table. </param>
  1502. </member>
  1503. <member name="M:Devart.Common.DbLoader.LoadTable(System.Data.DataTable,System.Data.IColumnMappingCollection)">
  1504. <summary>Loads data into the table from the specified <b>DataTable</b>. </summary>
  1505. <keywords>DbLoader.LoadTable method </keywords>
  1506. <param name="table">The <b>DataTable</b> object to obtain data from. </param>
  1507. <param name="columnMappings">Column mappings used to match table columns to data source table columns. If this argument is null, the <b>DataTable</b> columns names are used. </param>
  1508. </member>
  1509. <member name="M:Devart.Common.DbLoader.LoadTable(System.Data.IDataReader)">
  1510. <summary>Loads data into the table from the specified <b>IDataReader</b>. </summary>
  1511. <keywords>DbLoader.LoadTable method </keywords>
  1512. <param name="reader">The <b>IDataReader</b> object to obtain data from. </param>
  1513. </member>
  1514. <member name="M:Devart.Common.DbLoader.NextRow()">
  1515. <summary>Advances <see cref="T:Devart.Common.DbLoader" /> to the next row. </summary>
  1516. <keywords>DbLoader.NextRow method </keywords>
  1517. </member>
  1518. <member name="M:Devart.Common.DbLoader.Open()">
  1519. <summary>Prepares <see cref="T:Devart.Common.DbLoader" /> for the loading. </summary>
  1520. <keywords>DbLoader.Open method </keywords>
  1521. </member>
  1522. <member name="M:Devart.Common.DbLoader.SetNull(System.Int32)">
  1523. <summary>Sets the value of the column with the specified index to NULL. </summary>
  1524. <keywords>DbLoader.SetNull method </keywords>
  1525. <param name="i">Zero-based index of the column. </param>
  1526. <overloads>Sets the value of the column with the specified name or ordinal to NULL. </overloads>
  1527. </member>
  1528. <member name="M:Devart.Common.DbLoader.SetNull(System.String)">
  1529. <summary>Sets the value of the column with the specified name to NULL. </summary>
  1530. <keywords>DbLoader.SetNull method </keywords>
  1531. <param name="name">The name of the column. </param>
  1532. </member>
  1533. <member name="M:Devart.Common.DbLoader.SetValue(System.Int32,System.Object)">
  1534. <summary>Sets the value of the column at the specified ordinal. </summary>
  1535. <keywords>DbLoader.SetValue method </keywords>
  1536. <param name="i">Zero-based index of the column. </param>
  1537. <param name="value">Column value. </param>
  1538. <overloads>Sets the value of the column with the specified name or ordinal. </overloads>
  1539. </member>
  1540. <member name="M:Devart.Common.DbLoader.SetValue(System.String,System.Object)">
  1541. <summary>Sets the value of the column with the specified name. </summary>
  1542. <keywords>DbLoader.SetValue method </keywords>
  1543. <param name="name">The name of the column. </param>
  1544. <param name="value">Column value. </param>
  1545. </member>
  1546. <member name="P:Devart.Common.DbLoader.TableName">
  1547. <summary>Gets or sets table name that will be loaded. </summary>
  1548. <keywords>DbLoader.TableName property </keywords>
  1549. <value>Name of the table that will be loaded. </value>
  1550. </member>
  1551. <member name="T:Devart.Common.DbLoaderColumn">
  1552. <summary>This class is not used in dotConnect for SQLite. </summary>
  1553. </member>
  1554. <member name="M:Devart.Common.DbLoaderColumn.#ctor()">
  1555. <summary>Initializes a new instance of the <see cref="T:Devart.Common.DbLoaderColumn" /> class. </summary>
  1556. <overloads>Initializes a new instance of the <see cref="T:Devart.Common.DbLoaderColumn" /> class. </overloads>
  1557. </member>
  1558. <member name="M:Devart.Common.DbLoaderColumn.#ctor(System.String,System.Int32,System.Int32,System.Int32)">
  1559. <summary>Initializes a new instance of the <see cref="T:Devart.Common.DbLoaderColumn" /> class with the column name, size, precision and scale. </summary>
  1560. <param name="name">The name of the column. </param>
  1561. <param name="size">Maximum size of column data. </param>
  1562. <param name="precision">The precision of the column. </param>
  1563. <param name="scale">The scale of the column. </param>
  1564. </member>
  1565. <member name="P:Devart.Common.DbLoaderColumn.Name">
  1566. <summary>Gets or sets the name of the <see cref="T:Devart.Common.DbLoaderColumn" />. </summary>
  1567. <keywords>DbLoaderColumn.Name property </keywords>
  1568. <value>The name of the <see cref="T:Devart.Common.DbLoaderColumn" />. The default value is an empty string (""). </value>
  1569. </member>
  1570. <member name="P:Devart.Common.DbLoaderColumn.Precision">
  1571. <summary>Gets or sets the maximum number of digits used to represent the column value. </summary>
  1572. <keywords>DbLoaderColumn.Precision property </keywords>
  1573. <value>The maximum number of digits used to represent the column value. The default value is 0. </value>
  1574. </member>
  1575. <member name="P:Devart.Common.DbLoaderColumn.Scale">
  1576. <summary>Gets or sets the number of decimal places to which column value is resolved. </summary>
  1577. <keywords>DbLoaderColumn.Scale property </keywords>
  1578. <value>The number of decimal places to which column value is resolved. The default value is 0. </value>
  1579. </member>
  1580. <member name="P:Devart.Common.DbLoaderColumn.Size">
  1581. <summary>Gets or sets the maximum size, in bytes, of the data within the column. </summary>
  1582. <keywords>DbLoaderColumn.Size property </keywords>
  1583. <value>The maximum size, in bytes, of the data within the column. </value>
  1584. </member>
  1585. <member name="M:Devart.Common.DbLoaderColumn.ToString()">
  1586. <summary>Returns the name of the <see cref="T:Devart.Common.DbLoaderColumn" />. </summary>
  1587. <keywords>DbLoaderColumn.ToString method </keywords>
  1588. <returns>The name of the <see cref="T:Devart.Common.DbLoaderColumn" />. </returns>
  1589. </member>
  1590. <member name="T:Devart.Common.DbLoaderColumnCollection">
  1591. <summary>This class is not used in dotConnect for SQLite. </summary>
  1592. </member>
  1593. <member name="M:Devart.Common.DbLoaderColumnCollection.#ctor()">
  1594. <summary>Initializes a new instance of the <see cref="T:Devart.Common.DbLoaderColumnCollection" /> class. </summary>
  1595. </member>
  1596. <member name="M:Devart.Common.DbLoaderColumnCollection.Add(Devart.Common.DbLoaderColumn)">
  1597. <summary>Adds the specified <see cref="T:Devart.Common.DbLoaderColumn" /> to the <see cref="T:Devart.Common.DbLoaderColumnCollection" />. </summary>
  1598. <keywords>DbLoaderColumnCollection.Add method </keywords>
  1599. <param name="value">The <see cref="T:Devart.Common.DbLoaderColumn" /> to add to the collection. </param>
  1600. <returns>Index of the new <see cref="T:Devart.Common.DbLoaderColumn" /> object. </returns>
  1601. </member>
  1602. <member name="M:Devart.Common.DbLoaderColumnCollection.Contains(Devart.Common.DbLoaderColumn)">
  1603. <summary>Gets a value indicating whether a <see cref="T:Devart.Common.DbLoaderColumn" /> object exists in the collection. </summary>
  1604. <keywords>DbLoaderColumnCollection.Contains method </keywords>
  1605. <param name="value">The value of the <see cref="T:Devart.Common.DbLoaderColumn" /> object to find. </param>
  1606. <returns>
  1607. <see langword="true" /> if the collection contains the <see cref="T:Devart.Common.DbLoaderColumn" />; otherwise, <see langword="false" />. </returns>
  1608. <overloads>Gets a value indicating whether a <see cref="T:Devart.Common.DbLoaderColumn" /> object exists in the collection. </overloads>
  1609. </member>
  1610. <member name="M:Devart.Common.DbLoaderColumnCollection.Contains(System.String)">
  1611. <summary>Gets a value indicating whether a <see cref="T:Devart.Common.DbLoaderColumn" /> object with the specified name exists in the collection. </summary>
  1612. <keywords>DbLoaderColumnCollection.Contains method </keywords>
  1613. <param name="name">The name of the column to find. </param>
  1614. <returns>
  1615. <see langword="true" /> if the collection contains the <see cref="T:Devart.Common.DbLoaderColumn" />; otherwise, <see langword="false" />. </returns>
  1616. </member>
  1617. <member name="M:Devart.Common.DbLoaderColumnCollection.CopyTo(Devart.Common.DbLoaderColumn[],System.Int32)">
  1618. <summary>Copies <see cref="T:Devart.Common.DbLoaderColumn" /> objects from the <see cref="T:Devart.Common.DbLoaderColumnCollection" /> to the specified array. </summary>
  1619. <keywords>DbLoaderColumnCollection.CopyTo method </keywords>
  1620. <param name="array">The array into which to copy the <see cref="T:Devart.Common.DbLoaderColumn" /> objects. </param>
  1621. <param name="index">The zero-based index of the array. </param>
  1622. </member>
  1623. <member name="M:Devart.Common.DbLoaderColumnCollection.IndexOf(Devart.Common.DbLoaderColumn)">
  1624. <summary>Gets the location in the collection of the <see cref="T:Devart.Common.DbLoaderColumn" /> object. </summary>
  1625. <keywords>DbLoaderColumnCollection.IndexOf method </keywords>
  1626. <param name="value">The <see cref="T:Devart.Common.DbLoaderColumn" /> object to find. </param>
  1627. <returns>The zero-based location of the <see cref="T:Devart.Common.DbLoaderColumn" /> in the collection. </returns>
  1628. <overloads>Gets the location in the collection of the <see cref="T:Devart.Common.DbLoaderColumn" /> object. </overloads>
  1629. </member>
  1630. <member name="M:Devart.Common.DbLoaderColumnCollection.IndexOf(System.String)">
  1631. <summary>Gets the location in the collection of the <see cref="T:Devart.Common.DbLoaderColumn" /> object by the specified name. </summary>
  1632. <keywords>DbLoaderColumnCollection.IndexOf method </keywords>
  1633. <param name="name">The name of the column to find. </param>
  1634. <returns>The zero-based location of the <see cref="T:Devart.Common.DbLoaderColumn" /> in the collection. </returns>
  1635. </member>
  1636. <member name="M:Devart.Common.DbLoaderColumnCollection.Insert(System.Int32,Devart.Common.DbLoaderColumn)">
  1637. <summary>Inserts a <see cref="T:Devart.Common.DbLoaderColumn" /> into the collection at the specified index. </summary>
  1638. <keywords>DbLoaderColumnCollection.Insert method </keywords>
  1639. <param name="index">The zero-based index where the column is to be inserted within the collection. </param>
  1640. <param name="value">The <see cref="T:Devart.Common.DbLoaderColumn" /> to add to the collection. </param>
  1641. </member>
  1642. <member name="P:Devart.Common.DbLoaderColumnCollection.Item(System.Int32)">
  1643. <summary>Gets or sets the <see cref="T:Devart.Common.DbLoaderColumn" /> at the specified index. </summary>
  1644. <keywords>DbLoaderColumnCollection.Item property </keywords>
  1645. <param name="index">The zero-based index of the column. </param>
  1646. <value>The <see cref="T:Devart.Common.DbLoaderColumn" /> at the specified index. </value>
  1647. </member>
  1648. <member name="P:Devart.Common.DbLoaderColumnCollection.Item(System.String)">
  1649. <summary>Gets or sets the <see cref="T:Devart.Common.DbLoaderColumn" /> with the specified name. </summary>
  1650. <keywords>DbLoaderColumnCollection.Item property </keywords>
  1651. <param name="name">The name of the column. </param>
  1652. <value>The <see cref="T:Devart.Common.DbLoaderColumn" /> with the specified name. </value>
  1653. </member>
  1654. <member name="M:Devart.Common.DbLoaderColumnCollection.Remove(Devart.Common.DbLoaderColumn)">
  1655. <summary>Removes the specified <see cref="T:Devart.Common.DbLoaderColumn" /> object from the collection. </summary>
  1656. <keywords>DbLoaderColumnCollection.Remove method </keywords>
  1657. <param name="value">The <see cref="T:Devart.Common.DbLoaderColumn" /> object to remove from the collection. </param>
  1658. </member>
  1659. <member name="T:Devart.Common.DbMonitor">
  1660. <summary>Allows monitoring dynamic SQL execution in applications that use .NET data providers. </summary>
  1661. </member>
  1662. <member name="P:Devart.Common.DbMonitor.EventQueueLimit">
  1663. <summary>Gets or sets the maximal number of events that may be placed to a queue waiting to be processed by the dbMonitor application. </summary>
  1664. <keywords>DbMonitor.EventQueueLimit property </keywords>
  1665. <value>The maximal number of events that may be placed to a queue waiting to be processed by the dbMonitor application. </value>
  1666. </member>
  1667. <member name="P:Devart.Common.DbMonitor.Host">
  1668. <summary>Gets or sets the host where the dbMonitor application is running, 'localhost' by default. </summary>
  1669. <keywords>DbMonitor.Host property </keywords>
  1670. <value>The host where the dbMonitor application is running, 'localhost' by default. </value>
  1671. </member>
  1672. <member name="P:Devart.Common.DbMonitor.IsActive">
  1673. <summary>Enables or disables monitoring applications. </summary>
  1674. <keywords>DbMonitor.IsActive property </keywords>
  1675. <value>
  1676. <see langword="true" /> if monitoring the application is enabled; otherwise, <see langword="false" />. </value>
  1677. </member>
  1678. <member name="P:Devart.Common.DbMonitor.Port">
  1679. <summary>Gets or sets the port of the dbMonitor application to which to connect, 1000 by default. </summary>
  1680. <keywords>DbMonitor.Port property </keywords>
  1681. <value>Port of the dbMonitor application to which to connect, 1000 by default. </value>
  1682. </member>
  1683. <member name="E:Devart.Common.DbMonitor.TraceEvent">
  1684. <summary>Occurs when <see cref="T:Devart.Common.DbMonitor" /> object signals about some database activity. </summary>
  1685. <keywords>DbMonitor.TraceEvent event </keywords>
  1686. </member>
  1687. <member name="P:Devart.Common.DbMonitor.UseApp">
  1688. <summary>Disables or enables sending database interaction events to dbMonitor application. </summary>
  1689. <keywords>DbMonitor.UseApp property </keywords>
  1690. <value> <see langword="true" /> if sending database interaction events to dbMonitor application is enabled; otherwise, <see langword="false" />. </value>
  1691. </member>
  1692. <member name="P:Devart.Common.DbMonitor.UseIdeOutput">
  1693. <summary>Enables or disables writing log messages to the IDE output window. </summary>
  1694. <keywords>DbMonitor.UseIdeOutput property </keywords>
  1695. <value>If <see langword="true" />, the <see cref="T:Devart.Common.DbMonitor" /> object writes its information to the Output window (Visual Studio) or Messages window (Delphi). </value>
  1696. </member>
  1697. <member name="T:Devart.Common.DbParameterBase">
  1698. <summary>Represents a parameter to a <see cref="T:Devart.Common.DbCommandBase" />, and optionally, its mapping to <see cref="T:System.Data.DataSet" /> columns. </summary>
  1699. </member>
  1700. <member name="M:Devart.Common.DbParameterBase.CopyTo(System.Data.Common.DbParameter)">
  1701. <summary>Copies all properties of a <see cref="T:Devart.Common.DbParameterBase" /> object to another <see cref="T:Devart.Common.DbParameterBase" /> object. </summary>
  1702. <keywords>DbParameterBase.CopyTo method </keywords>
  1703. <param name="destination">The <see cref="T:System.Data.DbParameterBase" /> object to copy properties to. </param>
  1704. </member>
  1705. <member name="P:Devart.Common.DbParameterBase.Direction">
  1706. <summary>Gets or sets a value indicating whether the parameter is input-only, output-only, or bidirectional parameter. </summary>
  1707. <keywords>DbParameterBase.Direction property </keywords>
  1708. <value>One of the <see cref="T:System.Data.ParameterDirection" /> values. The default value is Input. </value>
  1709. </member>
  1710. <member name="P:Devart.Common.DbParameterBase.IsNullable">
  1711. <summary>Gets or sets a value indicating whether the parameter accepts null values. </summary>
  1712. <keywords>DbParameterBase.IsNullable property </keywords>
  1713. <value>
  1714. <see langword="true" /> if null values are accepted; otherwise, <see langword="false" />. The default value is <see langword="false" />. </value>
  1715. </member>
  1716. <member name="P:Devart.Common.DbParameterBase.ParameterName">
  1717. <summary>Gets or sets the name of the <see cref="T:Devart.Common.DbParameterBase" />. </summary>
  1718. <keywords>DbParameterBase.ParameterName property </keywords>
  1719. <value>The name of the <see cref="T:Devart.Common.DbParameterBase" />. The default value is an empty string (""). </value>
  1720. </member>
  1721. <member name="P:Devart.Common.DbParameterBase.Size">
  1722. <summary>Gets or sets the maximum size, in bytes, of the data within the column. </summary>
  1723. <keywords>DbParameterBase.Size property </keywords>
  1724. <value>The maximum size, in bytes, of the data within the column. The default value is inferred from the parameter value. </value>
  1725. </member>
  1726. <member name="P:Devart.Common.DbParameterBase.SourceColumn">
  1727. <summary>Gets or sets the name of the source column mapped to the <see cref="T:System.Data.DataSet" /> and used for loading or returning the <see cref="P:Devart.Common.DbParameterBase.Value" />. For internal use. </summary>
  1728. <keywords>DbParameterBase.SourceColumn property </keywords>
  1729. <value>The name of the source column that will be used to set the value of this parameter. The default value is an empty string (""). </value>
  1730. </member>
  1731. <member name="P:Devart.Common.DbParameterBase.SourceColumnNullMapping">
  1732. <summary>Sets or gets a value which indicates whether the source column is nullable. </summary>
  1733. <keywords>DbParameterBase.SourceColumnNullMapping property </keywords>
  1734. <value>
  1735. <see langword="true" /> if source column is nullable; otherwise, <see langword="false" />. The default value is <see langword="false" />. </value>
  1736. </member>
  1737. <member name="P:Devart.Common.DbParameterBase.SourceVersion">
  1738. <summary>Gets or sets the <see cref="T:System.Data.DataRowVersion" /> to use when loading <see cref="P:Devart.Common.DbParameterBase.Value" />. </summary>
  1739. <keywords>DbParameterBase.SourceVersion property </keywords>
  1740. <value>One of the <see cref="T:System.Data.DataRowVersion" /> values. The default value is Current. </value>
  1741. </member>
  1742. <member name="M:Devart.Common.DbParameterBase.ToString()">
  1743. <summary>Gets the name of the <see cref="T:Devart.Common.DbParameterBase" />. </summary>
  1744. <keywords>DbParameterBase.ToString method </keywords>
  1745. <returns>The name of the <see cref="T:Devart.Common.DbParameterBase" />. </returns>
  1746. </member>
  1747. <member name="P:Devart.Common.DbParameterBase.Value">
  1748. <summary>Gets or sets the value of the parameter. </summary>
  1749. <keywords>DbParameterBase.Value property </keywords>
  1750. <value>An <see cref="T:System.Object" /> that is the value of the parameter. The default value is null. </value>
  1751. </member>
  1752. <member name="T:Devart.Common.DbParameterBaseCollection">
  1753. <summary>Collects all parameters relevant to a <see cref="T:Devart.Common.DbCommandBase" /> as well as their respective mappings to <see cref="T:System.Data.DataSet" /> columns. </summary>
  1754. </member>
  1755. <member name="M:Devart.Common.DbParameterBaseCollection.Add(System.Object)">
  1756. <summary>Adds the specified <see cref="T:Devart.Common.DbParameterBase" /> to the <see cref="T:Devart.Common.DbCommandBase" />. </summary>
  1757. <keywords>DbParameterBaseCollection.Add method </keywords>
  1758. <param name="value">The <see cref="T:Devart.Common.DbParameterBase" /> to add to the <see cref="T:Devart.Common.DbCommandBase" />. </param>
  1759. <returns>The index of the new <see cref="T:Devart.Common.DbParameterBase" /> object. </returns>
  1760. </member>
  1761. <member name="M:Devart.Common.DbParameterBaseCollection.AddRange(System.Array)">
  1762. <summary>Adds the specified array of <see cref="T:Devart.Common.DbParameterBase" /> objects to the <see cref="T:Devart.Common.DbParameterBaseCollection" />. </summary>
  1763. <keywords>DbParameterBaseCollection.AddRange method </keywords>
  1764. <param name="values">Array of <see cref="T:Devart.Common.DbParameterBase" /> objects to be added to the <see cref="T:Devart.Common.DbParameterBaseCollection" />. </param>
  1765. </member>
  1766. <member name="M:Devart.Common.DbParameterBaseCollection.Clear()">
  1767. <summary>Removes all items from the collection. </summary>
  1768. <keywords>DbParameterBaseCollection.Clear method </keywords>
  1769. </member>
  1770. <member name="M:Devart.Common.DbParameterBaseCollection.Contains(System.Object)">
  1771. <summary>Gets a value indicating whether a <see cref="T:Devart.Common.DbParameterBase" /> object exists in the collection. </summary>
  1772. <keywords>DbParameterBaseCollection.Contains method </keywords>
  1773. <param name="value">The value of the <see cref="T:Devart.Common.DbParameterBase" /> object to find. </param>
  1774. <returns>
  1775. <see langword="true" /> if the collection contains the <see cref="T:Devart.Common.DbParameterBase" />; otherwise, <see langword="false" />. </returns>
  1776. <overloads>Gets a value indicating whether a <see cref="T:Devart.Common.DbParameterBase" /> object exists in the collection. </overloads>
  1777. </member>
  1778. <member name="M:Devart.Common.DbParameterBaseCollection.Contains(System.String)">
  1779. <summary>Gets a value indicating whether a <see cref="T:Devart.Common.DbParameterBase" /> object with the specified parameter name exists in the collection. </summary>
  1780. <keywords>DbParameterBaseCollection.Contains method </keywords>
  1781. <param name="value">The name of the <see cref="T:Devart.Common.DbParameterBase" /> object to find. </param>
  1782. <returns>
  1783. <see langword="true" /> if the collection contains the <see cref="T:Devart.Common.DbParameterBase" />; otherwise, <see langword="false" />. </returns>
  1784. </member>
  1785. <member name="M:Devart.Common.DbParameterBaseCollection.CopyTo(System.Array,System.Int32)">
  1786. <summary>Copies a <see cref="T:Devart.Common.DbParameterBase" /> objects from the <see cref="T:Devart.Common.DbParameterBaseCollection" /> to the specified array. </summary>
  1787. <keywords>DbParameterBaseCollection.CopyTo method </keywords>
  1788. <param name="array">The array into which to copy the <see cref="T:Devart.Common.DbParameterBase" /> objects. </param>
  1789. <param name="index">The zero-based index of the array. </param>
  1790. </member>
  1791. <member name="P:Devart.Common.DbParameterBaseCollection.Count">
  1792. <summary>Gets the number of <see cref="T:Devart.Common.DbParameterBase" /> objects in the collection. </summary>
  1793. <keywords>DbParameterBaseCollection.Count property </keywords>
  1794. <value>The number of <see cref="T:Devart.Common.DbParameterBase" /> objects in the collection. </value>
  1795. </member>
  1796. <member name="M:Devart.Common.DbParameterBaseCollection.GetEnumerator()">
  1797. <summary>Returns an enumerator for the <see cref="T:Devart.Common.DbParameterBaseCollection" />. </summary>
  1798. <keywords>DbParameterBaseCollection.GetEnumerator method </keywords>
  1799. <returns>An enumerator for the <see cref="T:Devart.Common.DbParameterBaseCollection" />. </returns>
  1800. </member>
  1801. <member name="M:Devart.Common.DbParameterBaseCollection.IndexOf(System.Object)">
  1802. <summary>Gets the location in the collection of the <see cref="T:Devart.Common.DbParameterBase" /> objects. </summary>
  1803. <keywords>DbParameterBaseCollection.IndexOf method </keywords>
  1804. <param name="value">The <see cref="T:Devart.Common.DbParameterBase" /> object to find. </param>
  1805. <returns>The zero-based location of the <see cref="T:Devart.Common.DbParameterBase" /> in the collection. </returns>
  1806. <overloads>Gets the location in the collection of the <see cref="T:Devart.Common.DbParameterBase" /> objects. </overloads>
  1807. </member>
  1808. <member name="M:Devart.Common.DbParameterBaseCollection.IndexOf(System.String)">
  1809. <summary>Gets the location in the collection of the <see cref="T:Devart.Common.DbParameterBase" /> object with a specific parameter name. </summary>
  1810. <keywords>DbParameterBaseCollection.IndexOf method </keywords>
  1811. <param name="parameterName">The name of the parameter to retrieve. </param>
  1812. <returns>The zero-based location of the <see cref="T:Devart.Common.DbParameterBase" /> in the collection. </returns>
  1813. </member>
  1814. <member name="M:Devart.Common.DbParameterBaseCollection.Insert(System.Int32,System.Object)">
  1815. <summary>Inserts a <see cref="T:Devart.Common.DbParameterBase" /> into the collection at the specified index. </summary>
  1816. <keywords>DbParameterBaseCollection.Insert method </keywords>
  1817. <param name="index">The zero-based index where the parameter is to be inserted within the collection. </param>
  1818. <param name="value">The <see cref="T:Devart.Common.DbParameterBase" /> object to add to the collection. </param>
  1819. </member>
  1820. <member name="P:Devart.Common.DbParameterBaseCollection.IsFixedSize">
  1821. <summary>Indicating whether the collection has a fixed size. </summary>
  1822. <keywords>DbParameterBaseCollection.IsFixedSize property </keywords>
  1823. <value>
  1824. <see langword="true" /> if the collection has a fixed size; otherwise, <see langword="false" />. </value>
  1825. </member>
  1826. <member name="P:Devart.Common.DbParameterBaseCollection.IsReadOnly">
  1827. <summary>Indicates whether the collection is read-only. </summary>
  1828. <keywords>DbParameterBaseCollection.IsReadOnly property </keywords>
  1829. <value>
  1830. <see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />. </value>
  1831. </member>
  1832. <member name="P:Devart.Common.DbParameterBaseCollection.IsSynchronized">
  1833. <summary>Indicates whether access to the collection is synchronized (thread-safe). </summary>
  1834. <keywords>DbParameterBaseCollection.IsSynchronized property </keywords>
  1835. <value>
  1836. <see langword="true" /> if access to the collection is synchronized (thread-safe); otherwise, <see langword="false" />. </value>
  1837. </member>
  1838. <member name="M:Devart.Common.DbParameterBaseCollection.Remove(System.Object)">
  1839. <summary>Removes the specified <see cref="T:Devart.Common.DbParameterBase" /> from the collection. </summary>
  1840. <keywords>DbParameterBaseCollection.Remove method </keywords>
  1841. <param name="value">The <see cref="T:Devart.Common.DbParameterBase" /> object to remove from the collection. </param>
  1842. </member>
  1843. <member name="M:Devart.Common.DbParameterBaseCollection.RemoveAt(System.Int32)">
  1844. <summary>Removes the <see cref="T:Devart.Common.DbParameterBase" /> at the specified index from the collection. </summary>
  1845. <keywords>DbParameterBaseCollection.RemoveAt method </keywords>
  1846. <param name="index">The zero-based index of the parameter to remove. </param>
  1847. <overloads>Removes the specified <see cref="T:Devart.Common.DbParameterBase" /> from the collection. </overloads>
  1848. </member>
  1849. <member name="M:Devart.Common.DbParameterBaseCollection.RemoveAt(System.String)">
  1850. <summary>Removes the <see cref="T:Devart.Common.DbParameterBase" /> with the specified name from the collection. </summary>
  1851. <keywords>DbParameterBaseCollection.RemoveAt method </keywords>
  1852. <param name="parameterName">The name of the parameter to remove. </param>
  1853. </member>
  1854. <member name="P:Devart.Common.DbParameterBaseCollection.SyncRoot">
  1855. <summary>Gets an object that can be used to synchronize access to the <see cref="T:Devart.Common.DbParameterBaseCollection" />. </summary>
  1856. <keywords>DbParameterBaseCollection.SyncRoot property </keywords>
  1857. <value>An object that can be used to synchronize access to the <see cref="T:Devart.Common.DbParameterBaseCollection" />. </value>
  1858. </member>
  1859. <member name="T:Devart.Common.DbProviderException">
  1860. <summary>The base class for all exceptions thrown on data provider side. This does not include data source exceptions. </summary>
  1861. </member>
  1862. <member name="M:Devart.Common.DbProviderException.ToString()">
  1863. <summary>Gets the exception text. </summary>
  1864. <keywords>DbProviderException.ToString method </keywords>
  1865. <returns>The exception text. </returns>
  1866. </member>
  1867. <member name="T:Devart.Common.DbScript">
  1868. <summary>Serves to execute series of SQL statements separated by special symbols. </summary>
  1869. </member>
  1870. <member name="M:Devart.Common.DbScript.Cancel()">
  1871. <summary>Tries to cancel the execution of a <see cref="T:Devart.Common.DbScript" /> descendant. </summary>
  1872. <keywords>DbScript.Cancel method </keywords>
  1873. </member>
  1874. <member name="P:Devart.Common.DbScript.CommandTimeout">
  1875. <summary>Gets or sets the wait time before terminating an attempt to execute a script and generating an error. </summary>
  1876. <keywords>DbScript.CommandTimeout property </keywords>
  1877. <value>The time to wait while server responds when executing the command. The default value is 30 seconds. </value>
  1878. </member>
  1879. <member name="P:Devart.Common.DbScript.Connection">
  1880. <summary>Gets or sets the <see cref="T:System.Data.IDbConnection" /> used by this instance of the <see cref="T:Devart.Common.DbScript" />. </summary>
  1881. <keywords>DbScript.Connection property </keywords>
  1882. <value>The connection to a data source. The default value is a null reference. </value>
  1883. </member>
  1884. <member name="E:Devart.Common.DbScript.Error">
  1885. <summary>Occurs when a SQL statement within script has produced an error. </summary>
  1886. <keywords>DbScript.Error event </keywords>
  1887. </member>
  1888. <member name="M:Devart.Common.DbScript.Execute()">
  1889. <summary>Executes the script specified in <see cref="P:Devart.Common.DbScript.ScriptText" /> property. </summary>
  1890. <keywords>DbScript.Execute method </keywords>
  1891. </member>
  1892. <member name="M:Devart.Common.DbScript.ExecuteNext(System.Data.IDataReader@)">
  1893. <summary>Executes the next statement from the script. </summary>
  1894. <keywords>DbScript.ExecuteNext method </keywords>
  1895. <param name="reader">
  1896. <see cref="T:Devart.Common.DbDataReaderBase" /> to store result set. </param>
  1897. <returns>
  1898. <see langword="true" /> if there are more statements to execute; otherwise, <see langword="false" />. </returns>
  1899. </member>
  1900. <member name="P:Devart.Common.DbScript.Name">
  1901. <summary>Gets or sets the name of component that will be displayed in dbMonitor application. </summary>
  1902. <keywords>DbScript.Name property </keywords>
  1903. <value>The name of the component. </value>
  1904. </member>
  1905. <member name="M:Devart.Common.DbScript.Open(System.IO.Stream)">
  1906. <summary>Prepares a stream to be executed as SQL script. </summary>
  1907. <keywords>DbScript.Open method </keywords>
  1908. <param name="stream">Stream to read SQL statements from. </param>
  1909. <overloads>Prepares a stream to be executed as SQL script. </overloads>
  1910. </member>
  1911. <member name="M:Devart.Common.DbScript.Open(System.IO.TextReader)">
  1912. <summary>Prepares a StreamReader to be executed as SQL script. </summary>
  1913. <keywords>DbScript.Open method </keywords>
  1914. <param name="reader">TextReader to read SQL statements from. </param>
  1915. </member>
  1916. <member name="M:Devart.Common.DbScript.Open(System.String)">
  1917. <summary>Prepares a file stream to be executed as SQL script. </summary>
  1918. <keywords>DbScript.Open method </keywords>
  1919. <param name="fileName">Name of file to open. </param>
  1920. </member>
  1921. <member name="E:Devart.Common.DbScript.Progress">
  1922. <summary>Occurs when a SQL statement within script has successfully executed. </summary>
  1923. <keywords>DbScript.Progress event </keywords>
  1924. </member>
  1925. <member name="M:Devart.Common.DbScript.Reset()">
  1926. <summary>Positions <see cref="M:Devart.Common.DbScript.ExecuteNext" /> method on the first statement in the script. </summary>
  1927. <keywords>DbScript.Reset method </keywords>
  1928. </member>
  1929. <member name="P:Devart.Common.DbScript.ScriptText">
  1930. <summary>Gets or sets script text. </summary>
  1931. <keywords>DbScript.ScriptText property </keywords>
  1932. <value>The text of the script. The default value is an empty string (""). </value>
  1933. </member>
  1934. <member name="P:Devart.Common.DbScript.Statements">
  1935. <summary>Gets the collection of statements that make up the script. </summary>
  1936. <keywords>DbScript.Statements property </keywords>
  1937. <value>Collection of statements. </value>
  1938. </member>
  1939. <member name="T:Devart.Common.DbTransactionBase">
  1940. <summary>Base class for the dotConnect for SQLite transaction class <see cref="T:Devart.Data.SQLite.SQLiteTransaction" /> </summary>
  1941. </member>
  1942. <member name="P:Devart.Common.DbTransactionBase.IsolationLevel">
  1943. <summary>Specifies the <see cref="T:System.Data.IsolationLevel" /> for the transaction. </summary>
  1944. <keywords>DbTransactionBase.IsolationLevel property </keywords>
  1945. <value>The <see cref="T:System.Data.IsolationLevel" /> for the transaction. </value>
  1946. </member>
  1947. <member name="E:Devart.Common.DbTransactionBase.StateChanged">
  1948. <summary>Occurs when the state of the transaction is changed. </summary>
  1949. <keywords>DbTransactionBase.StateChanged event </keywords>
  1950. </member>
  1951. <member name="E:Devart.Common.DbTransactionBase.StateChanging">
  1952. <summary>Occurs when the state of the transaction is changing. </summary>
  1953. <keywords>DbTransactionBase.StateChanging event </keywords>
  1954. </member>
  1955. <member name="T:Devart.Common.DumpMode">
  1956. <summary>Specifies what kind of information should be exported by <see cref="T:Devart.Data.SQLite.SQLiteDump" />. </summary>
  1957. </member>
  1958. <member name="F:Devart.Common.DumpMode.All">
  1959. <summary>Export both data and metadata. The dump contains DDL and DML statements. </summary>
  1960. </member>
  1961. <member name="F:Devart.Common.DumpMode.Data">
  1962. <summary>Export only data contained in tables. The dump text contains DML statements only. </summary>
  1963. </member>
  1964. <member name="F:Devart.Common.DumpMode.Schema">
  1965. <summary>Export metadata information only. The dump contains DDL statements only. </summary>
  1966. </member>
  1967. <member name="T:Devart.Common.MonitorEventArgs">
  1968. <summary>Provides data for the <see cref="E:Devart.Common.DbMonitor.TraceEvent" /> event of the <see cref="T:Devart.Common.DbMonitor" /> class. </summary>
  1969. </member>
  1970. <member name="P:Devart.Common.MonitorEventArgs.CallStack">
  1971. <summary>Gets the call stack of the monitor event. </summary>
  1972. <keywords>MonitorEventArgs.CallStack property </keywords>
  1973. <value>The call stack of the monitor event. </value>
  1974. </member>
  1975. <member name="P:Devart.Common.MonitorEventArgs.Description">
  1976. <summary>Gets the description of a <see cref="T:Devart.Common.DbMonitor" /> event. </summary>
  1977. <keywords>MonitorEventArgs.Description property </keywords>
  1978. <value>The text description of a <see cref="T:Devart.Common.DbMonitor" /> event. </value>
  1979. </member>
  1980. <member name="P:Devart.Common.MonitorEventArgs.Duration">
  1981. <summary>The time between the start and the end of the event. </summary>
  1982. <keywords>MonitorEventArgs.Duration property </keywords>
  1983. </member>
  1984. <member name="P:Devart.Common.MonitorEventArgs.EventType">
  1985. <summary>Gets <see cref="T:Devart.Common.DbMonitor" /> event type. </summary>
  1986. <keywords>MonitorEventArgs.EventType property </keywords>
  1987. <value>The <see cref="T:Devart.Common.DbMonitor" /> event type that depends on SQL activity of the application. </value>
  1988. </member>
  1989. <member name="P:Devart.Common.MonitorEventArgs.ExtraInfo">
  1990. <summary>Gets the additional information for a <see cref="T:Devart.Common.DbMonitor" /> event. </summary>
  1991. <keywords>MonitorEventArgs.ExtraInfo property </keywords>
  1992. <value>The string representation of the connection string, error text, or SQL parameters. </value>
  1993. </member>
  1994. <member name="P:Devart.Common.MonitorEventArgs.TracePoint">
  1995. <summary>Determines whether <see cref="E:Devart.Common.DbMonitor.TraceEvent" /> event occurs before or after the operation takes place. </summary>
  1996. <keywords>MonitorEventArgs.TracePoint property </keywords>
  1997. <value>One of <see cref="T:Devart.Common.MonitorTracePoint" /> values. </value>
  1998. </member>
  1999. <member name="T:Devart.Common.MonitorEventHandler">
  2000. <summary>Represents the method that will handle the <see cref="E:Devart.Common.DbMonitor.TraceEvent" /> event of the <see cref="T:Devart.Common.DbMonitor" /> class. </summary>
  2001. <keywords>MonitorEventHandler delegate </keywords>
  2002. <param name="sender">The source of the event. </param>
  2003. <param name="e">The <see cref="T:Devart.Common.MonitorEventArgs" /> object that contains the event data. </param>
  2004. </member>
  2005. <member name="T:Devart.Common.MonitorEventType">
  2006. <summary>Describes type of the current <see cref="T:Devart.Common.DbMonitor" /> event. </summary>
  2007. </member>
  2008. <member name="F:Devart.Common.MonitorEventType.ActivateInPool">
  2009. <summary>Application takes a connection from the pool. </summary>
  2010. </member>
  2011. <member name="F:Devart.Common.MonitorEventType.BeginTransaction">
  2012. <summary>Application begins a transaction (local or distributed) against a data source. </summary>
  2013. </member>
  2014. <member name="F:Devart.Common.MonitorEventType.Commit">
  2015. <summary>Application executes COMMIT statement against a data source. </summary>
  2016. </member>
  2017. <member name="F:Devart.Common.MonitorEventType.Connect">
  2018. <summary>Application opens connection to a data source. </summary>
  2019. </member>
  2020. <member name="F:Devart.Common.MonitorEventType.Custom">
  2021. <summary>Application executes any user defined statement against a data source. </summary>
  2022. </member>
  2023. <member name="F:Devart.Common.MonitorEventType.Disconnect">
  2024. <summary>Application closes connection to a data source. </summary>
  2025. </member>
  2026. <member name="F:Devart.Common.MonitorEventType.Error">
  2027. <summary>Data source returns an error message. </summary>
  2028. </member>
  2029. <member name="F:Devart.Common.MonitorEventType.Execute">
  2030. <summary>Application executes a statement against a data source. </summary>
  2031. </member>
  2032. <member name="F:Devart.Common.MonitorEventType.Prepare">
  2033. <summary>Application prepares an execute statement. </summary>
  2034. </member>
  2035. <member name="F:Devart.Common.MonitorEventType.ReturnToPool">
  2036. <summary>Application returns a connection to the pool. </summary>
  2037. </member>
  2038. <member name="F:Devart.Common.MonitorEventType.Rollback">
  2039. <summary>Application executes ROLLBACK statement against a data source. </summary>
  2040. </member>
  2041. <member name="T:Devart.Common.MonitorTracePoint">
  2042. <summary>Determines when <see cref="E:Devart.Common.DbMonitor.TraceEvent" /> event occurs. </summary>
  2043. </member>
  2044. <member name="F:Devart.Common.MonitorTracePoint.AfterEvent">
  2045. <summary>Occurs in <see cref="T:Devart.Common.DbMonitor" /> after some operation is complete. </summary>
  2046. </member>
  2047. <member name="F:Devart.Common.MonitorTracePoint.BeforeEvent">
  2048. <summary>Occurs in <see cref="T:Devart.Common.DbMonitor" /> before some operation has started. </summary>
  2049. </member>
  2050. <member name="T:Devart.Common.ParentDataRelation">
  2051. <summary>Establishes query-based master-detail relation. </summary>
  2052. </member>
  2053. <member name="M:Devart.Common.ParentDataRelation.#ctor(System.ComponentModel.IListSource,System.String[],System.String[])">
  2054. <summary>Initializes a new instance of the <see cref="T:Devart.Common.ParentDataRelation" /> class using the specified parent <see cref="T:Devart.Common.DbDataTable" /> and matched arrays of parent and child column names. </summary>
  2055. <param name="parentTable">A <see cref="T:Devart.Common.DbDataTable" /> that is used as master dataset. </param>
  2056. <param name="parentColumnNames">List of master columns used to establish the relation. </param>
  2057. <param name="childColumnNames">List of child columns used to establish the relation. </param>
  2058. </member>
  2059. <member name="P:Devart.Common.ParentDataRelation.ChildColumnNames">
  2060. <summary>Gets or sets list of child columns used to establish the relation. </summary>
  2061. <keywords>ParentDataRelation.ChildColumnNames property </keywords>
  2062. <value>List of child columns used to establish the relation. </value>
  2063. </member>
  2064. <member name="P:Devart.Common.ParentDataRelation.ParentColumnNames">
  2065. <summary>Gets or sets list of child columns used to establish the relation. </summary>
  2066. <keywords>ParentDataRelation.ParentColumnNames property </keywords>
  2067. <value>List of parent columns used to establish the relation. </value>
  2068. </member>
  2069. <member name="P:Devart.Common.ParentDataRelation.ParentTable">
  2070. <summary>Gets or sets the <see cref="T:Devart.Common.DbDataTable" /> that is used as master dataset. </summary>
  2071. <keywords>ParentDataRelation.ParentTable property </keywords>
  2072. <value>A <see cref="T:Devart.Common.DbDataTable" /> that is used as master dataset. </value>
  2073. </member>
  2074. <member name="T:Devart.Common.ProxyException">
  2075. <summary>Represents an exception that occurs when connecting through a proxy server. </summary>
  2076. </member>
  2077. <member name="M:Devart.Common.ProxyException.#ctor(System.Exception)">
  2078. <summary>Initializes a new instance of the <see cref="T:Devart.Common.ProxyException" /> class to initialize with inner exception. </summary>
  2079. <param name="inner">Inner exception </param>
  2080. </member>
  2081. <member name="M:Devart.Common.ProxyException.#ctor(System.String)">
  2082. <summary>Initializes a new instance of the <see cref="T:Devart.Common.ProxyException" /> class with the exception message. </summary>
  2083. <param name="message">The exception message. </param>
  2084. </member>
  2085. <member name="T:Devart.Common.ProxyOptions">
  2086. <summary>Represents proxy server settings. </summary>
  2087. </member>
  2088. <member name="M:Devart.Common.ProxyOptions.#ctor()">
  2089. <summary>Initializes a new instance of the <see cref="T:Devart.Common.ProxyOptions" /> class. </summary>
  2090. </member>
  2091. <member name="M:Devart.Common.ProxyOptions.#ctor(System.String,System.Int32,System.String,System.String)">
  2092. <summary>Initializes a new instance of the <see cref="T:Devart.Common.ProxyOptions" /> class. </summary>
  2093. <param name="host">The host name or IP address of proxy server. </param>
  2094. <param name="port">The port number of the proxy server. </param>
  2095. <param name="user">The proxy server account name. </param>
  2096. <param name="password">The password for the proxy server account. </param>
  2097. </member>
  2098. <member name="F:Devart.Common.ProxyOptions.DefaultPort">
  2099. <summary>The default value for the <see cref="P:Devart.Common.ProxyOptions.Port" /> property. </summary>
  2100. <keywords>ProxyOptions.DefaultPort field </keywords>
  2101. </member>
  2102. <member name="P:Devart.Common.ProxyOptions.Host">
  2103. <summary>Gets or sets the host name or IP address of the proxy server to which to connect. </summary>
  2104. <keywords>ProxyOptions.Host property </keywords>
  2105. <value>The host name or IP address of proxy server. </value>
  2106. </member>
  2107. <member name="P:Devart.Common.ProxyOptions.Password">
  2108. <summary>Gets or sets the password for the proxy server account. </summary>
  2109. <keywords>ProxyOptions.Password property </keywords>
  2110. <value>The password for the proxy server account. </value>
  2111. </member>
  2112. <member name="P:Devart.Common.ProxyOptions.Port">
  2113. <summary>Gets or sets the port number of the proxy server. </summary>
  2114. <keywords>ProxyOptions.Port property </keywords>
  2115. <value>The port number of the proxy server. The default value is 3128. </value>
  2116. </member>
  2117. <member name="E:Devart.Common.ProxyOptions.PropertyChanged">
  2118. <summary>Occurs when one of the properties of the <see cref="T:Devart.Common.ProxyOptions" /> was changed. </summary>
  2119. <keywords>ProxyOptions.PropertyChanged event </keywords>
  2120. </member>
  2121. <member name="P:Devart.Common.ProxyOptions.ProxyAddress">
  2122. <summary>Gets the uniform resource identifier (URI), generated from the values of the <see cref="P:Devart.Common.ProxyOptions.Host" />, <see cref="P:Devart.Common.ProxyOptions.Port" />, <see cref="P:Devart.Common.ProxyOptions.User" />, and <see cref="P:Devart.Common.ProxyOptions.Password" /> properties. </summary>
  2123. <keywords>ProxyOptions.ProxyAddress property </keywords>
  2124. </member>
  2125. <member name="F:Devart.Common.ProxyOptions.ProxyHostKeyword">
  2126. <summary>Represents the name of proxy host parameter in the connection string. </summary>
  2127. <keywords>ProxyOptions.ProxyHostKeyword field </keywords>
  2128. </member>
  2129. <member name="F:Devart.Common.ProxyOptions.ProxyPasswordKeyword">
  2130. <summary>Represents the name of proxy password parameter in the connection string. </summary>
  2131. <keywords>ProxyOptions.ProxyPasswordKeyword field </keywords>
  2132. </member>
  2133. <member name="F:Devart.Common.ProxyOptions.ProxyPortKeyword">
  2134. <summary>Represents the name of proxy port parameter in the connection string. </summary>
  2135. <keywords>ProxyOptions.ProxyPortKeyword field </keywords>
  2136. </member>
  2137. <member name="F:Devart.Common.ProxyOptions.ProxyUserKeyword">
  2138. <summary>Represents the name of proxy user parameter in the connection string. </summary>
  2139. <keywords>ProxyOptions.ProxyUserKeyword field </keywords>
  2140. </member>
  2141. <member name="M:Devart.Common.ProxyOptions.ShouldSerialize()">
  2142. <summary>Indicates whether designers should serialize this instanse. </summary>
  2143. <keywords>ProxyOptions.ShouldSerialize method </keywords>
  2144. <returns><see langword="true" />, if this instance will be serialized; otherwise, <see langword="false" />. </returns>
  2145. </member>
  2146. <member name="M:Devart.Common.ProxyOptions.ToString()">
  2147. <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:Devart.Common.ProxyOptions" />. </summary>
  2148. <keywords>ProxyOptions.ToString method </keywords>
  2149. </member>
  2150. <member name="P:Devart.Common.ProxyOptions.User">
  2151. <summary>Gets or sets the proxy server account name. </summary>
  2152. <keywords>ProxyOptions.User property </keywords>
  2153. <value>The proxy server account name. </value>
  2154. </member>
  2155. <member name="T:Devart.Common.ProxyOptionsPropertyChanged">
  2156. <summary>Represents the method that will handle the <see cref="E:Devart.Common.ProxyOptions.PropertyChanged" /> event of the <see cref="T:Devart.Common.ProxyOptions" /> class. </summary>
  2157. <keywords>ProxyOptionsPropertyChanged delegate </keywords>
  2158. <param name="name">The name of the changed <see cref="T:Devart.Common.ProxyOptions" /> property. </param>
  2159. <param name="value">The new value of the <see cref="T:Devart.Common.ProxyOptions" /> property. </param>
  2160. </member>
  2161. <member name="T:Devart.Common.QueryRecordCountException">
  2162. <summary>Describes an error that is raised during record count request process. </summary>
  2163. </member>
  2164. <member name="T:Devart.Common.RefreshRowMode">
  2165. <summary>Describes autorefresh actions that can be taken by <see cref="T:Devart.Common.DbCommandBuilder" /> and <see cref="T:Devart.Common.DbDataTable" />. </summary>
  2166. </member>
  2167. <member name="F:Devart.Common.RefreshRowMode.AfterInsert">
  2168. <summary>Retrieve field values from the server after an INSERT statement execution. </summary>
  2169. </member>
  2170. <member name="F:Devart.Common.RefreshRowMode.AfterUpdate">
  2171. <summary>Retrieve field values from the server after an UPDATE statement execution. </summary>
  2172. </member>
  2173. <member name="F:Devart.Common.RefreshRowMode.Both">
  2174. <summary>Retrieve field values from the server after an execution of either INSERT or UPDATE statements. </summary>
  2175. </member>
  2176. <member name="F:Devart.Common.RefreshRowMode.None">
  2177. <summary>Never refresh field values from the server. </summary>
  2178. </member>
  2179. <member name="T:Devart.Common.RetryMode">
  2180. <summary>Specifies the application behavior when connection is lost. </summary>
  2181. </member>
  2182. <member name="F:Devart.Common.RetryMode.Raise">
  2183. <summary>An exception is raised. </summary>
  2184. </member>
  2185. <member name="F:Devart.Common.RetryMode.Reexecute">
  2186. <summary>Reconnect is performed and abortive operation is reexecuted. </summary>
  2187. </member>
  2188. <member name="T:Devart.Common.ScriptErrorEventArgs">
  2189. <summary>Provides data for the <see cref="E:Devart.Common.DbScript.Error" /> event of the <see cref="T:Devart.Common.DbScript" /> class. </summary>
  2190. </member>
  2191. <member name="P:Devart.Common.ScriptErrorEventArgs.Exception">
  2192. <summary>Gets the <see cref="T:System.Exception" /> instance that <see cref="T:Devart.Common.DbScript" /> throws. </summary>
  2193. <keywords>ScriptErrorEventArgs.Exception property </keywords>
  2194. <value>An <see cref="T:System.Exception" /> instance that contains information specific to <see cref="T:Devart.Common.DbScript" /> error. </value>
  2195. </member>
  2196. <member name="P:Devart.Common.ScriptErrorEventArgs.Ignore">
  2197. <summary>Gets or sets whether the current error will be ignored or not. </summary>
  2198. <keywords>ScriptErrorEventArgs.Ignore property </keywords>
  2199. <value>
  2200. <see langword="true" /> if the current error will be ignored; otherwise <see langword="false" />. </value>
  2201. </member>
  2202. <member name="P:Devart.Common.ScriptErrorEventArgs.Length">
  2203. <summary>Gets length of statement where an error occurred. </summary>
  2204. <keywords>ScriptErrorEventArgs.Length property </keywords>
  2205. <value>Length of statement where an error occurred. </value>
  2206. </member>
  2207. <member name="P:Devart.Common.ScriptErrorEventArgs.LineNumber">
  2208. <summary>Gets number of the line where an error occurred. </summary>
  2209. <keywords>ScriptErrorEventArgs.LineNumber property </keywords>
  2210. <value>Number of the line where an error occurred. </value>
  2211. </member>
  2212. <member name="P:Devart.Common.ScriptErrorEventArgs.LinePosition">
  2213. <summary>Gets position in the line where an error occurred. </summary>
  2214. <keywords>ScriptErrorEventArgs.LinePosition property </keywords>
  2215. <value>Position in the line where an error occurred. </value>
  2216. </member>
  2217. <member name="P:Devart.Common.ScriptErrorEventArgs.Offset">
  2218. <summary>Gets offset of statement where an error occurred. </summary>
  2219. <keywords>ScriptErrorEventArgs.Offset property </keywords>
  2220. <value>Offset of statement where an error occurred. </value>
  2221. </member>
  2222. <member name="P:Devart.Common.ScriptErrorEventArgs.StatementType">
  2223. <summary>Gets type of the statement that caused an error. </summary>
  2224. <keywords>ScriptErrorEventArgs.StatementType property </keywords>
  2225. <value>One of the <see cref="T:Devart.Common.SqlStatementType" /> values. </value>
  2226. </member>
  2227. <member name="P:Devart.Common.ScriptErrorEventArgs.Text">
  2228. <summary>Gets SQL statement where an error occurred. </summary>
  2229. <keywords>ScriptErrorEventArgs.Text property </keywords>
  2230. <value>SQL statement text where an error occurred. </value>
  2231. </member>
  2232. <member name="T:Devart.Common.ScriptErrorEventHandler">
  2233. <summary>Represents the method that will handle the <see cref="E:Devart.Common.DbScript.Error" /> event of the <see cref="T:Devart.Common.DbScript" />. </summary>
  2234. <keywords>ScriptErrorEventHandler delegate </keywords>
  2235. <param name="sender">The source of the event. </param>
  2236. <param name="e">The <see cref="T:Devart.Common.ScriptErrorEventArgs" /> object that contains the event data. </param>
  2237. </member>
  2238. <member name="T:Devart.Common.ScriptProgressEventArgs">
  2239. <summary>Provides data for the <see cref="E:Devart.Common.DbScript.Progress" /> event of the <see cref="T:Devart.Common.DbScript" /> class. </summary>
  2240. </member>
  2241. <member name="P:Devart.Common.ScriptProgressEventArgs.Length">
  2242. <summary>Gets length of the statement in symbols. </summary>
  2243. <keywords>ScriptProgressEventArgs.Length property </keywords>
  2244. <value>Length of the statement. </value>
  2245. </member>
  2246. <member name="P:Devart.Common.ScriptProgressEventArgs.LineNumber">
  2247. <summary>Gets number of line in the whole script where the statement can be located. </summary>
  2248. <keywords>ScriptProgressEventArgs.LineNumber property </keywords>
  2249. <value>Number of line in the whole script. </value>
  2250. </member>
  2251. <member name="P:Devart.Common.ScriptProgressEventArgs.LinePosition">
  2252. <summary>Gets position of the statement in its line. </summary>
  2253. <keywords>ScriptProgressEventArgs.LinePosition property </keywords>
  2254. <value>Position of the statement. </value>
  2255. </member>
  2256. <member name="P:Devart.Common.ScriptProgressEventArgs.Offset">
  2257. <summary>Gets offset of the statement in the whole script text. </summary>
  2258. <keywords>ScriptProgressEventArgs.Offset property </keywords>
  2259. <value>Offset of the statement in the script text. </value>
  2260. </member>
  2261. <member name="P:Devart.Common.ScriptProgressEventArgs.StatementType">
  2262. <summary>Gets type of the statement that is executed. </summary>
  2263. <keywords>ScriptProgressEventArgs.StatementType property </keywords>
  2264. <value>One of the <see cref="T:Devart.Common.SqlStatementType" /> values. </value>
  2265. </member>
  2266. <member name="P:Devart.Common.ScriptProgressEventArgs.Text">
  2267. <summary>Gets SQL statement that has been executed. </summary>
  2268. <keywords>ScriptProgressEventArgs.Text property </keywords>
  2269. <value>SQL statement. </value>
  2270. </member>
  2271. <member name="T:Devart.Common.ScriptProgressEventHandler">
  2272. <summary>Represents the method that will handle the <see cref="E:Devart.Common.DbScript.Progress" /> event of the <see cref="T:Devart.Common.DbScript" />. </summary>
  2273. <keywords>ScriptProgressEventHandler delegate </keywords>
  2274. <param name="sender">The source of the event. </param>
  2275. <param name="e">The <see cref="T:Devart.Common.ScriptErrorEventArgs" /> object that contains the event data. </param>
  2276. </member>
  2277. <member name="T:Devart.Common.SqlStatement">
  2278. <summary>Represents a single statement in a script. </summary>
  2279. </member>
  2280. <member name="M:Devart.Common.SqlStatement.Execute()">
  2281. <summary>Executes the statement and returns result set. </summary>
  2282. <keywords>SqlStatement.Execute method </keywords>
  2283. <returns>Result set returned by the statement execution. </returns>
  2284. </member>
  2285. <member name="M:Devart.Common.SqlStatement.ExecuteNonQuery()">
  2286. <summary>Executes the statement. </summary>
  2287. <keywords>SqlStatement.ExecuteNonQuery method </keywords>
  2288. </member>
  2289. <member name="P:Devart.Common.SqlStatement.Length">
  2290. <summary>Gets length of the statement in symbols. </summary>
  2291. <keywords>SqlStatement.Length property </keywords>
  2292. <value>Length of the statement in symbols. </value>
  2293. </member>
  2294. <member name="P:Devart.Common.SqlStatement.LineNumber">
  2295. <summary>Gets number of line in the whole script where the statement can be located. </summary>
  2296. <keywords>SqlStatement.LineNumber property </keywords>
  2297. <value>Number of line in the whole script. </value>
  2298. </member>
  2299. <member name="P:Devart.Common.SqlStatement.LinePosition">
  2300. <summary>Gets position of the statement in its line. </summary>
  2301. <keywords>SqlStatement.LinePosition property </keywords>
  2302. <value>Position of the statement. </value>
  2303. </member>
  2304. <member name="P:Devart.Common.SqlStatement.Offset">
  2305. <summary>Gets offset of the statement in the whole script text. </summary>
  2306. <keywords>SqlStatement.Offset property </keywords>
  2307. <value>Offset of the statement in the script text. </value>
  2308. </member>
  2309. <member name="P:Devart.Common.SqlStatement.StatementType">
  2310. <summary>Gets type of the statement. </summary>
  2311. <keywords>SqlStatement.StatementType property </keywords>
  2312. <value>One of the <see cref="T:Devart.Common.SqlStatementType" /> values. </value>
  2313. </member>
  2314. <member name="P:Devart.Common.SqlStatement.Text">
  2315. <summary>Gets SQL statement to be executed. </summary>
  2316. <keywords>SqlStatement.Text property </keywords>
  2317. <value>SQL statement. </value>
  2318. </member>
  2319. <member name="T:Devart.Common.SqlStatementCollection">
  2320. <summary>Represents collection of statements that constitute SQLite script. </summary>
  2321. </member>
  2322. <member name="M:Devart.Common.SqlStatementCollection.#ctor()">
  2323. <summary>Initializes a new instance of the <see cref="T:Devart.Common.SqlStatementCollection" /> class. </summary>
  2324. </member>
  2325. <member name="M:Devart.Common.SqlStatementCollection.Add(Devart.Common.SqlStatement)">
  2326. <summary>Not used in <see cref="T:Devart.Common.SqlStatementCollection" />. </summary>
  2327. <keywords>SqlStatementCollection.Add method </keywords>
  2328. <param name="value"> </param>
  2329. </member>
  2330. <member name="M:Devart.Common.SqlStatementCollection.Contains(Devart.Common.SqlStatement)">
  2331. <summary>Gets a value indicating whether a <see cref="T:Devart.Common.SqlStatement" /> object exists in the collection. </summary>
  2332. <keywords>SqlStatementCollection.Contains method </keywords>
  2333. <param name="value">The value of the <see cref="T:Devart.Common.SqlStatement" /> object to find. </param>
  2334. <returns>
  2335. <see langword="true" /> if the collection contains the <see cref="T:Devart.Common.SqlStatement" />; otherwise, <see langword="false" />. </returns>
  2336. </member>
  2337. <member name="M:Devart.Common.SqlStatementCollection.CopyTo(Devart.Common.SqlStatement[],System.Int32)">
  2338. <summary>Copies <see cref="T:Devart.Common.SqlStatement" /> objects from the <see cref="T:Devart.Common.SqlStatementCollection" /> to the specified array. </summary>
  2339. <keywords>SqlStatementCollection.CopyTo method </keywords>
  2340. <param name="array">The array into which to copy the <see cref="T:Devart.Common.SqlStatement" /> objects. </param>
  2341. <param name="index">The zero-based index of the object to copy. </param>
  2342. </member>
  2343. <member name="M:Devart.Common.SqlStatementCollection.IndexOf(Devart.Common.SqlStatement)">
  2344. <summary>Gets the location in the collection of the <see cref="T:Devart.Common.SqlStatement" /> object. </summary>
  2345. <keywords>SqlStatementCollection.IndexOf method </keywords>
  2346. <param name="value">The <see cref="T:Devart.Common.SqlStatement" /> object to find. </param>
  2347. <returns>The zero-based location of the <see cref="T:Devart.Common.SqlStatement" /> in the collection. </returns>
  2348. </member>
  2349. <member name="M:Devart.Common.SqlStatementCollection.Insert(System.Int32,Devart.Common.SqlStatement)">
  2350. <summary>Not used in <see cref="T:Devart.Common.SqlStatementCollection" />. </summary>
  2351. <keywords>SqlStatementCollection.Insert method </keywords>
  2352. <param name="index"> </param>
  2353. <param name="value"> </param>
  2354. </member>
  2355. <member name="P:Devart.Common.SqlStatementCollection.Item(System.Int32)">
  2356. <summary>Gets the <see cref="T:Devart.Common.SqlStatement" /> at the specified index. </summary>
  2357. <keywords>SqlStatementCollection.Item property </keywords>
  2358. <param name="index">The zero-based index of the statement. </param>
  2359. <value>The <see cref="T:Devart.Common.SqlStatement" /> at the specified index. </value>
  2360. </member>
  2361. <member name="M:Devart.Common.SqlStatementCollection.Remove(Devart.Common.SqlStatement)">
  2362. <summary>Not used in <see cref="T:Devart.Common.SqlStatementCollection" />. </summary>
  2363. <keywords>SqlStatementCollection.Remove method </keywords>
  2364. <param name="value"> </param>
  2365. </member>
  2366. <member name="T:Devart.Common.SqlStatementType">
  2367. <summary>Describes type of a statement in a script. </summary>
  2368. </member>
  2369. <member name="F:Devart.Common.SqlStatementType.Alter">
  2370. <summary>An ALTER statement. </summary>
  2371. </member>
  2372. <member name="F:Devart.Common.SqlStatementType.Batch">
  2373. <summary>A complex construction like script or statement block. </summary>
  2374. </member>
  2375. <member name="F:Devart.Common.SqlStatementType.Commit">
  2376. <summary>A COMMIT statement. </summary>
  2377. </member>
  2378. <member name="F:Devart.Common.SqlStatementType.Create">
  2379. <summary>A CREATE statement. </summary>
  2380. </member>
  2381. <member name="F:Devart.Common.SqlStatementType.Delete">
  2382. <summary>A DELETE statement. </summary>
  2383. </member>
  2384. <member name="F:Devart.Common.SqlStatementType.Drop">
  2385. <summary>A DROP statement. </summary>
  2386. </member>
  2387. <member name="F:Devart.Common.SqlStatementType.Execute">
  2388. <summary>An EXECUTE statement. </summary>
  2389. </member>
  2390. <member name="F:Devart.Common.SqlStatementType.Extended">
  2391. <summary>A construction that does not represent usual SQL statements. </summary>
  2392. </member>
  2393. <member name="F:Devart.Common.SqlStatementType.Insert">
  2394. <summary>An INSERT statement. </summary>
  2395. </member>
  2396. <member name="F:Devart.Common.SqlStatementType.Rollback">
  2397. <summary>A ROLLBACK statement. </summary>
  2398. </member>
  2399. <member name="F:Devart.Common.SqlStatementType.Select">
  2400. <summary>A SELECT statement. </summary>
  2401. </member>
  2402. <member name="F:Devart.Common.SqlStatementType.Truncate">
  2403. <summary>A TRUNCATE statement. </summary>
  2404. </member>
  2405. <member name="F:Devart.Common.SqlStatementType.Unknown">
  2406. <summary>Unknown statement type. </summary>
  2407. </member>
  2408. <member name="F:Devart.Common.SqlStatementType.Update">
  2409. <summary>An UPDATE statement. </summary>
  2410. </member>
  2411. <member name="F:Devart.Common.SqlStatementType.With">
  2412. <summary>A WITH statement. </summary>
  2413. </member>
  2414. <member name="T:Devart.Common.TransactionAction">
  2415. <summary>Indicates the operation, that is being performed or has been performed in the transaction in the <see cref="E:Devart.Common.DbTransactionBase.StateChanged" /> or <see cref="E:Devart.Common.DbTransactionBase.StateChanging" /> events. </summary>
  2416. </member>
  2417. <member name="F:Devart.Common.TransactionAction.BeginTransaction">
  2418. <summary>Transaction is being started or has been started. </summary>
  2419. </member>
  2420. <member name="F:Devart.Common.TransactionAction.Commit">
  2421. <summary>Transaction is being committed or has been committed. </summary>
  2422. </member>
  2423. <member name="F:Devart.Common.TransactionAction.ReleaseSavepoint">
  2424. <summary>Savepoint is being released or has been released. </summary>
  2425. </member>
  2426. <member name="F:Devart.Common.TransactionAction.Rollback">
  2427. <summary>Transaction is being rolled back or has been rolled back. </summary>
  2428. </member>
  2429. <member name="F:Devart.Common.TransactionAction.RollbackToSavepoint">
  2430. <summary>Transaction is being rolled back to savepoint or has been rolled back to savepoint. </summary>
  2431. </member>
  2432. <member name="F:Devart.Common.TransactionAction.Savepoint">
  2433. <summary>The savepoint is being created or has been created. </summary>
  2434. </member>
  2435. <member name="T:Devart.Common.TransactionStateChangeEventArgs">
  2436. <summary>Base class for <see cref="T:Devart.Common.TransactionStateChangedEventArgs" /> and <see cref="T:Devart.Common.TransactionStateChangingEventArgs" /> classes. </summary>
  2437. </member>
  2438. <member name="P:Devart.Common.TransactionStateChangeEventArgs.Action">
  2439. <summary>Indicates the operation that is being performed or has been performed in the transaction when the <see cref="E:Devart.Common.DbTransactionBase.StateChanged" /> or <see cref="E:Devart.Common.DbTransactionBase.StateChanging" /> event occurs. </summary>
  2440. <keywords>TransactionStateChangeEventArgs.Action property </keywords>
  2441. <value>One of the <see cref="T:Devart.Common.TransactionAction" /> values. </value>
  2442. </member>
  2443. <member name="T:Devart.Common.TransactionStateChangedEventArgs">
  2444. <summary>Provides data for the <see cref="E:Devart.Common.DbTransactionBase.StateChanged" /> event of the <see cref="T:Devart.Common.DbTransactionBase" /> class. </summary>
  2445. </member>
  2446. <member name="M:Devart.Common.TransactionStateChangedEventArgs.#ctor(Devart.Common.TransactionAction)">
  2447. <summary>Initializes an instance of the <see cref="T:Devart.Common.TransactionStateChangedEventArgs" /> class. </summary>
  2448. <param name="action">The operation that is being performed or has been performed in the transaction when the <see cref="E:Devart.Common.DbTransactionBase.StateChanged" /> event occurs. </param>
  2449. </member>
  2450. <member name="T:Devart.Common.TransactionStateChangedEventHandler">
  2451. <summary>Represents the method that will handle the <see cref="E:Devart.Common.DbTransactionBase.StateChanged" /> event of <see cref="T:Devart.Common.DbTransactionBase" /> descendants. </summary>
  2452. <keywords>TransactionStateChangedEventHandler delegate </keywords>
  2453. <param name="sender">The source of the event. </param>
  2454. <param name="e">The <see cref="T:Devart.Common.TransactionStateChangedEventArgs" /> object that contains the event data. </param>
  2455. </member>
  2456. <member name="T:Devart.Common.TransactionStateChangingEventArgs">
  2457. <summary>Provides data for the <see cref="E:Devart.Common.DbTransactionBase.StateChanging" /> event of the <see cref="T:Devart.Common.DbTransactionBase" /> class. </summary>
  2458. </member>
  2459. <member name="M:Devart.Common.TransactionStateChangingEventArgs.#ctor(Devart.Common.TransactionAction)">
  2460. <summary>Initializes a new instance of the <see cref="T:Devart.Common.TransactionStateChangingEventArgs" /> class. </summary>
  2461. <param name="action">The operation that is being performed or has been performed in the transaction when the <see cref="E:Devart.Common.DbTransactionBase.StateChanging" /> event occurs. </param>
  2462. </member>
  2463. <member name="T:Devart.Common.TransactionStateChangingEventHandler">
  2464. <summary>Represents the method that will handle the <see cref="E:Devart.Common.DbTransactionBase.StateChanging" /> event of <see cref="T:Devart.Common.DbTransactionBase" /> descendants. </summary>
  2465. <keywords>TransactionStateChangingEventHandler delegate </keywords>
  2466. <param name="sender">The source of the event. </param>
  2467. <param name="e">The <see cref="T:Devart.Common.TransactionStateChangingEventArgs" /> object that contains the event data. </param>
  2468. </member>
  2469. <member name="N:Devart.Data">
  2470. <summary>The <see cref="N:Devart.Data" /> namespace contains classes shared by the Devart data providers. </summary>
  2471. </member>
  2472. <member name="T:Devart.Data.DataLink">
  2473. <summary>Allows establishing flexible cross-form data binding. </summary>
  2474. </member>
  2475. <member name="M:Devart.Data.DataLink.#ctor()">
  2476. <summary>Creates a new instance of the <see cref="T:Devart.Data.DataLink" /> class. </summary>
  2477. </member>
  2478. <member name="M:Devart.Data.DataLink.AddNew()">
  2479. <summary>Adds a new item to the underlying list. </summary>
  2480. <keywords>DataLink.AddNew method </keywords>
  2481. <returns>The <see cref="T:System.Object" /> that was created and added to the list. </returns>
  2482. </member>
  2483. <member name="P:Devart.Data.DataLink.CurrentRow">
  2484. <summary>Gets the current data row, which can be changed by user by changing position in the data grid or data controls. </summary>
  2485. <keywords>DataLink.CurrentRow property </keywords>
  2486. <value>The current data row, which can be changed by user by changing position in the data grid or data controls. </value>
  2487. </member>
  2488. <member name="P:Devart.Data.DataLink.DataMember">
  2489. <summary>Gets or sets the specific data member in a multimember data source to bind to a data listing control. </summary>
  2490. <keywords>DataLink.DataMember property </keywords>
  2491. <value>A data member from a multimember data source. The default value is an empty string. </value>
  2492. </member>
  2493. <member name="P:Devart.Data.DataLink.DataSource">
  2494. <summary>Gets or sets the source containing a list of values used to populate the items within the control. </summary>
  2495. <keywords>DataLink.DataSource property </keywords>
  2496. <value>An IEnumerable or IListSource that contains a collection of values used to supply data to this control. The default value is a null reference. </value>
  2497. </member>
  2498. <member name="M:Devart.Data.DataLink.Find(System.String,System.Object)">
  2499. <summary>Returns the index of the item in the list with the specified property name and value. </summary>
  2500. <keywords>DataLink.Find method </keywords>
  2501. <param name="propertyName">The name of the property to search for. </param>
  2502. <param name="key">The value of the item with the specified name to find. </param>
  2503. <returns>The zero-based index of the item, having the specified property name and value. </returns>
  2504. </member>
  2505. <member name="P:Devart.Data.DataLink.List">
  2506. <summary>Gets the list that the connector is bound to. </summary>
  2507. <keywords>DataLink.List property </keywords>
  2508. <value>The list that the connector is bound to. </value>
  2509. </member>
  2510. <member name="P:Devart.Data.DataLink.Name">
  2511. <summary>Gets or sets name of the <see cref="T:Devart.Data.DataLink" />. </summary>
  2512. <keywords>DataLink.Name property </keywords>
  2513. <value>Name of the <see cref="T:Devart.Data.DataLink" />. </value>
  2514. </member>
  2515. <member name="P:Devart.Data.DataLink.Owner">
  2516. <summary>Gets or sets a form or other container that the <see cref="T:Devart.Data.DataLink" /> instance belongs to. </summary>
  2517. <keywords>DataLink.Owner property </keywords>
  2518. <value>A form or other container that the object belongs to. </value>
  2519. </member>
  2520. <member name="P:Devart.Data.DataLink.Position">
  2521. <summary>Gets or sets the index of the current item in the underlying list. </summary>
  2522. <keywords>DataLink.Position property </keywords>
  2523. <value>The zero-based index of the current item in the underlying list. </value>
  2524. </member>
  2525. <member name="P:Devart.Data.DataLink.SeparateEditing">
  2526. <summary>Puts separate filters over the DataView object that was created. </summary>
  2527. <keywords>DataLink.SeparateEditing property </keywords>
  2528. </member>
  2529. <member name="P:Devart.Data.DataLink.Synchronized">
  2530. <summary>Gets or sets a value indicating whether to synchronize current position with other <see cref="T:Devart.Data.DataLink" /> instances that reference the same data source. </summary>
  2531. <keywords>DataLink.Synchronized property </keywords>
  2532. <value>If <see lang="true" />, navigation in this instance of <see cref="T:Devart.Data.DataLink" /> will affect other instances. The default value is false. </value>
  2533. </member>
  2534. </members>
  2535. </doc>