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

3858 строки
300KB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <doc>
  3. <assembly>
  4. <name>Devart.Data.SQLite</name>
  5. <version>5.5.649.0</version>
  6. <fullname>Devart.Data.SQLite, Version=5.5.649.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.DbConnectionBase">
  13. <summary>Represents an open connection to a server. </summary>
  14. </member>
  15. <member name="M:Devart.Common.DbConnectionBase.BeginOpen(System.AsyncCallback,System.Object)">
  16. <summary>Starts an asynchronous invocation of an <see cref="M:Devart.Common.DbConnectionBase.Open" /> method. </summary>
  17. <keywords>DbConnectionBase.BeginOpen method </keywords>
  18. <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>
  19. <param name="stateObject">State information that is passed on to the delegate. </param>
  20. <returns>An <see cref="T:System.IAsyncResult" /> interface that represents the asynchronous operation started by calling this method. </returns>
  21. </member>
  22. <member name="M:Devart.Common.DbConnectionBase.ChangeDatabase(System.String)">
  23. <summary>Changes the current database associated with an open <see cref="T:Devart.Common.DbConnectionBase" />. </summary>
  24. <keywords>DbConnectionBase.ChangeDatabase method </keywords>
  25. <param name="value">The database name. </param>
  26. </member>
  27. <member name="M:Devart.Common.DbConnectionBase.Close()">
  28. <summary>Closes the connection to the database. This is the preferred method of closing any open connection. </summary>
  29. <keywords>DbConnectionBase.Close method </keywords>
  30. </member>
  31. <member name="P:Devart.Common.DbConnectionBase.ConnectionString">
  32. <summary>Gets or sets the string used to open a server connection. </summary>
  33. <keywords>DbConnectionBase.ConnectionString property </keywords>
  34. <value>The connection string that includes parameters needed to establish the initial connection. The default value is an empty string (""). </value>
  35. </member>
  36. <member name="P:Devart.Common.DbConnectionBase.ConnectionTimeout">
  37. <summary>Gets or sets the time to wait while trying to establish a connection before terminating the attempt and generating an error. </summary>
  38. <keywords>DbConnectionBase.ConnectionTimeout property </keywords>
  39. <value>The time (in seconds) to wait for a connection to open. The default value is 15 seconds. </value>
  40. </member>
  41. <member name="P:Devart.Common.DbConnectionBase.DataSource">
  42. <summary>Gets or sets name of the server to which to connect. </summary>
  43. <keywords>DbConnectionBase.DataSource property </keywords>
  44. <value>Gets or sets name of the server to which to connect. The default value is an empty string (""). </value>
  45. </member>
  46. <member name="P:Devart.Common.DbConnectionBase.Database">
  47. <summary>Gets or sets the name of the current database or the database to be used once a connection is open. </summary>
  48. <keywords>DbConnectionBase.Database property </keywords>
  49. <value>The name of the current database or the name of the database to be used once a connection is open. The default value is an empty string (""). </value>
  50. </member>
  51. <member name="P:Devart.Common.DbConnectionBase.DesignTimeVisible">
  52. <summary>Indicates whether the component is visible in design time. </summary>
  53. <keywords>DbConnectionBase.DesignTimeVisible property </keywords>
  54. </member>
  55. <member name="M:Devart.Common.DbConnectionBase.EndOpen(System.IAsyncResult)">
  56. <summary>Ends an asynchronous invocation of the <see cref="M:Devart.Common.DbConnectionBase.Open" /> method. </summary>
  57. <keywords>DbConnectionBase.EndOpen method </keywords>
  58. <param name="result">The <see cref="T:System.IAsyncResult" /> returned from <see cref="M:Devart.Common.DbConnectionBase.BeginOpen" />. </param>
  59. </member>
  60. <member name="M:Devart.Common.DbConnectionBase.EnlistTransaction(System.Transactions.Transaction)">
  61. <summary>Enlists in the specified transaction. </summary>
  62. <keywords>DbConnectionBase.EnlistTransaction method </keywords>
  63. <param name="transaction">A reference to an existing <b>System.Transactions.Transaction</b> in which to enlist. </param>
  64. </member>
  65. <member name="M:Devart.Common.DbConnectionBase.GetSchema()">
  66. <summary>Returns list of metadata collections and number of restrictions for a collection. </summary>
  67. <keywords>DbConnectionBase.GetSchema method </keywords>
  68. <returns>A <see cref="T:System.Data.DataTable" /> object. </returns>
  69. <overloads>Provides information about server schema objects. </overloads>
  70. </member>
  71. <member name="M:Devart.Common.DbConnectionBase.GetSchema(System.String)">
  72. <summary>Provides information about server schema objects. </summary>
  73. <keywords>DbConnectionBase.GetSchema method </keywords>
  74. <param name="collectionName">Name of the collection to get information about. </param>
  75. <returns>A <see cref="T:System.Data.DataTable" /> object. </returns>
  76. </member>
  77. <member name="M:Devart.Common.DbConnectionBase.GetSchema(System.String,System.String[])">
  78. <summary>Returns detailed information about a server schema object. </summary>
  79. <keywords>DbConnectionBase.GetSchema method </keywords>
  80. <param name="collectionName">Name of the collection to get information about. </param>
  81. <param name="restrictionValues">Array of strings representing collection restrictions. In some cases last array members may be omitted. </param>
  82. <returns>A <see cref="T:System.Data.DataTable" /> object. </returns>
  83. </member>
  84. <member name="P:Devart.Common.DbConnectionBase.InDistributedTransaction">
  85. <summary>Indicates whether the connection is enlisted in a distributed transaction. </summary>
  86. <keywords>DbConnectionBase.InDistributedTransaction property </keywords>
  87. <value><see langword="true" /> if the connection is enlisted in a distributed transaction; otherwise, <see langword="false" />. </value>
  88. </member>
  89. <member name="P:Devart.Common.DbConnectionBase.Name">
  90. <summary>Gets or sets name of the component. </summary>
  91. <keywords>DbConnectionBase.Name property </keywords>
  92. </member>
  93. <member name="M:Devart.Common.DbConnectionBase.Open()">
  94. <summary>Opens a data source connection with the property settings specified by the <see cref="P:Devart.Common.DbConnectionBase.ConnectionString" />. </summary>
  95. <keywords>DbConnectionBase.Open method </keywords>
  96. </member>
  97. <member name="P:Devart.Common.DbConnectionBase.Owner">
  98. <summary>Gets or sets a form or other container that the <see cref="T:Devart.Common.DbConnectionBase" /> instance belongs to. </summary>
  99. <keywords>DbConnectionBase.Owner property </keywords>
  100. <value>A form or other container that the object belongs to. </value>
  101. </member>
  102. <member name="P:Devart.Common.DbConnectionBase.ServerVersion">
  103. <summary>Gets a string containing the version of the instance of the server to which the client is connected. </summary>
  104. <keywords>DbConnectionBase.ServerVersion property </keywords>
  105. <value>The version of the server instance. </value>
  106. </member>
  107. <member name="P:Devart.Common.DbConnectionBase.State">
  108. <summary>Gets the current state of the connection. </summary>
  109. <keywords>DbConnectionBase.State property </keywords>
  110. <value>A bitwise combination of the <see cref="T:System.Data.ConnectionState" /> values. The default value is Closed. </value>
  111. </member>
  112. <member name="E:Devart.Common.DbConnectionBase.StateChange">
  113. <summary>Occurs when the state of the connection changes. </summary>
  114. <keywords>DbConnectionBase.StateChange event </keywords>
  115. </member>
  116. <member name="E:Devart.Common.DbConnectionBase.TransactionStateChanged">
  117. <summary>Occurs when the state of the transaction is changed. </summary>
  118. <keywords>DbConnectionBase.TransactionStateChanged event </keywords>
  119. </member>
  120. <member name="E:Devart.Common.DbConnectionBase.TransactionStateChanging">
  121. <summary>Occurs when the state of the transaction is changing. </summary>
  122. <keywords>DbConnectionBase.TransactionStateChanging event </keywords>
  123. </member>
  124. <member name="T:Devart.Common.DbMonitorHelper">
  125. <summary>Allows to monitor dynamic SQL execution in applications that use .NET data providers. </summary>
  126. </member>
  127. <member name="T:Devart.Common.ParserBehavior">
  128. <summary>Defines behavior for <see cref="M:Devart.Data.SQLite.SQLiteSelectStatement.Parse(System.String,Devart.Common.ParserBehavior)" />. </summary>
  129. </member>
  130. <member name="F:Devart.Common.ParserBehavior.All">
  131. <summary>Parse all statement clauses. </summary>
  132. </member>
  133. <member name="F:Devart.Common.ParserBehavior.Columns">
  134. <summary>Parse select-list. </summary>
  135. </member>
  136. <member name="F:Devart.Common.ParserBehavior.GroupBy">
  137. <summary>Parse GROUP BY clause. </summary>
  138. </member>
  139. <member name="F:Devart.Common.ParserBehavior.Having">
  140. <summary>Parse HAVING clause. </summary>
  141. </member>
  142. <member name="F:Devart.Common.ParserBehavior.None">
  143. <summary>Do not parse any clause. </summary>
  144. </member>
  145. <member name="F:Devart.Common.ParserBehavior.OrderBy">
  146. <summary>Parse ORDER BY clause. </summary>
  147. </member>
  148. <member name="F:Devart.Common.ParserBehavior.Tables">
  149. <summary>Parse FROM clause. </summary>
  150. </member>
  151. <member name="F:Devart.Common.ParserBehavior.Where">
  152. <summary>Parse WHERE clause. </summary>
  153. </member>
  154. <member name="T:Devart.Common.SelectColumn">
  155. <summary>Represents a column or an expression in SELECT, GROUP BY and ORDER BY clauses of a SQL statement. </summary>
  156. </member>
  157. <member name="M:Devart.Common.SelectColumn.#ctor(System.String)">
  158. <summary>Creates and initializes new instance of <see cref="T:Devart.Common.SelectColumn" /> with the specified column name (expression text). </summary>
  159. <param name="name"> </param>
  160. <overloads>Creates and initializes new instance of <see cref="T:Devart.Common.SelectColumn" />. </overloads>
  161. </member>
  162. <member name="M:Devart.Common.SelectColumn.#ctor(System.String,System.String,System.String,System.String)">
  163. <summary>Creates and initializes new instance of <see cref="T:Devart.Common.SelectColumn" /> with the specified schema name, table name, column name (expression text) and an alias. </summary>
  164. <param name="schema">The schema that the column belongs to. </param>
  165. <param name="table">The table or view that the column belongs to. </param>
  166. <param name="name">The name of the column or expression text. </param>
  167. <param name="alias">The column alias. </param>
  168. </member>
  169. <member name="M:Devart.Common.SelectColumn.#ctor(System.String,System.String,System.String,System.String,System.String)">
  170. <summary>Creates and initializes new instance of <see cref="T:Devart.Common.SelectColumn" /> with the specified schema name, table name, column name (expression text) and an alias. </summary>
  171. <param name="database">The database that the column belongs to. </param>
  172. <param name="schema">The schema that the column belongs to. </param>
  173. <param name="table">The table or view that the column belongs to. </param>
  174. <param name="name">The name of the column or expression text. </param>
  175. <param name="alias">The column alias. </param>
  176. </member>
  177. <member name="P:Devart.Common.SelectColumn.Alias">
  178. <summary>Gets or sets column alias. </summary>
  179. <keywords>SelectColumn.Alias property </keywords>
  180. <value>Column alias. </value>
  181. </member>
  182. <member name="P:Devart.Common.SelectColumn.Database">
  183. <summary>Gets or sets database that the column belongs to. </summary>
  184. <keywords>SelectColumn.Database property </keywords>
  185. <value>A database that the column belongs to. </value>
  186. </member>
  187. <member name="M:Devart.Common.SelectColumn.Equals(System.Object)">
  188. <summary>Determines whether two <see cref="T:Devart.Common.SelectColumn" /> objects are identical. </summary>
  189. <keywords>SelectColumn.Equals method </keywords>
  190. <param name="obj">A <see cref="T:Devart.Common.SelectColumn" /> object to compare with. </param>
  191. <returns>
  192. <see langword="true" />, if the given <paramref name="obj" /> object equals to the current <see cref="T:Devart.Common.SelectColumn" /> instance. </returns>
  193. </member>
  194. <member name="P:Devart.Common.SelectColumn.Expression">
  195. <summary>Gets or sets the SQL expression that the column represents. </summary>
  196. <keywords>SelectColumn.Expression property </keywords>
  197. <value>The SQL expression. </value>
  198. </member>
  199. <member name="M:Devart.Common.SelectColumn.GetHashCode()">
  200. <summary>Returns hash code of the current instance. </summary>
  201. <keywords>SelectColumn.GetHashCode method </keywords>
  202. </member>
  203. <member name="P:Devart.Common.SelectColumn.Name">
  204. <summary>Gets or sets name of the column. </summary>
  205. <keywords>SelectColumn.Name property </keywords>
  206. <value>The name of the column. </value>
  207. </member>
  208. <member name="P:Devart.Common.SelectColumn.Schema">
  209. <summary>Gets or sets schema that the column belongs to. </summary>
  210. <keywords>SelectColumn.Schema property </keywords>
  211. <value>A schema that the column belongs to. </value>
  212. </member>
  213. <member name="P:Devart.Common.SelectColumn.Table">
  214. <summary>Gets or sets table or view that the column belongs to. </summary>
  215. <keywords>SelectColumn.Table property </keywords>
  216. <value>A table or view that the column belongs to. </value>
  217. </member>
  218. <member name="M:Devart.Common.SelectColumn.ToString()">
  219. <summary>Returns the current <see cref="T:Devart.Common.SelectColumn" /> object in the text form. </summary>
  220. <keywords>SelectColumn.ToString method </keywords>
  221. <returns>Text representation of the current <see cref="T:Devart.Common.SelectColumn" /> object. </returns>
  222. </member>
  223. <member name="T:Devart.Common.SelectColumnCollection">
  224. <summary>Represents a collection of columns and expressions in a <see cref="T:Devart.Common.SelectStatement" /> object. </summary>
  225. </member>
  226. <member name="M:Devart.Common.SelectColumnCollection.Add(Devart.Common.SelectColumn)">
  227. <summary>Adds the specified <see cref="T:Devart.Common.SelectColumn" /> to the <see cref="T:Devart.Common.SelectColumnCollection" />. </summary>
  228. <keywords>SelectColumnCollection.Add method </keywords>
  229. <param name="value">The <see cref="T:Devart.Common.SelectColumn" /> to add to the collection. </param>
  230. <returns>Index of the new <see cref="T:Devart.Common.SelectColumn" /> object. </returns>
  231. <overloads>Adds the specified <see cref="T:Devart.Common.SelectColumn" /> to the <see cref="T:Devart.Common.SelectColumnCollection" />. </overloads>
  232. </member>
  233. <member name="M:Devart.Common.SelectColumnCollection.Add(System.String)">
  234. <summary>Creates a new <see cref="T:Devart.Common.SelectColumn" /> object with the name specified and adds it to the collection. </summary>
  235. <keywords>SelectColumnCollection.Add method </keywords>
  236. <param name="name">The name of the column which the <see cref="T:Devart.Common.SelectColumn" /> object should represent. </param>
  237. <returns>The <see cref="T:Devart.Common.SelectColumn" /> object created. </returns>
  238. </member>
  239. <member name="M:Devart.Common.SelectColumnCollection.Add(System.String,System.Boolean)">
  240. <summary>Creates a new <see cref="T:Devart.Common.SelectColumn" /> object with the name specified and adds it to the collection. </summary>
  241. <keywords>SelectColumnCollection.Add method </keywords>
  242. <param name="name">The name of the column that the <see cref="T:Devart.Common.SelectColumn" /> object should represent. </param>
  243. <param name="quote">Specifies whether the column name should be quoted. </param>
  244. <returns>The <see cref="T:Devart.Common.SelectColumn" /> object created. </returns>
  245. </member>
  246. <member name="M:Devart.Common.SelectColumnCollection.Add(System.String,System.String,System.String,System.String)">
  247. <summary>Adds a newly created <see cref="T:Devart.Common.SelectColumn" /> object with the specified schema, table, name, and alias to the collection. </summary>
  248. <keywords>SelectColumnCollection.Add method </keywords>
  249. <param name="schema">The schema which the table containing this column belongs to. </param>
  250. <param name="table">The name of the table containing the column. </param>
  251. <param name="name">The name of the column that the <see cref="T:Devart.Common.SelectColumn" /> object should represent. </param>
  252. <param name="alias">The alias of the column. </param>
  253. <returns>The <see cref="T:Devart.Common.SelectColumn" /> object created. </returns>
  254. </member>
  255. <member name="M:Devart.Common.SelectColumnCollection.Add(System.String,System.String,System.String,System.String,System.Boolean)">
  256. <summary>Adds a newly created <see cref="T:Devart.Common.SelectColumn" /> object with the specified schema, table, name, and alias to the collection. </summary>
  257. <keywords>SelectColumnCollection.Add method </keywords>
  258. <param name="schema">The schema which the table containing this column belongs to. </param>
  259. <param name="table">The name of the table containing the column. </param>
  260. <param name="name">The name of the column that the <see cref="T:Devart.Common.SelectColumn" /> object should represent. </param>
  261. <param name="alias">The alias of the column. </param>
  262. <param name="quote">Specifies if the column parameters should be quoted. </param>
  263. <returns>The <see cref="T:Devart.Common.SelectColumn" /> object created. </returns>
  264. </member>
  265. <member name="M:Devart.Common.SelectColumnCollection.Add(System.String,System.String,System.String,System.String,System.String)">
  266. <summary>Adds a newly created <see cref="T:Devart.Common.SelectColumn" /> object with the specified database, schema, table, name, and alias to the collection. </summary>
  267. <keywords>SelectColumnCollection.Add method </keywords>
  268. <param name="database">The database which the table containing this column belongs to. </param>
  269. <param name="schema">The schema which the table containing this column belongs to. </param>
  270. <param name="table">The name of the table containing the column. </param>
  271. <param name="name">The name of the column that the <see cref="T:Devart.Common.SelectColumn" /> object should represent. </param>
  272. <param name="alias">The alias of the column. </param>
  273. <returns>The <see cref="T:Devart.Common.SelectColumn" /> object created. </returns>
  274. </member>
  275. <member name="M:Devart.Common.SelectColumnCollection.Add(System.String,System.String,System.String,System.String,System.String,System.Boolean)">
  276. <summary>Adds a newly created <see cref="T:Devart.Common.SelectColumn" /> object with the specified database, schema, table, name, and alias to the collection. </summary>
  277. <keywords>SelectColumnCollection.Add method </keywords>
  278. <param name="database">The database which the table containing this column belongs to. </param>
  279. <param name="schema">The schema which the table containing this column belongs to. </param>
  280. <param name="table">The name of the table containing the column. </param>
  281. <param name="name">The name of the column which the <see cref="T:Devart.Common.SelectColumn" /> object should represent. </param>
  282. <param name="alias">The alias of the column. </param>
  283. <param name="quote">Specifies if the column parameters should be quoted. </param>
  284. <returns>The <see cref="T:Devart.Common.SelectColumn" /> object created. </returns>
  285. </member>
  286. <member name="M:Devart.Common.SelectColumnCollection.Contains(Devart.Common.SelectColumn)">
  287. <summary>Gets a value indicating whether a <see cref="T:Devart.Common.SelectColumn" /> object exists in the collection. </summary>
  288. <keywords>SelectColumnCollection.Contains method </keywords>
  289. <param name="value">The value of the <see cref="T:Devart.Common.SelectColumn" /> object to find. </param>
  290. <returns>
  291. <see langword="true" /> if the collection contains the <see cref="T:Devart.Common.SelectColumn" />; otherwise, <see langword="false" />. </returns>
  292. </member>
  293. <member name="M:Devart.Common.SelectColumnCollection.CopyTo(Devart.Common.SelectColumn[],System.Int32)">
  294. <summary>Copies <see cref="T:Devart.Common.SelectColumn" /> objects from the <see cref="T:Devart.Common.SelectColumnCollection" /> to the specified array. </summary>
  295. <keywords>SelectColumnCollection.CopyTo method </keywords>
  296. <param name="array">The array into which to copy the <see cref="T:Devart.Common.SelectColumn" /> objects. </param>
  297. <param name="index">The zero-based index of the array. </param>
  298. </member>
  299. <member name="M:Devart.Common.SelectColumnCollection.IndexOf(Devart.Common.SelectColumn)">
  300. <summary>Gets the location in the collection of the <see cref="T:Devart.Common.SelectColumn" /> object. </summary>
  301. <keywords>SelectColumnCollection.IndexOf method </keywords>
  302. <param name="value">The <see cref="T:Devart.Common.SelectColumn" /> object to find. </param>
  303. <returns>The zero-based location of the <see cref="T:Devart.Common.SelectColumn" /> in the collection. </returns>
  304. </member>
  305. <member name="M:Devart.Common.SelectColumnCollection.Insert(System.Int32,Devart.Common.SelectColumn)">
  306. <summary>Inserts a <see cref="T:Devart.Common.SelectColumn" /> into the collection at the specified index. </summary>
  307. <keywords>SelectColumnCollection.Insert method </keywords>
  308. <param name="index">The zero-based index where the table is to be inserted within the collection. </param>
  309. <param name="value">The <see cref="T:Devart.Common.SelectColumn" /> to add to the collection. </param>
  310. </member>
  311. <member name="P:Devart.Common.SelectColumnCollection.Item(System.Int32)">
  312. <summary>Gets or sets the <see cref="T:Devart.Common.SelectColumn" /> at the specified index. </summary>
  313. <keywords>SelectColumnCollection.Item property </keywords>
  314. <param name="index">The zero-based index of the table. </param>
  315. <value>The <see cref="T:Devart.Common.SelectColumn" /> at the specified index. </value>
  316. </member>
  317. <member name="M:Devart.Common.SelectColumnCollection.Remove(Devart.Common.SelectColumn)">
  318. <summary>Removes the specified <see cref="T:Devart.Common.SelectColumn" /> object from the collection. </summary>
  319. <keywords>SelectColumnCollection.Remove method </keywords>
  320. <param name="value">The <see cref="T:Devart.Common.SelectColumn" /> object to remove from the collection. </param>
  321. </member>
  322. <member name="T:Devart.Common.SelectStatement">
  323. <summary>Composes, modifies and parses SELECT statements. </summary>
  324. </member>
  325. <member name="M:Devart.Common.SelectStatement.AddHavingCondition(System.String)">
  326. <summary>Adds new condition to HAVING clause of the statement, represented by the <see cref="P:Devart.Common.SelectStatement.Having" /> property. </summary>
  327. <keywords>SelectStatement.AddHavingCondition method </keywords>
  328. <param name="condition">A new condition to add. </param>
  329. </member>
  330. <member name="M:Devart.Common.SelectStatement.AddWhereCondition(System.String)">
  331. <summary>Adds new condition to WHERE clause of the statement, represented by the <see cref="P:Devart.Common.SelectStatement.Where" /> property. </summary>
  332. <keywords>SelectStatement.AddWhereCondition method </keywords>
  333. <param name="condition">A new condition to add. </param>
  334. </member>
  335. <member name="P:Devart.Common.SelectStatement.All">
  336. <summary>Gets or sets the value, indicating if the all records are selected or only the unique ones. </summary>
  337. <keywords>SelectStatement.All property </keywords>
  338. <value><see langword="true" />, if the result set should contain all the rows; otherwise, <see langword="false" />. </value>
  339. </member>
  340. <member name="M:Devart.Common.SelectStatement.Clear()">
  341. <summary>Clears all parts of the <see cref="T:Devart.Common.SelectStatement" />. </summary>
  342. <keywords>SelectStatement.Clear method </keywords>
  343. </member>
  344. <member name="P:Devart.Common.SelectStatement.Columns">
  345. <summary>Contains list of columns and expressions used in the select-list of the current <see cref="T:Devart.Common.SelectStatement" /> object. </summary>
  346. <keywords>SelectStatement.Columns property </keywords>
  347. <value>A <see cref="T:Devart.Common.SelectColumnCollection" /> that represents list of columns and expressions used in the SELECT clause. </value>
  348. </member>
  349. <member name="P:Devart.Common.SelectStatement.Distinct">
  350. <summary>Gets or sets whether statement should request unique rows only. </summary>
  351. <keywords>SelectStatement.Distinct property </keywords>
  352. <value>
  353. <see langword="true" />, if the result set should contain unique rows only; otherwise, <see langword="false" />. </value>
  354. </member>
  355. <member name="P:Devart.Common.SelectStatement.GroupBy">
  356. <summary>Contains list of columns used in the GROUP BY clause of the current <see cref="T:Devart.Common.SelectStatement" /> object. </summary>
  357. <keywords>SelectStatement.GroupBy property </keywords>
  358. <value>A <see cref="T:Devart.Common.SelectColumnCollection" /> that represents list of columns used in the GROUP BY clause. </value>
  359. </member>
  360. <member name="P:Devart.Common.SelectStatement.Having">
  361. <summary>Gets or sets HAVING clause of the statement. </summary>
  362. <keywords>SelectStatement.Having property </keywords>
  363. <value>The HAVING clause of the statement. </value>
  364. </member>
  365. <member name="P:Devart.Common.SelectStatement.OrderBy">
  366. <summary>Contains list of columns used in the ORDER BY clause of the current <see cref="T:Devart.Common.SelectStatement" /> object. </summary>
  367. <keywords>SelectStatement.OrderBy property </keywords>
  368. <value>A <see cref="T:Devart.Common.SelectColumnCollection" /> that represents list of columns used in the ORDER BY clause. </value>
  369. </member>
  370. <member name="P:Devart.Common.SelectStatement.Tables">
  371. <summary>Contains list of tables and subqueries used in the FROM clause of the current <see cref="T:Devart.Common.SelectStatement" /> object. </summary>
  372. <keywords>SelectStatement.Tables property </keywords>
  373. <value>A <see cref="T:Devart.Common.SelectTableCollection" /> that represents list of tables and subqueries used in the FROM clause. </value>
  374. </member>
  375. <member name="M:Devart.Common.SelectStatement.ToString()">
  376. <summary>Returns SQL statement in the text form. </summary>
  377. <keywords>SelectStatement.ToString method </keywords>
  378. <returns>The text of SQL statement that is equivalent to current state of the <see cref="T:Devart.Common.SelectStatement" /> object. </returns>
  379. </member>
  380. <member name="P:Devart.Common.SelectStatement.Where">
  381. <summary>Gets or sets WHERE clause of the statement. </summary>
  382. <keywords>SelectStatement.Where property </keywords>
  383. <value>The WHERE clause of the statement. </value>
  384. </member>
  385. <member name="T:Devart.Common.SelectStatementNode">
  386. <summary>An abstract SQL element. </summary>
  387. </member>
  388. <member name="M:Devart.Common.SelectStatementNode.#ctor()">
  389. <summary>Creates and initializes new instance of <see cref="T:Devart.Common.SelectStatementNode" />. </summary>
  390. </member>
  391. <member name="T:Devart.Common.SelectTable">
  392. <summary>Represents a table or a subquery in the FROM clause of a SELECT statement. </summary>
  393. </member>
  394. <member name="M:Devart.Common.SelectTable.#ctor(System.String)">
  395. <summary>Creates and initializes new instance of <see cref="T:Devart.Common.SelectTable" /> with the specified table name (subquery text). </summary>
  396. <param name="name">The name of the table or subquery text. </param>
  397. <overloads>Creates and initializes new instance of <see cref="T:Devart.Common.SelectTable" />. </overloads>
  398. </member>
  399. <member name="M:Devart.Common.SelectTable.#ctor(System.String,System.String,System.String)">
  400. <summary>Creates and initializes new instance of <see cref="T:Devart.Common.SelectTable" /> with the specified schema, table name (subquery text) and alias. </summary>
  401. <param name="schema">The name of the table schema. </param>
  402. <param name="name">The name of the table or subquery text. </param>
  403. <param name="alias">The alias for the table or expression. </param>
  404. </member>
  405. <member name="M:Devart.Common.SelectTable.#ctor(System.String,System.String,System.String,System.String)">
  406. <summary>Creates and initializes new instance of <see cref="T:Devart.Common.SelectTable" /> with the specified schema, table name (subquery text) and alias. </summary>
  407. <param name="database">The name of the table database. </param>
  408. <param name="schema">The name of the table schema. </param>
  409. <param name="name">The name of the table or subquery text. </param>
  410. <param name="alias">The alias for the table or expression. </param>
  411. </member>
  412. <member name="P:Devart.Common.SelectTable.Alias">
  413. <summary>Gets or sets table alias. </summary>
  414. <keywords>SelectTable.Alias property </keywords>
  415. <value>Table alias. </value>
  416. </member>
  417. <member name="P:Devart.Common.SelectTable.Database">
  418. <summary>Gets or sets the name of the table database. </summary>
  419. <keywords>SelectTable.Database property </keywords>
  420. <value>The name of the table database. </value>
  421. </member>
  422. <member name="M:Devart.Common.SelectTable.Equals(System.Object)">
  423. <summary>Determines whether two <see cref="T:Devart.Common.SelectTable" /> objects are identical. </summary>
  424. <keywords>SelectTable.Equals method </keywords>
  425. <param name="obj">A <see cref="T:Devart.Common.SelectColumn" /> object to compare with. </param>
  426. <returns>
  427. <see langword="true" />, if the given <paramref name="obj" /> object equals to the current <see cref="T:Devart.Common.SelectTable" /> instance. </returns>
  428. </member>
  429. <member name="M:Devart.Common.SelectTable.GetHashCode()">
  430. <summary>Returns hash code of the current instance. </summary>
  431. <keywords>SelectTable.GetHashCode method </keywords>
  432. </member>
  433. <member name="P:Devart.Common.SelectTable.JoinClause">
  434. <summary>Gets or sets a JOIN clause for the <see cref="T:Devart.Common.SelectTable" />. </summary>
  435. <keywords>SelectTable.JoinClause property </keywords>
  436. <value>The JOIN clause. </value>
  437. </member>
  438. <member name="P:Devart.Common.SelectTable.JoinCondition">
  439. <summary>Gets or sets a JOIN ON clause for the <see cref="T:Devart.Common.SelectTable" />. </summary>
  440. <keywords>SelectTable.JoinCondition property </keywords>
  441. <value>The JOIN ON clause. </value>
  442. </member>
  443. <member name="P:Devart.Common.SelectTable.Name">
  444. <summary>Gets or sets name of the table or subquery text. </summary>
  445. <keywords>SelectTable.Name property </keywords>
  446. <value>The name of the table or subquery text. </value>
  447. </member>
  448. <member name="P:Devart.Common.SelectTable.Schema">
  449. <summary>Gets or sets the name of the table schema. </summary>
  450. <keywords>SelectTable.Schema property </keywords>
  451. <value>The name of the table schema. </value>
  452. </member>
  453. <member name="P:Devart.Common.SelectTable.SubQuery">
  454. <summary>Gets the subquery text that the <see cref="T:Devart.Common.SelectTable" /> represents. </summary>
  455. <keywords>SelectTable.SubQuery property </keywords>
  456. <value>The subquery text. </value>
  457. </member>
  458. <member name="M:Devart.Common.SelectTable.ToString()">
  459. <summary>Returns the current <see cref="T:Devart.Common.SelectTable" /> object in the text form. </summary>
  460. <keywords>SelectTable.ToString method </keywords>
  461. <returns>Text representation of the current <see cref="T:Devart.Common.SelectTable" /> object. </returns>
  462. </member>
  463. <member name="T:Devart.Common.SelectTableCollection">
  464. <summary>Represents a collection of tables and subqueries in a <see cref="T:Devart.Common.SelectStatement" /> object. </summary>
  465. </member>
  466. <member name="M:Devart.Common.SelectTableCollection.Add(Devart.Common.SelectTable)">
  467. <summary>Adds the specified <see cref="T:Devart.Common.SelectTable" /> to the <see cref="T:Devart.Common.SelectTableCollection" />. </summary>
  468. <keywords>SelectTableCollection.Add method </keywords>
  469. <param name="value">The <see cref="T:Devart.Common.SelectTable" /> to add to the collection. </param>
  470. <returns>Index of the new <see cref="T:Devart.Common.SelectTable" /> object. </returns>
  471. <overloads>Adds the specified <see cref="T:Devart.Common.SelectTable" /> to the <see cref="T:Devart.Common.SelectTableCollection" />. </overloads>
  472. </member>
  473. <member name="M:Devart.Common.SelectTableCollection.Add(System.String)">
  474. <summary>Creates a new <see cref="T:Devart.Common.SelectTable" /> object with the name specified and adds it to the collection. </summary>
  475. <keywords>SelectTableCollection.Add method </keywords>
  476. <param name="name">The name of the table that the <see cref="T:Devart.Common.SelectTable" /> object should represent. </param>
  477. <returns>The <see cref="T:Devart.Common.SelectTable" /> object created. </returns>
  478. </member>
  479. <member name="M:Devart.Common.SelectTableCollection.Add(System.String,System.Boolean)">
  480. <summary>Creates a new <see cref="T:Devart.Common.SelectTable" /> object with the name specified and adds it to the collection. </summary>
  481. <keywords>SelectTableCollection.Add method </keywords>
  482. <param name="name">The name of the table that the <see cref="T:Devart.Common.SelectTable" /> object should represent. </param>
  483. <param name="quoted">Specifies whether the table name should be quoted. </param>
  484. <returns>The <see cref="T:Devart.Common.SelectTable" /> object created. </returns>
  485. </member>
  486. <member name="M:Devart.Common.SelectTableCollection.Add(System.String,System.String,System.String)">
  487. <summary>Adds a newly created <see cref="T:Devart.Common.SelectTable" /> object with the specified schema, name, and alias to the collection. </summary>
  488. <keywords>SelectTableCollection.Add method </keywords>
  489. <param name="schema">The schema, which the table belongs to. </param>
  490. <param name="name">The name of the table that the <see cref="T:Devart.Common.SelectTable" /> object should represent. </param>
  491. <param name="alias">The alias of the table. </param>
  492. <returns>The <see cref="T:Devart.Common.SelectTable" /> object created. </returns>
  493. </member>
  494. <member name="M:Devart.Common.SelectTableCollection.Add(System.String,System.String,System.String,System.Boolean)">
  495. <summary>Adds a newly created <see cref="T:Devart.Common.SelectTable" /> object with the specified schema, name, and alias to the collection. </summary>
  496. <keywords>SelectTableCollection.Add method </keywords>
  497. <param name="schema">The schema, which the table belongs to. </param>
  498. <param name="name">The name of the table that the <see cref="T:Devart.Common.SelectTable" /> object should represent. </param>
  499. <param name="alias">The alias of the table. </param>
  500. <param name="quote">Specifies if the table parameters should be quoted. </param>
  501. <returns>The <see cref="T:Devart.Common.SelectTable" /> object created. </returns>
  502. </member>
  503. <member name="M:Devart.Common.SelectTableCollection.Add(System.String,System.String,System.String,System.String)">
  504. <summary>Adds a newly created <see cref="T:Devart.Common.SelectTable" /> object with the specified database, schema, name, and alias to the collection. </summary>
  505. <keywords>SelectTableCollection.Add method </keywords>
  506. <param name="database">The database, which the table belongs to. </param>
  507. <param name="schema">The schema, which the table belongs to. </param>
  508. <param name="name">The name of the table that the <see cref="T:Devart.Common.SelectTable" /> object should represent. </param>
  509. <param name="alias">The alias of the table. </param>
  510. <returns>The <see cref="T:Devart.Common.SelectTable" /> object created. </returns>
  511. </member>
  512. <member name="M:Devart.Common.SelectTableCollection.Add(System.String,System.String,System.String,System.String,System.Boolean)">
  513. <summary>Adds a newly created <see cref="T:Devart.Common.SelectTable" /> object with the specified database, schema, name, and alias to the collection. </summary>
  514. <keywords>SelectTableCollection.Add method </keywords>
  515. <param name="database">The database, which the table belongs to. </param>
  516. <param name="schema">The schema, which the table belongs to. </param>
  517. <param name="name">The name of the table that the <see cref="T:Devart.Common.SelectTable" /> object should represent. </param>
  518. <param name="alias">The alias of the table. </param>
  519. <param name="quote">Specifies if the table parameters should be quoted. </param>
  520. <returns>The <see cref="T:Devart.Common.SelectTable" /> object created. </returns>
  521. </member>
  522. <member name="M:Devart.Common.SelectTableCollection.Contains(Devart.Common.SelectTable)">
  523. <summary>Gets a value indicating whether a <see cref="T:Devart.Common.SelectTable" /> object exists in the collection. </summary>
  524. <keywords>SelectTableCollection.Contains method </keywords>
  525. <param name="value">The value of the <see cref="T:Devart.Common.SelectTable" /> object to find. </param>
  526. <returns>
  527. <see langword="true" /> if the collection contains the <see cref="T:Devart.Common.SelectTable" />; otherwise, <see langword="false" />. </returns>
  528. </member>
  529. <member name="M:Devart.Common.SelectTableCollection.CopyTo(Devart.Common.SelectTable[],System.Int32)">
  530. <summary>Copies <see cref="T:Devart.Common.SelectTable" /> objects from the <see cref="T:Devart.Common.SelectTableCollection" /> to the specified array. </summary>
  531. <keywords>SelectTableCollection.CopyTo method </keywords>
  532. <param name="array">The array into which to copy the <see cref="T:Devart.Common.SelectTable" /> objects. </param>
  533. <param name="index">The zero-based index of the array. </param>
  534. </member>
  535. <member name="M:Devart.Common.SelectTableCollection.IndexOf(Devart.Common.SelectTable)">
  536. <summary>Gets the location in the collection of the <see cref="T:Devart.Common.SelectTable" /> object. </summary>
  537. <keywords>SelectTableCollection.IndexOf method </keywords>
  538. <param name="value">The <see cref="T:Devart.Common.SelectTable" /> object to find. </param>
  539. <returns>The zero-based location of the <see cref="T:Devart.Common.SelectTable" /> in the collection. </returns>
  540. </member>
  541. <member name="M:Devart.Common.SelectTableCollection.Insert(System.Int32,Devart.Common.SelectTable)">
  542. <summary>Inserts a <see cref="T:Devart.Common.SelectTable" /> into the collection at the specified index. </summary>
  543. <keywords>SelectTableCollection.Insert method </keywords>
  544. <param name="index">The zero-based index where the table is to be inserted within the collection. </param>
  545. <param name="value">The <see cref="T:Devart.Common.SelectTable" /> to add to the collection. </param>
  546. </member>
  547. <member name="P:Devart.Common.SelectTableCollection.Item(System.Int32)">
  548. <summary>Gets or sets the <see cref="T:Devart.Common.SelectTable" /> at the specified index. </summary>
  549. <keywords>SelectTableCollection.Item property </keywords>
  550. <param name="index">The zero-based index of the table. </param>
  551. <value>The <see cref="T:Devart.Common.SelectTable" /> at the specified index. </value>
  552. </member>
  553. <member name="M:Devart.Common.SelectTableCollection.Remove(Devart.Common.SelectTable)">
  554. <summary>Removes the specified <see cref="T:Devart.Common.SelectTable" /> object from the collection. </summary>
  555. <keywords>SelectTableCollection.Remove method </keywords>
  556. <param name="value">The <see cref="T:Devart.Common.SelectTable" /> object to remove from the collection. </param>
  557. </member>
  558. <member name="N:Devart.Data.SQLite">
  559. <summary>This namespace contains classes with provider-specific functionality. </summary>
  560. </member>
  561. <member name="T:Devart.Data.SQLite.AutoVacuumMode">
  562. <summary>Determines the auto-vacuum flag in the database. </summary>
  563. </member>
  564. <member name="F:Devart.Data.SQLite.AutoVacuumMode.Full">
  565. <summary>The "freelist" pages are moved to the end of the file and the file is truncated to remove the freelist pages at every commit. </summary>
  566. </member>
  567. <member name="F:Devart.Data.SQLite.AutoVacuumMode.Incremental">
  568. <summary>A separate <b>incremental_vacuum</b> pragma must be invoked to cause the vacuum to occur. </summary>
  569. </member>
  570. <member name="F:Devart.Data.SQLite.AutoVacuumMode.None">
  571. <summary>Unused database file pages are added to a "freelist" are reused for subsequent inserts. The database file does not shrink. This is the default mode. </summary>
  572. </member>
  573. <member name="T:Devart.Data.SQLite.EncryptionMode">
  574. <summary>Determines whether the database is encrypted and kind of the database encryption. </summary>
  575. </member>
  576. <member name="F:Devart.Data.SQLite.EncryptionMode.CEROD">
  577. <summary>The SQLite database uses the CEROD encryption. The SQLite Compressed and Encrypted Read-Only Database (CEROD) Extension is an add-on to the public domain version of SQLite that allows an application to read compressed and encrypted database files in addition to ordinary SQLite database files. Password from the ConnectionString is used for the database. </summary>
  578. </member>
  579. <member name="F:Devart.Data.SQLite.EncryptionMode.None">
  580. <summary>The SQLite database is not encrypted. </summary>
  581. </member>
  582. <member name="F:Devart.Data.SQLite.EncryptionMode.SEE">
  583. <summary>The SQLite database uses the SEE encryption. The SQLite Encryption Extension (SEE) is an add-on to the public domain version of SQLite that allows an application to read and write encrypted database files. Password from the ConnectionString is used for the database. For more information about SEE see <a href="http://www.hwaci.com/sw/sqlite/see.html">the SQLite Encryption Extension web page</a>. </summary>
  584. </member>
  585. <member name="F:Devart.Data.SQLite.EncryptionMode.SQLCipher">
  586. <summary>The SQLite database uses the SQLCipher encryption. SQLCipher is an open source extension to SQLite that provides transparent 256-bit AES encryption of database files. Password from the ConnectionString is used for the database. For more information about SEE see <a href="https://www.zetetic.net/sqlcipher/">the SQLCipher web page</a>. </summary>
  587. </member>
  588. <member name="F:Devart.Data.SQLite.EncryptionMode.SQLiteCrypt">
  589. <summary>The SQLite database uses the SQLiteCrypt encryption. The SQLiteCrypt is an add-on to the public domain version of SQLite that adds transparent AES 256 encryption support for SQLite. In order to connect to such a database, you need to set the Password and SQLiteCrypt License Key connection string parameters. </summary>
  590. </member>
  591. <member name="T:Devart.Data.SQLite.JournalMode">
  592. <summary>Determines the journal mode for database. </summary>
  593. </member>
  594. <member name="F:Devart.Data.SQLite.JournalMode.Default">
  595. <summary>SQLite default Journal Mode is used. </summary>
  596. </member>
  597. <member name="F:Devart.Data.SQLite.JournalMode.Delete">
  598. <summary>In the Delete mode, the rollback journal is deleted at the conclusion of each transaction. </summary>
  599. </member>
  600. <member name="F:Devart.Data.SQLite.JournalMode.Memory">
  601. <summary>The MEMORY journaling mode stores the rollback journal in volatile RAM. It may be used to reduce disk I/O but that decreases database safety and integrity. If the application using SQLite crashes in the middle of a transaction in this mode, the database file may become corrupt. </summary>
  602. </member>
  603. <member name="F:Devart.Data.SQLite.JournalMode.Off">
  604. <summary>In this mode rollback journal is completely disabled. The ROLLBACK command does not work; it behaves in an undefined way. Don't use the ROLLBACK command in this mode. </summary>
  605. </member>
  606. <member name="F:Devart.Data.SQLite.JournalMode.Persist">
  607. <summary>In the Persist mode rollback journal file is not deleted when the transaction is commited. Its first block filled with zeroes to prevent other connections rolling back from this journal. May optimize performance on platforms where deleting or truncating a file is much more expensive than overwriting the first block of a file with zeros. </summary>
  608. </member>
  609. <member name="F:Devart.Data.SQLite.JournalMode.Truncate">
  610. <summary>In the Truncate mode rollback journal file is truncated instead of deleting when the transaction is commited. May be used for gaining better performance, because on many systems, truncating a file is much faster than deleting the file. </summary>
  611. </member>
  612. <member name="F:Devart.Data.SQLite.JournalMode.WAL">
  613. <summary>In the WAL mode, <a href="https://www.sqlite.org/wal.html">Write-Ahead Logging</a> is used instead of the standard rollback journal. This means that when database data is updated, the original content is preserved in the database file, and the changes are appended into a separate WAL file and eventually are transferred to the database. </summary>
  614. </member>
  615. <member name="T:Devart.Data.SQLite.LockingMode">
  616. <summary>Determines whether the database is locked or not. </summary>
  617. </member>
  618. <member name="F:Devart.Data.SQLite.LockingMode.Exclusive">
  619. <summary>The database connection never releases file locks. The first time the database is read in exclusive mode, a shared lock is obtained and held. The first time the database is written, an exclusive lock is obtained and held. </summary>
  620. </member>
  621. <member name="F:Devart.Data.SQLite.LockingMode.Normal">
  622. <summary>The database connection unlocks the database file at the conclusion of each read or write transaction. This is the default behavior. </summary>
  623. </member>
  624. <member name="T:Devart.Data.SQLite.ProductInfo">
  625. <summary>This class contains product information. </summary>
  626. </member>
  627. <member name="M:Devart.Data.SQLite.ProductInfo.#ctor()">
  628. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.ProductInfo" /> class. </summary>
  629. </member>
  630. <member name="F:Devart.Data.SQLite.ProductInfo.Version">
  631. <summary>Returns the version of the product, including its build number. </summary>
  632. <keywords>ProductInfo.Version field </keywords>
  633. <value>The version of the product, including its build number. </value>
  634. </member>
  635. <member name="F:Devart.Data.SQLite.ProductInfo.VersionBase">
  636. <summary>Returns the version of the product, without its build number. </summary>
  637. <keywords>ProductInfo.VersionBase field </keywords>
  638. <value>The version of the product, without its build number. </value>
  639. </member>
  640. <member name="T:Devart.Data.SQLite.SQLiteAggregateFunction">
  641. <summary>Base class for user-defined aggregate functions. </summary>
  642. </member>
  643. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction.#ctor(System.String,System.Int32)">
  644. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteAggregateFunction" /> class. </summary>
  645. <param name="name">User-defined function name to register. </param>
  646. <param name="argumentCount">Number of arguments, the user-defined function accepts. </param>
  647. </member>
  648. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction.Complete(Devart.Data.SQLite.SQLiteConnection,System.Object)">
  649. <summary>Should process the accumulated value after all records were processed. </summary>
  650. <keywords>SQLiteAggregateFunction.Complete method </keywords>
  651. <param name="connection">The connection to register the function in. </param>
  652. <param name="contextData">Data, that was accumulated in the <see cref="M:Devart.Data.SQLite.SQLiteAggregateFunction.Step(System.Object[],Devart.Data.SQLite.SQLiteConnection,System.Object@)" /> method calls. </param>
  653. <returns>The result of the user-defined function. </returns>
  654. </member>
  655. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction.Step(System.Object[],Devart.Data.SQLite.SQLiteConnection,System.Object@)">
  656. <summary>Should implement the way of acumulating and storing result. </summary>
  657. <keywords>SQLiteAggregateFunction.Step method </keywords>
  658. <param name="args">User-defined function arguments. </param>
  659. <param name="connection">The connection to register the function in. </param>
  660. <param name="contextData">This parameter for storing data between the iterations. You should explicitely initialize it when the Step is called for the first time. </param>
  661. </member>
  662. <member name="T:Devart.Data.SQLite.SQLiteAggregateFunction`1">
  663. <summary>Generic base class for user-defined aggregate functions without parameters. </summary>
  664. <typeparam name="TResult">Type of the user-defined function result. </typeparam>
  665. </member>
  666. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`1.#ctor(System.String)">
  667. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteAggregateFunction`1" /> class. </summary>
  668. <param name="name">User-defined function name to register. </param>
  669. </member>
  670. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`1.Complete(Devart.Data.SQLite.SQLiteConnection,System.Object)">
  671. <summary>Should process the accumulated value after all records were processed. </summary>
  672. <keywords>SQLiteAggregateFunction`1.Complete method </keywords>
  673. <param name="connection">The connection to register the function in. </param>
  674. <param name="contextData">Data, that was accumulated in the <see cref="M:Devart.Data.SQLite.SQLiteAggregateFunction`1.Step(Devart.Data.SQLite.SQLiteConnection,TResult@)" /> method calls. </param>
  675. <returns>The result of the user-defined function. </returns>
  676. </member>
  677. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`1.Complete(Devart.Data.SQLite.SQLiteConnection,`0)">
  678. <summary>Should process the accumulated value after all records were processed. </summary>
  679. <keywords>SQLiteAggregateFunction`1.Complete method </keywords>
  680. <param name="connection">The connection to register the function in. </param>
  681. <param name="contextData">Data, that was accumulated in the <see cref="M:Devart.Data.SQLite.SQLiteAggregateFunction`1.Step(Devart.Data.SQLite.SQLiteConnection,TResult@)" /> method calls. </param>
  682. <returns>The result of the user-defined function. </returns>
  683. </member>
  684. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`1.Step(Devart.Data.SQLite.SQLiteConnection,TResult@)">
  685. <summary>Should implement the way of acumulating and storing result. </summary>
  686. <keywords>SQLiteAggregateFunction`1.Step method </keywords>
  687. <param name="connection">The connection to register the function in. </param>
  688. <param name="contextData">This parameter for storing data between the iterations. You should explicitely initialize it when the Step is called for the first time. </param>
  689. </member>
  690. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`1.Step(System.Object[],Devart.Data.SQLite.SQLiteConnection,System.Object@)">
  691. <summary>Should implement the way of acumulating and storing result. </summary>
  692. <keywords>SQLiteAggregateFunction`1.Step method </keywords>
  693. <param name="args">User-defined function arguments. </param>
  694. <param name="connection">The connection to register the function in. </param>
  695. <param name="contextData">This parameter for storing data between the iterations. You should explicitely initialize it when the Step is called for the first time. </param>
  696. </member>
  697. <member name="T:Devart.Data.SQLite.SQLiteAggregateFunction`2">
  698. <summary>Generic base class for user-defined aggregate functions with one parameter. </summary>
  699. <typeparam name="T1">Type of the user-defined function parameter. </typeparam>
  700. <typeparam name="TResult">Type of the user-defined function result. </typeparam>
  701. </member>
  702. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`2.#ctor(System.String)">
  703. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteAggregateFunction`2" /> class. </summary>
  704. <param name="name">User-defined function name to register. </param>
  705. </member>
  706. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`2.Complete(Devart.Data.SQLite.SQLiteConnection,System.Object)">
  707. <summary>Should process the accumulated value after all records were processed. </summary>
  708. <keywords>SQLiteAggregateFunction`2.Complete method </keywords>
  709. <param name="connection">The connection to register the function in. </param>
  710. <param name="contextData">Data, that was accumulated in the <see cref="M:Devart.Data.SQLite.SQLiteAggregateFunction`2.Step(`0,Devart.Data.SQLite.SQLiteConnection,TResult@)" /> method calls. </param>
  711. <returns>The result of the user-defined function. </returns>
  712. </member>
  713. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`2.Complete(Devart.Data.SQLite.SQLiteConnection,`1)">
  714. <summary>Should process the accumulated value after all records were processed. </summary>
  715. <keywords>SQLiteAggregateFunction`2.Complete method </keywords>
  716. <param name="connection">The connection to register the function in. </param>
  717. <param name="contextData">Data, that was accumulated in the <see cref="M:Devart.Data.SQLite.SQLiteAggregateFunction`2.Step(`0,Devart.Data.SQLite.SQLiteConnection,TResult@)" /> method calls. </param>
  718. <returns>The result of the user-defined function. </returns>
  719. </member>
  720. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`2.Step(System.Object[],Devart.Data.SQLite.SQLiteConnection,System.Object@)">
  721. <summary>Should implement the way of acumulating and storing result. </summary>
  722. <keywords>SQLiteAggregateFunction`2.Step method </keywords>
  723. <param name="args">User-defined function arguments. </param>
  724. <param name="connection">The connection to register the function in. </param>
  725. <param name="contextData">This parameter for storing data between the iterations. You should explicitely initialize it when the Step is called for the first time. </param>
  726. </member>
  727. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`2.Step(`0,Devart.Data.SQLite.SQLiteConnection,TResult@)">
  728. <summary>Should implement the way of acumulating and storing result. </summary>
  729. <keywords>SQLiteAggregateFunction`2.Step method </keywords>
  730. <param name="arg1">User-defined function parameter value. </param>
  731. <param name="connection">The connection to register the function in. </param>
  732. <param name="contextData">This parameter for storing data between the iterations. You should explicitely initialize it when the Step is called for the first time. </param>
  733. </member>
  734. <member name="T:Devart.Data.SQLite.SQLiteAggregateFunction`3">
  735. <summary>Generic base class for user-defined aggregate functions with two parameters. </summary>
  736. <typeparam name="T1">Type of the first user-defined function parameter. </typeparam>
  737. <typeparam name="T2">Type of the second user-defined function parameter. </typeparam>
  738. <typeparam name="TResult">Type of the user-defined function result. </typeparam>
  739. </member>
  740. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`3.#ctor(System.String)">
  741. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteAggregateFunction`3" /> class. </summary>
  742. <param name="name">User-defined function name to register. </param>
  743. </member>
  744. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`3.Complete(Devart.Data.SQLite.SQLiteConnection,System.Object)">
  745. <summary>Should process the accumulated value after all records were processed. </summary>
  746. <keywords>SQLiteAggregateFunction`3.Complete method </keywords>
  747. <param name="connection">The connection to register the function in. </param>
  748. <param name="contextData">Data, that was accumulated in the <see cref="M:Devart.Data.SQLite.SQLiteAggregateFunction`3.Step(`0,`1,Devart.Data.SQLite.SQLiteConnection,TResult@)" /> method calls. </param>
  749. <returns>The result of the user-defined function. </returns>
  750. </member>
  751. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`3.Complete(Devart.Data.SQLite.SQLiteConnection,`2)">
  752. <summary>Should process the accumulated value after all records were processed. </summary>
  753. <keywords>SQLiteAggregateFunction`3.Complete method </keywords>
  754. <param name="connection">The connection to register the function in. </param>
  755. <param name="contextData">Data, that was accumulated in the <see cref="M:Devart.Data.SQLite.SQLiteAggregateFunction`3.Step(`0,`1,Devart.Data.SQLite.SQLiteConnection,TResult@)" /> method calls. </param>
  756. <returns>The result of the user-defined function. </returns>
  757. </member>
  758. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`3.Step(System.Object[],Devart.Data.SQLite.SQLiteConnection,System.Object@)">
  759. <summary>Should implement the way of acumulating and storing result. </summary>
  760. <keywords>SQLiteAggregateFunction`3.Step method </keywords>
  761. <param name="args">User-defined function arguments. </param>
  762. <param name="connection">The connection to register the function in. </param>
  763. <param name="contextData">This parameter for storing data between the iterations. You should explicitely initialize it when the Step is called for the first time. </param>
  764. </member>
  765. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`3.Step(`0,`1,Devart.Data.SQLite.SQLiteConnection,TResult@)">
  766. <summary>Should implement the way of acumulating and storing result. </summary>
  767. <keywords>SQLiteAggregateFunction`3.Step method </keywords>
  768. <param name="arg1">Value of the first user-defined function parameter. </param>
  769. <param name="arg2">Value of the second user-defined function parameter. </param>
  770. <param name="connection">The connection to register the function in. </param>
  771. <param name="contextData">This parameter for storing data between the iterations. You should explicitely initialize it when the Step is called for the first time. </param>
  772. </member>
  773. <member name="T:Devart.Data.SQLite.SQLiteAggregateFunction`4">
  774. <summary>Generic base class for user-defined aggregate functions with three parameters. </summary>
  775. <typeparam name="T1">Type of the first user-defined function parameter. </typeparam>
  776. <typeparam name="T2">Type of the second user-defined function parameter. </typeparam>
  777. <typeparam name="T3">Type of the third user-defined function parameter. </typeparam>
  778. <typeparam name="TResult">Type of the user-defined function result. </typeparam>
  779. </member>
  780. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`4.#ctor(System.String)">
  781. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteAggregateFunction`4" /> class. </summary>
  782. <param name="name">User-defined function name to register. </param>
  783. </member>
  784. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`4.Complete(Devart.Data.SQLite.SQLiteConnection,System.Object)">
  785. <summary>Should process the accumulated value after all records were processed. </summary>
  786. <keywords>SQLiteAggregateFunction`4.Complete method </keywords>
  787. <param name="connection">The connection to register the function in. </param>
  788. <param name="contextData">Data, that was accumulated in the <see cref="M:Devart.Data.SQLite.SQLiteAggregateFunction`4.Step(`0,`1,`2,Devart.Data.SQLite.SQLiteConnection,TResult@)" /> method calls. </param>
  789. <returns>The result of the user-defined function. </returns>
  790. </member>
  791. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`4.Complete(Devart.Data.SQLite.SQLiteConnection,`3)">
  792. <summary>Should process the accumulated value after all records were processed. </summary>
  793. <keywords>SQLiteAggregateFunction`4.Complete method </keywords>
  794. <param name="connection">The connection to register the function in. </param>
  795. <param name="contextData">Data, that was accumulated in the <see cref="M:Devart.Data.SQLite.SQLiteAggregateFunction`4.Step(`0,`1,`2,Devart.Data.SQLite.SQLiteConnection,TResult@)" /> method calls. </param>
  796. <returns>The result of the user-defined function. </returns>
  797. </member>
  798. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`4.Step(System.Object[],Devart.Data.SQLite.SQLiteConnection,System.Object@)">
  799. <summary>Should implement the way of acumulating and storing result. </summary>
  800. <keywords>SQLiteAggregateFunction`4.Step method </keywords>
  801. <param name="args">User-defined function arguments. </param>
  802. <param name="connection">The connection to register the function in. </param>
  803. <param name="contextData">This parameter for storing data between the iterations. You should explicitely initialize it when the Step is called for the first time. </param>
  804. </member>
  805. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`4.Step(`0,`1,`2,Devart.Data.SQLite.SQLiteConnection,TResult@)">
  806. <summary>Should implement the way of acumulating and storing result. </summary>
  807. <keywords>SQLiteAggregateFunction`4.Step method </keywords>
  808. <param name="arg1">Value of the first user-defined function parameter. </param>
  809. <param name="arg2">Value of the second user-defined function parameter. </param>
  810. <param name="arg3">Value of the third user-defined function parameter. </param>
  811. <param name="connection">The connection to register the function in. </param>
  812. <param name="contextData">This parameter for storing data between the iterations. You should explicitely initialize it when the Step is called for the first time. </param>
  813. </member>
  814. <member name="T:Devart.Data.SQLite.SQLiteAggregateFunction`5">
  815. <summary>Generic base class for user-defined aggregate functions with four parameters. </summary>
  816. <typeparam name="T1">Type of the first user-defined function parameter. </typeparam>
  817. <typeparam name="T2">Type of the second user-defined function parameter. </typeparam>
  818. <typeparam name="T3">Type of third the user-defined function parameter. </typeparam>
  819. <typeparam name="T4">Type of the fourth user-defined function parameter. </typeparam>
  820. <typeparam name="TResult">Type of the user-defined function result. </typeparam>
  821. </member>
  822. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`5.#ctor(System.String)">
  823. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteAggregateFunction`5" /> class. </summary>
  824. <param name="name">User-defined function name to register. </param>
  825. </member>
  826. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`5.Complete(Devart.Data.SQLite.SQLiteConnection,System.Object)">
  827. <summary>Should process the accumulated value after all records were processed. </summary>
  828. <keywords>SQLiteAggregateFunction`5.Complete method </keywords>
  829. <param name="connection">The connection to register the function in. </param>
  830. <param name="contextData">Data, that was accumulated in the <see cref="M:Devart.Data.SQLite.SQLiteAggregateFunction`5.Step(`0,`1,`2,`3,Devart.Data.SQLite.SQLiteConnection,TResult@)" /> method calls. </param>
  831. <returns>The result of the user-defined function. </returns>
  832. </member>
  833. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`5.Complete(Devart.Data.SQLite.SQLiteConnection,`4)">
  834. <summary>Should process the accumulated value after all records were processed. </summary>
  835. <keywords>SQLiteAggregateFunction`5.Complete method </keywords>
  836. <param name="connection">The connection to register the function in. </param>
  837. <param name="contextData">Data, that was accumulated in the <see cref="M:Devart.Data.SQLite.SQLiteAggregateFunction`5.Step(`0,`1,`2,`3,Devart.Data.SQLite.SQLiteConnection,TResult@)" /> method calls. </param>
  838. <returns>The result of the user-defined function. </returns>
  839. </member>
  840. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`5.Step(System.Object[],Devart.Data.SQLite.SQLiteConnection,System.Object@)">
  841. <summary>Should implement the way of acumulating and storing result. </summary>
  842. <keywords>SQLiteAggregateFunction`5.Step method </keywords>
  843. <param name="args">User-defined function arguments. </param>
  844. <param name="connection">The connection to register the function in. </param>
  845. <param name="contextData">This parameter for storing data between the iterations. You should explicitely initialize it when the Step is called for the first time. </param>
  846. </member>
  847. <member name="M:Devart.Data.SQLite.SQLiteAggregateFunction`5.Step(`0,`1,`2,`3,Devart.Data.SQLite.SQLiteConnection,TResult@)">
  848. <summary>Should implement the way of acumulating and storing result. </summary>
  849. <keywords>SQLiteAggregateFunction`5.Step method </keywords>
  850. <param name="arg1">Value of the first user-defined function parameter. </param>
  851. <param name="arg2">Value of the second user-defined function parameter. </param>
  852. <param name="arg3">Value of the third user-defined function parameter. </param>
  853. <param name="arg4">Value of the fourth user-defined function parameter. </param>
  854. <param name="connection">The connection to register the function in. </param>
  855. <param name="contextData">This parameter for storing data between the iterations. You should explicitely initialize it when the Step is called for the first time. </param>
  856. </member>
  857. <member name="T:Devart.Data.SQLite.SQLiteAggregateFunction`6">
  858. <summary>Generic base class for user-defined aggregate functions with four parameters. </summary>
  859. <typeparam name="T1">Type of the first user-defined function parameter. </typeparam>
  860. <typeparam name="T2">Type of the second user-defined function parameter. </typeparam>
  861. <typeparam name="T3">Type of third the user-defined function parameter. </typeparam>
  862. <typeparam name="T4">Type of the fourth user-defined function parameter. </typeparam>
  863. <typeparam name="T5">Type of the fifth user-defined function parameter. </typeparam>
  864. <typeparam name="TResult">Type of the user-defined function result. </typeparam>
  865. </member>
  866. <member name="T:Devart.Data.SQLite.SQLiteAggregateFunction`7">
  867. <summary>Generic base class for user-defined aggregate functions with four parameters. </summary>
  868. <typeparam name="T1">Type of the first user-defined function parameter. </typeparam>
  869. <typeparam name="T2">Type of the second user-defined function parameter. </typeparam>
  870. <typeparam name="T3">Type of third the user-defined function parameter. </typeparam>
  871. <typeparam name="T4">Type of the fourth user-defined function parameter. </typeparam>
  872. <typeparam name="T5">Type of the fifth user-defined function parameter. </typeparam>
  873. <typeparam name="T6">Type of the sixth user-defined function parameter. </typeparam>
  874. <typeparam name="TResult">Type of the user-defined function result. </typeparam>
  875. </member>
  876. <member name="T:Devart.Data.SQLite.SQLiteAggregateFunction`8">
  877. <summary>Generic base class for user-defined aggregate functions with four parameters. </summary>
  878. <typeparam name="T1">Type of the first user-defined function parameter. </typeparam>
  879. <typeparam name="T2">Type of the second user-defined function parameter. </typeparam>
  880. <typeparam name="T3">Type of third the user-defined function parameter. </typeparam>
  881. <typeparam name="T4">Type of the fourth user-defined function parameter. </typeparam>
  882. <typeparam name="T5">Type of the fifth user-defined function parameter. </typeparam>
  883. <typeparam name="T6">Type of the sixth user-defined function parameter. </typeparam>
  884. <typeparam name="T7">Type of the seventh user-defined function parameter. </typeparam>
  885. <typeparam name="TResult">Type of the user-defined function result. </typeparam>
  886. </member>
  887. <member name="T:Devart.Data.SQLite.SQLiteAggregateFunction`9">
  888. <summary>Generic base class for user-defined aggregate functions with four parameters. </summary>
  889. <typeparam name="T1">Type of the first user-defined function parameter. </typeparam>
  890. <typeparam name="T2">Type of the second user-defined function parameter. </typeparam>
  891. <typeparam name="T3">Type of third the user-defined function parameter. </typeparam>
  892. <typeparam name="T4">Type of the fourth user-defined function parameter. </typeparam>
  893. <typeparam name="T5">Type of the fifth user-defined function parameter. </typeparam>
  894. <typeparam name="T6">Type of the sixth user-defined function parameter. </typeparam>
  895. <typeparam name="T7">Type of the seventh user-defined function parameter. </typeparam>
  896. <typeparam name="T8">Type of the eighth user-defined function parameter. </typeparam>
  897. <typeparam name="TResult">Type of the user-defined function result. </typeparam>
  898. </member>
  899. <member name="T:Devart.Data.SQLite.SQLiteBlob">
  900. <summary>Represents a variable-length stream of binary data to be stored in or retrieved from a database. </summary>
  901. </member>
  902. <member name="M:Devart.Data.SQLite.SQLiteBlob.#ctor()">
  903. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> class. </summary>
  904. <overloads>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> class. </overloads>
  905. </member>
  906. <member name="M:Devart.Data.SQLite.SQLiteBlob.#ctor(System.Byte[])">
  907. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> class, setting the <see cref="P:Devart.Data.SQLite.SQLiteBlob.Value" /> property to the provided array of bytes. </summary>
  908. <param name="value">The byte array to be stored in the <see cref="P:Devart.Data.SQLite.SQLiteBlob.Value" /> property. </param>
  909. </member>
  910. <member name="P:Devart.Data.SQLite.SQLiteBlob.CanRead">
  911. <summary>Gets a value indicating whether the SQLiteBlob stream can be read. </summary>
  912. <keywords>SQLiteBlob.CanRead property </keywords>
  913. <value><see langword="true" /> if the <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> stream supports reading; <see langword="false" /> if a <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> is closed, disposed, or <see cref="F:Devart.Data.SQLite.SQLiteBlob.Null" />. </value>
  914. </member>
  915. <member name="P:Devart.Data.SQLite.SQLiteBlob.CanSeek">
  916. <summary>Gets a value indicating whether forward and backward seek operations can be performed. </summary>
  917. <keywords>SQLiteBlob.CanSeek property </keywords>
  918. <value>
  919. <see langword="true" /> if the <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> stream supports seeking; <see langword="false" /> if a <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> is closed, disposed, or <see cref="F:Devart.Data.SQLite.SQLiteBlob.Null" />. </value>
  920. </member>
  921. <member name="P:Devart.Data.SQLite.SQLiteBlob.CanWrite">
  922. <summary>Gets a value indicating whether the SQLiteBlob object supports writing. </summary>
  923. <keywords>SQLiteBlob.CanWrite property </keywords>
  924. <value>
  925. <see langword="true" /> if the <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> stream can be written; <see langword="false" /> if a <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> is closed, disposed or <see cref="F:Devart.Data.SQLite.SQLiteBlob.Null" />. </value>
  926. </member>
  927. <member name="M:Devart.Data.SQLite.SQLiteBlob.Clone()">
  928. <summary>Creates a copy of the current <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> object. </summary>
  929. <keywords>SQLiteBlob.Clone method </keywords>
  930. <returns>A new <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> object. </returns>
  931. </member>
  932. <member name="M:Devart.Data.SQLite.SQLiteBlob.Close()">
  933. <summary>Closes the current stream and releases any resources associated with it. </summary>
  934. <keywords>SQLiteBlob.Close method </keywords>
  935. </member>
  936. <member name="M:Devart.Data.SQLite.SQLiteBlob.Dispose()">
  937. <summary>Releases all resources allocated by this object. </summary>
  938. <keywords>SQLiteBlob.Dispose method </keywords>
  939. <overloads>Releases all resources allocated by this object. </overloads>
  940. </member>
  941. <member name="M:Devart.Data.SQLite.SQLiteBlob.Flush()">
  942. <summary>Flush/write all buffers for the current <see cref="T:Devart.Data.SQLite.SQLiteBlob" />. </summary>
  943. <keywords>SQLiteBlob.Flush method </keywords>
  944. </member>
  945. <member name="P:Devart.Data.SQLite.SQLiteBlob.IsEmpty">
  946. <summary>Gets a value indicating whether the <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> is empty or not. </summary>
  947. <keywords>SQLiteBlob.IsEmpty property </keywords>
  948. <value>
  949. <see langword="true" /> if the <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> is empty; otherwise, <see langword="false" />. </value>
  950. </member>
  951. <member name="P:Devart.Data.SQLite.SQLiteBlob.IsNull">
  952. <summary>Gets a value indicating whether the <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> is a <see cref="F:Devart.Data.SQLite.SQLiteBlob.Null" /> stream. </summary>
  953. <keywords>SQLiteBlob.IsNull property </keywords>
  954. <value>
  955. <see langword="true" />, if the <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> is a <see cref="F:Devart.Data.SQLite.SQLiteBlob.Null" />; otherwise, <see langword="false" />. </value>
  956. </member>
  957. <member name="P:Devart.Data.SQLite.SQLiteBlob.Length">
  958. <summary>Gets the size of the <see cref="T:Devart.Data.SQLite.SQLiteBlob" />. </summary>
  959. <keywords>SQLiteBlob.Length property </keywords>
  960. <value>The size of the <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> in bytes. </value>
  961. </member>
  962. <member name="F:Devart.Data.SQLite.SQLiteBlob.Null">
  963. <summary>Represents a null <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> object. </summary>
  964. <keywords>SQLiteBlob.Null field </keywords>
  965. </member>
  966. <member name="P:Devart.Data.SQLite.SQLiteBlob.Position">
  967. <summary>Gets the current read position in the <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> stream. </summary>
  968. <keywords>SQLiteBlob.Position property </keywords>
  969. <value>The current position within the <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> stream. </value>
  970. </member>
  971. <member name="M:Devart.Data.SQLite.SQLiteBlob.Read(System.Byte[],System.Int32,System.Int32)">
  972. <summary>Reads a sequence of bytes from the current <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> stream and advances the position within the stream by the number of bytes read. </summary>
  973. <keywords>SQLiteBlob.Read method </keywords>
  974. <param name="buffer">The byte array buffer to be populated. </param>
  975. <param name="offset">The zero-based byte offset in the buffer. </param>
  976. <param name="count">The amount of bytes to read. </param>
  977. <returns>The total number of bytes read into the buffer. </returns>
  978. </member>
  979. <member name="M:Devart.Data.SQLite.SQLiteBlob.Seek(System.Int64,System.IO.SeekOrigin)">
  980. <summary>Sets the position on the current <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> stream. </summary>
  981. <keywords>SQLiteBlob.Seek method </keywords>
  982. <param name="offset">A byte offset relative to origin. </param>
  983. <param name="origin">A value of <see cref="T:System.IO.SeekOrigin" /> type indicating the reference point used to obtain the new position. </param>
  984. <returns>The new position within the current stream. </returns>
  985. </member>
  986. <member name="M:Devart.Data.SQLite.SQLiteBlob.SetLength(System.Int64)">
  987. <summary>Sets length for <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> value. </summary>
  988. <keywords>SQLiteBlob.SetLength method </keywords>
  989. <param name="len">The size of the <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> in bytes. </param>
  990. </member>
  991. <member name="M:Devart.Data.SQLite.SQLiteBlob.ToString()">
  992. <summary>Converts the current <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> object to a <see cref="T:System.String" />. </summary>
  993. <keywords>SQLiteBlob.ToString method </keywords>
  994. <returns>A <see cref="T:System.String" /> with the same value as the <see cref="T:Devart.Data.SQLite.SQLiteBlob" />. </returns>
  995. </member>
  996. <member name="P:Devart.Data.SQLite.SQLiteBlob.Value">
  997. <summary>Gets the value of the <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> object. </summary>
  998. <keywords>SQLiteBlob.Value property </keywords>
  999. <value>The value of the <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> object. </value>
  1000. </member>
  1001. <member name="M:Devart.Data.SQLite.SQLiteBlob.Write(System.Byte[],System.Int32,System.Int32)">
  1002. <summary>Writes a sequence of bytes to the current <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> stream, and advances the current position within this stream by the number of bytes written. </summary>
  1003. <keywords>SQLiteBlob.Write method </keywords>
  1004. <param name="buffer">An array of bytes. </param>
  1005. <param name="offset">The zero-based byte offset in the buffer. </param>
  1006. <param name="count">The amount of bytes to be written to the current stream. </param>
  1007. </member>
  1008. <member name="T:Devart.Data.SQLite.SQLiteCollationFunction">
  1009. <summary>Base class for user-defined collation functions. </summary>
  1010. </member>
  1011. <member name="M:Devart.Data.SQLite.SQLiteCollationFunction.#ctor(System.String)">
  1012. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteCollationFunction" /> class. </summary>
  1013. <param name="name">User-defined function name to register. </param>
  1014. </member>
  1015. <member name="M:Devart.Data.SQLite.SQLiteCollationFunction.Compare(System.String,System.String,Devart.Data.SQLite.SQLiteConnection)">
  1016. <summary>Should implemet the comparison operation. </summary>
  1017. <keywords>SQLiteCollationFunction.Compare method </keywords>
  1018. <param name="param1">First string to compare. </param>
  1019. <param name="param2">Second string to compare. </param>
  1020. <param name="connection">The connection to register the function in. </param>
  1021. <returns>Signed 32 bit integer value. If less than zero, param1 is less than param2. If equals zero, param1 equals param2. If greater than zero, param1 is greater than param2. </returns>
  1022. </member>
  1023. <member name="T:Devart.Data.SQLite.SQLiteCommand">
  1024. <summary>Represents a SQL statement to execute against SQLite. </summary>
  1025. </member>
  1026. <member name="M:Devart.Data.SQLite.SQLiteCommand.#ctor()">
  1027. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> class. </summary>
  1028. <overloads>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> class. </overloads>
  1029. </member>
  1030. <member name="M:Devart.Data.SQLite.SQLiteCommand.#ctor(System.String)">
  1031. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> class with the text of the query. </summary>
  1032. <param name="commandText">The text of the query. </param>
  1033. </member>
  1034. <member name="M:Devart.Data.SQLite.SQLiteCommand.#ctor(System.String,Devart.Data.SQLite.SQLiteConnection)">
  1035. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> class with the text of the query and a <see ref="T:Devart.Data.SQLite.SQLiteConnection" /> object. </summary>
  1036. <param name="commandText">The text of the query. </param>
  1037. <param name="connection">A <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> object that represents the connection to SQLite. </param>
  1038. </member>
  1039. <member name="M:Devart.Data.SQLite.SQLiteCommand.#ctor(System.String,Devart.Data.SQLite.SQLiteConnection,Devart.Data.SQLite.SQLiteTransaction)">
  1040. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> class with the text of the query, a <see ref="T:Devart.Data.SQLite.SQLiteConnection" /> object, and the <see cref="T:Devart.Data.SQLite.SQLiteTransaction" />. </summary>
  1041. <param name="commandText">The text of the query. </param>
  1042. <param name="connection">A <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> object that represents the connection to SQLite. </param>
  1043. <param name="transaction">
  1044. <see cref="T:Devart.Data.SQLite.SQLiteTransaction" /> object used to perform transactions with this <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> object. </param>
  1045. </member>
  1046. <member name="M:Devart.Data.SQLite.SQLiteCommand.#ctor(System.String,Devart.Data.SQLite.SQLiteTransaction)">
  1047. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> class with the text of the query, and the <see cref="T:Devart.Data.SQLite.SQLiteTransaction" /> object. </summary>
  1048. <param name="commandText">The text of the query. </param>
  1049. <param name="transaction">
  1050. <see cref="T:Devart.Data.SQLite.SQLiteTransaction" /> object used to perform transactions with this <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> object. </param>
  1051. </member>
  1052. <member name="M:Devart.Data.SQLite.SQLiteCommand.Cancel()">
  1053. <summary>Stops execution of <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> methods. </summary>
  1054. <keywords>SQLiteCommand.Cancel method </keywords>
  1055. </member>
  1056. <member name="M:Devart.Data.SQLite.SQLiteCommand.Clone()">
  1057. <summary>Creates a new object that is a copy of the current <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> instance. </summary>
  1058. <keywords>SQLiteCommand.Clone method </keywords>
  1059. <returns>A new <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> object in which all property values are the same as the original. </returns>
  1060. </member>
  1061. <member name="P:Devart.Data.SQLite.SQLiteCommand.CommandText">
  1062. <summary>Gets or sets the SQL statement to execute against SQLite. </summary>
  1063. <keywords>SQLiteCommand.CommandText property </keywords>
  1064. <value>The SQL statement to execute. The default value is an empty string (""). </value>
  1065. </member>
  1066. <member name="P:Devart.Data.SQLite.SQLiteCommand.CommandTimeout">
  1067. <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>
  1068. <keywords>SQLiteCommand.CommandTimeout property </keywords>
  1069. <value>The time (in seconds) to wait for the command to execute. The default value is 30. </value>
  1070. </member>
  1071. <member name="P:Devart.Data.SQLite.SQLiteCommand.CommandType">
  1072. <summary>Gets or sets a value indicating how the <see cref="P:Devart.Data.SQLite.SQLiteCommand.CommandText" /> property is to be interpreted. </summary>
  1073. <keywords>SQLiteCommand.CommandType property </keywords>
  1074. <value>One of the <see cref="T:System.Data.CommandType" /> values. The default value is <see cref="T:System.Data.CommandType.Text" />. </value>
  1075. </member>
  1076. <member name="P:Devart.Data.SQLite.SQLiteCommand.Connection">
  1077. <summary>Gets or sets the <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> used by this instance of the <see cref="T:Devart.Data.SQLite.SQLiteCommand" />. </summary>
  1078. <keywords>SQLiteCommand.Connection property </keywords>
  1079. <value>The connection to a data source. The default value is a null reference. </value>
  1080. </member>
  1081. <member name="M:Devart.Data.SQLite.SQLiteCommand.CreateParameter()">
  1082. <summary>Creates a new instance of a <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> object. </summary>
  1083. <keywords>SQLiteCommand.CreateParameter method </keywords>
  1084. <returns>A <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> object. </returns>
  1085. <overloads>Creates a new instance of a <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> object. </overloads>
  1086. </member>
  1087. <member name="M:Devart.Data.SQLite.SQLiteCommand.EndExecuteReader(System.IAsyncResult)">
  1088. <summary>Ends an asynchronous invocation of the <see cref="M:Devart.Data.SQLite.SQLiteCommand.ExecuteReader" /> method. </summary>
  1089. <keywords>SQLiteCommand.EndExecuteReader method </keywords>
  1090. <param name="result">The <see cref="T:System.IAsyncResult" /> returned from <see cref="M:Devart.Common.DbCommandBase.BeginExecuteReader" />. </param>
  1091. <returns>A <see cref="T:Devart.Data.SQLite.SQLiteDataReader" /> object. </returns>
  1092. <overloads>Ends an asynchronous invocation of the <see cref="M:Devart.Data.SQLite.SQLiteCommand.ExecuteReader" /> method. </overloads>
  1093. </member>
  1094. <member name="M:Devart.Data.SQLite.SQLiteCommand.ExecutePageReader(System.Data.CommandBehavior,System.Int32,System.Int32)">
  1095. <summary>Returns a specific subset of rows when paging through the results of a query. </summary>
  1096. <keywords>SQLiteCommand.ExecutePageReader method </keywords>
  1097. <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values. </param>
  1098. <param name="startRecord">Specifies the number of starting record of the set of records to be returned. </param>
  1099. <param name="maxRecords">Specifies total number of records to retrieve. </param>
  1100. <returns>A <see cref="T:Devart.Data.SQLite.SQLiteDataReader" /> object with requested records. </returns>
  1101. <overloads>Returns a specific subset of rows when paging through the results of a query. </overloads>
  1102. </member>
  1103. <member name="M:Devart.Data.SQLite.SQLiteCommand.ExecuteReader()">
  1104. <summary>Sends the <see cref="P:Devart.Data.SQLite.SQLiteCommand.CommandText" /> to the <see cref="P:Devart.Data.SQLite.SQLiteCommand.Connection" /> and builds a <see cref="T:Devart.Data.SQLite.SQLiteDataReader" />. </summary>
  1105. <keywords>SQLiteCommand.ExecuteReader method </keywords>
  1106. <returns>A <see cref="T:Devart.Data.SQLite.SQLiteDataReader" /> object. </returns>
  1107. <overloads>Sends the <see cref="P:Devart.Data.SQLite.SQLiteCommand.CommandText" /> to the <see cref="P:Devart.Data.SQLite.SQLiteCommand.Connection" /> and builds a <see cref="T:Devart.Data.SQLite.SQLiteDataReader" />. </overloads>
  1108. </member>
  1109. <member name="M:Devart.Data.SQLite.SQLiteCommand.ExecuteReader(System.Data.CommandBehavior)">
  1110. <summary>Sends the <see cref="P:Devart.Data.SQLite.SQLiteCommand.CommandText" /> to the <see cref="P:Devart.Data.SQLite.SQLiteCommand.Connection" />, and builds a <see cref="T:Devart.Data.SQLite.SQLiteDataReader" /> using one of the <see cref="T:System.Data.CommandBehavior" /> values. </summary>
  1111. <keywords>SQLiteCommand.ExecuteReader method </keywords>
  1112. <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior" /> values. </param>
  1113. <returns>A <see cref="T:Devart.Data.SQLite.SQLiteDataReader" /> object. </returns>
  1114. </member>
  1115. <member name="P:Devart.Data.SQLite.SQLiteCommand.InsertID">
  1116. <summary>Returns the rowid of the most recent successful INSERT into the database. </summary>
  1117. <keywords>SQLiteCommand.InsertID property </keywords>
  1118. <value>The last generated rowid. </value>
  1119. </member>
  1120. <member name="P:Devart.Data.SQLite.SQLiteCommand.Parameters">
  1121. <summary>Gets or sets the <see cref="T:Devart.Data.SQLite.SQLiteParameterCollection" />. </summary>
  1122. <keywords>SQLiteCommand.Parameters property </keywords>
  1123. <value>The parameters of a SQL statement. The default value is an empty collection. </value>
  1124. </member>
  1125. <member name="M:Devart.Data.SQLite.SQLiteCommand.Prepare()">
  1126. <summary>Creates a prepared (or compiled) version of the command on the server. </summary>
  1127. <keywords>SQLiteCommand.Prepare method </keywords>
  1128. </member>
  1129. <member name="P:Devart.Data.SQLite.SQLiteCommand.UpdatedRowSource">
  1130. <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>
  1131. <keywords>SQLiteCommand.UpdatedRowSource property </keywords>
  1132. <value>One of the <see cref="T:System.Data.UpdateRowSource" /> values. </value>
  1133. </member>
  1134. <member name="T:Devart.Data.SQLite.SQLiteCommandBuilder">
  1135. <summary>Automatically generates single-table commands used to reconcile changes made to a <see cref="T:System.Data.DataSet" /> with the SQLite. </summary>
  1136. </member>
  1137. <member name="M:Devart.Data.SQLite.SQLiteCommandBuilder.#ctor()">
  1138. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteCommandBuilder" /> class. </summary>
  1139. <overloads>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteCommandBuilder" /> class. </overloads>
  1140. </member>
  1141. <member name="M:Devart.Data.SQLite.SQLiteCommandBuilder.#ctor(Devart.Data.SQLite.SQLiteDataAdapter)">
  1142. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteCommandBuilder" /> class with the associated <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" /> object. </summary>
  1143. <param name="adapter"> </param>
  1144. </member>
  1145. <member name="P:Devart.Data.SQLite.SQLiteCommandBuilder.DataAdapter">
  1146. <summary>Gets or sets a <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" /> object for which this <see cref="T:Devart.Data.SQLite.SQLiteCommandBuilder" /> object will generate SQL statements. </summary>
  1147. <keywords>SQLiteCommandBuilder.DataAdapter property </keywords>
  1148. <value>A <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" /> object that is associated with this <see cref="T:Devart.Data.SQLite.SQLiteCommandBuilder" />. </value>
  1149. </member>
  1150. <member name="M:Devart.Data.SQLite.SQLiteCommandBuilder.DeriveParameters(Devart.Data.SQLite.SQLiteCommand)">
  1151. <summary>Populates the specified <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> object's <see cref="P:Devart.Data.SQLite.SQLiteCommand.Parameters" /> collection with parameter information for the SQL statement specified in the <see cref="P:Devart.Data.SQLite.SQLiteCommand.CommandText" />. </summary>
  1152. <keywords>SQLiteCommandBuilder.DeriveParameters method </keywords>
  1153. <param name="command">The <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> referencing the SQL statement for which the parameter information is to be derived. The derived parameters will be populated into the <see cref="P:Devart.Data.SQLite.SQLiteCommand.Parameters" /> collection of this command. </param>
  1154. </member>
  1155. <member name="M:Devart.Data.SQLite.SQLiteCommandBuilder.GetDeleteCommand()">
  1156. <summary>Gets the automatically generated SQL statement required to perform deletions on the data source when an application calls <see cref="M:System.Data.Common.DbDataAdapter.Update()" /> on the <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" />. </summary>
  1157. <keywords>SQLiteCommandBuilder.GetDeleteCommand method </keywords>
  1158. <returns>The text of the SQL statement to be executed. </returns>
  1159. <overloads>Gets the automatically generated SQL statement required to perform deletions on the data source. </overloads>
  1160. </member>
  1161. <member name="M:Devart.Data.SQLite.SQLiteCommandBuilder.GetDeleteCommand(System.Boolean)">
  1162. <summary>Gets the automatically generated SQL statement required to perform deletions on the data source when an application calls <see cref="M:System.Data.Common.DbDataAdapter.Update()" /> on the <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" />. </summary>
  1163. <keywords>SQLiteCommandBuilder.GetDeleteCommand method </keywords>
  1164. <param name="useColumnsForParameterNames">Determines whether names of parameters in command text will be based on columns' names. </param>
  1165. <returns>The text of the SQL statement to be executed. </returns>
  1166. </member>
  1167. <member name="M:Devart.Data.SQLite.SQLiteCommandBuilder.GetInsertCommand()">
  1168. <summary>Gets the automatically generated SQL statement required to perform inserts on the data source when an application calls <see cref="M:System.Data.Common.DbDataAdapter.Update()" /> on the <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" />. </summary>
  1169. <keywords>SQLiteCommandBuilder.GetInsertCommand method </keywords>
  1170. <returns>The text of the SQL statement to be executed. </returns>
  1171. <overloads>Gets the automatically generated SQL statement required to perform inserts on the data source. </overloads>
  1172. </member>
  1173. <member name="M:Devart.Data.SQLite.SQLiteCommandBuilder.GetInsertCommand(System.Boolean)">
  1174. <summary>Gets the automatically generated SQL statement required to perform inserts on the data source when an application calls <see cref="M:System.Data.Common.DbDataAdapter.Update()" /> on the <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" />. </summary>
  1175. <keywords>SQLiteCommandBuilder.GetInsertCommand method </keywords>
  1176. <param name="useColumnsForParameterNames">Determines whether names of parameters in command text will be based on columns' names. </param>
  1177. <returns>The text of the SQL statement to be executed. </returns>
  1178. </member>
  1179. <member name="M:Devart.Data.SQLite.SQLiteCommandBuilder.GetInsertCommand(System.String[],System.Boolean)">
  1180. <summary>Gets the automatically generated SQL statement required to perform inserts on the data source when an application calls <see cref="M:System.Data.Common.DbDataAdapter.Update()" /> on the <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" />. </summary>
  1181. <keywords>SQLiteCommandBuilder.GetInsertCommand method </keywords>
  1182. <param name="fields">Defines list of columns that are allowed to update. </param>
  1183. <param name="useColumnsForParameterNames">Determines whether names of parameters in command text will be based on columns' names. </param>
  1184. <returns>The text of the SQL statement to be executed. </returns>
  1185. </member>
  1186. <member name="M:Devart.Data.SQLite.SQLiteCommandBuilder.GetRefreshCommand()">
  1187. <summary>Gets the automatically generated SQL statement required to refresh values from the data source. </summary>
  1188. <keywords>SQLiteCommandBuilder.GetRefreshCommand method </keywords>
  1189. <returns>A <see cref="T:Devart.Common.DbCommand" /> with <see cref="P:Devart.Common.DbCommandBase.CommandText" /> containing SQL statement to be executed. </returns>
  1190. <overloads>Gets the automatically generated SQL statement required to refresh values from the data source. </overloads>
  1191. </member>
  1192. <member name="M:Devart.Data.SQLite.SQLiteCommandBuilder.GetRefreshCommand(System.Boolean)">
  1193. <summary>Gets the automatically generated SQL statement required to refresh values from the data source. </summary>
  1194. <keywords>SQLiteCommandBuilder.GetRefreshCommand method </keywords>
  1195. <param name="useColumnsForParameterNames">Determines whether dotConnect for SQLite 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>
  1196. <returns>A <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> with <see cref="P:Devart.Data.SQLite.SQLiteCommand.CommandText" /> containing SQL statement to be executed. </returns>
  1197. </member>
  1198. <member name="M:Devart.Data.SQLite.SQLiteCommandBuilder.GetRefreshCommand(System.String[],System.Boolean)">
  1199. <summary>Gets the automatically generated SQL statement required to refresh values from the data source. </summary>
  1200. <keywords>SQLiteCommandBuilder.GetRefreshCommand method </keywords>
  1201. <param name="fields">The array of string containing list of the field names. </param>
  1202. <param name="useColumnsForParameterNames">Determines whether dotConnect for SQLite 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>
  1203. <returns>A <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> with <see cref="P:Devart.Data.SQLite.SQLiteCommand.CommandText" /> containing SQL statement to be executed. </returns>
  1204. </member>
  1205. <member name="M:Devart.Data.SQLite.SQLiteCommandBuilder.GetUpdateCommand()">
  1206. <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()" /> on the <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" />. </summary>
  1207. <keywords>SQLiteCommandBuilder.GetUpdateCommand method </keywords>
  1208. <returns>The <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> object to be executed. </returns>
  1209. <overloads>Gets the automatically generated SQL statement required to perform updates on the data source. </overloads>
  1210. </member>
  1211. <member name="M:Devart.Data.SQLite.SQLiteCommandBuilder.GetUpdateCommand(System.Boolean)">
  1212. <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()" /> on the <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" />. </summary>
  1213. <keywords>SQLiteCommandBuilder.GetUpdateCommand method </keywords>
  1214. <param name="useColumnsForParameterNames">Determines whether names of parameters in command text will be based on columns' names. </param>
  1215. <returns>The <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> object to be executed. </returns>
  1216. </member>
  1217. <member name="M:Devart.Data.SQLite.SQLiteCommandBuilder.GetUpdateCommand(System.String[],System.Boolean)">
  1218. <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()" /> on the <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" />. </summary>
  1219. <keywords>SQLiteCommandBuilder.GetUpdateCommand method </keywords>
  1220. <param name="fields">Defines list of columns that are allowed to update. </param>
  1221. <param name="useColumnsForParameterNames">Determines whether names of parameters in command text will be based on columns' names. </param>
  1222. <returns>The <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> object to be executed. </returns>
  1223. </member>
  1224. <member name="P:Devart.Data.SQLite.SQLiteCommandBuilder.KeyFields">
  1225. <summary>Gets or sets string containing list of key field names separated by semicolon. They are used to generate update commands. </summary>
  1226. <keywords>SQLiteCommandBuilder.KeyFields property </keywords>
  1227. <value>The string containing list of key field names separated by semicolon. </value>
  1228. </member>
  1229. <member name="M:Devart.Data.SQLite.SQLiteCommandBuilder.QuoteIdentifier(System.String)">
  1230. <summary>Returns the string passed as the parameter enclosed in quotes. </summary>
  1231. <keywords>SQLiteCommandBuilder.QuoteIdentifier method </keywords>
  1232. <param name="unquotedIdentifier">Identifier to be placed inside the quotes. </param>
  1233. <returns>The identifier enclosed in quotes. </returns>
  1234. </member>
  1235. <member name="P:Devart.Data.SQLite.SQLiteCommandBuilder.RefreshMode">
  1236. <summary>This feature is not supported in dotConnect for SQLite. </summary>
  1237. <keywords>SQLiteCommandBuilder.RefreshMode property </keywords>
  1238. </member>
  1239. <member name="P:Devart.Data.SQLite.SQLiteCommandBuilder.RefreshingFields">
  1240. <summary>Gets or sets list of fields whose values should be retrieved after a DML statement execution. </summary>
  1241. <keywords>SQLiteCommandBuilder.RefreshingFields property </keywords>
  1242. <value>The string containing list of field names separated by semicolon. </value>
  1243. </member>
  1244. <member name="P:Devart.Data.SQLite.SQLiteCommandBuilder.SchemaSeparator">
  1245. <summary>Gets or sets separator string to be used when referencing a table. </summary>
  1246. <keywords>SQLiteCommandBuilder.SchemaSeparator property </keywords>
  1247. <value>Separator between schema and table. </value>
  1248. </member>
  1249. <member name="M:Devart.Data.SQLite.SQLiteCommandBuilder.UnquoteIdentifier(System.String)">
  1250. <summary>Removes quote strings from identifier. </summary>
  1251. <keywords>SQLiteCommandBuilder.UnquoteIdentifier method </keywords>
  1252. <param name="quotedIdentifier">String containing <see cref="P:Devart.Common.DbCommandBuilder.QuotePrefix" />, identifier itself, and <see cref="P:Devart.Common.DbCommandBuilder.QuoteSuffix" /> parts. </param>
  1253. <returns>Unquoted identifier. </returns>
  1254. </member>
  1255. <member name="P:Devart.Data.SQLite.SQLiteCommandBuilder.UpdatingFields">
  1256. <summary>Gets or sets list of fields to modify. </summary>
  1257. <keywords>SQLiteCommandBuilder.UpdatingFields property </keywords>
  1258. <value>The string containing list of field names separated by semicolon. </value>
  1259. </member>
  1260. <member name="P:Devart.Data.SQLite.SQLiteCommandBuilder.UpdatingTable">
  1261. <summary>
  1262. <para>Gets or sets table name to generate update statements for.</para> </summary>
  1263. <keywords>SQLiteCommandBuilder.UpdatingTable property </keywords>
  1264. <value>The name of the table. </value>
  1265. </member>
  1266. <member name="T:Devart.Data.SQLite.SQLiteConnection">
  1267. <summary>Represents an open connection to SQLite. </summary>
  1268. </member>
  1269. <member name="M:Devart.Data.SQLite.SQLiteConnection.#ctor()">
  1270. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> class. </summary>
  1271. <overloads>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> class. </overloads>
  1272. </member>
  1273. <member name="M:Devart.Data.SQLite.SQLiteConnection.#ctor(System.String)">
  1274. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> class when given a string containing the connection string. </summary>
  1275. <param name="connectionString">The connection used to connect to SQLite. </param>
  1276. </member>
  1277. <member name="M:Devart.Data.SQLite.SQLiteConnection.BackupDatabase(Devart.Data.SQLite.SQLiteConnection)">
  1278. <summary>Backups (copies) the database to the specified target connection via the SQLite Online Backup API. </summary>
  1279. <keywords>SQLiteConnection.BackupDatabase method </keywords>
  1280. <param name="destination">The connection to copy the current database to. </param>
  1281. <overloads>Backups (copies) the database using the SQLite Online Backup API. </overloads>
  1282. </member>
  1283. <member name="M:Devart.Data.SQLite.SQLiteConnection.BackupDatabase(Devart.Data.SQLite.SQLiteConnection,System.Int32)">
  1284. <summary>Backups (copies) the database to the specified target connection via the SQLite Online Backup API. </summary>
  1285. <keywords>SQLiteConnection.BackupDatabase method </keywords>
  1286. <param name="destination">The connection to copy the current database to. </param>
  1287. <param name="backupTimeOut">The time (in seconds) to wait for the backup command to execute. </param>
  1288. </member>
  1289. <member name="M:Devart.Data.SQLite.SQLiteConnection.BackupDatabase(Devart.Data.SQLite.SQLiteConnection,System.String,System.String,System.Int32)">
  1290. <summary>Backups (copies) the database to the specified target connection via the SQLite Online Backup API. </summary>
  1291. <keywords>SQLiteConnection.BackupDatabase method </keywords>
  1292. <param name="destination">The connection to copy the current database to. </param>
  1293. <param name="destinationName">The destination database name. </param>
  1294. <param name="sourceName">The source database name. </param>
  1295. <param name="backupTimeOut">The time (in seconds) to wait for the backup command to execute. </param>
  1296. </member>
  1297. <member name="M:Devart.Data.SQLite.SQLiteConnection.BeginTransaction()">
  1298. <summary>Begins a database transaction. </summary>
  1299. <keywords>SQLiteConnection.BeginTransaction method </keywords>
  1300. <returns>An object representing the new transaction. </returns>
  1301. <overloads>Begins a transaction at the database. </overloads>
  1302. </member>
  1303. <member name="M:Devart.Data.SQLite.SQLiteConnection.BeginTransaction(Devart.Data.SQLite.SQLiteTransactionMode)">
  1304. <summary>Begins a database transaction with the specified transaction mode. </summary>
  1305. <keywords>SQLiteConnection.BeginTransaction method </keywords>
  1306. <param name="transactionMode">The transaction mode to use. One of the <see cref="T:Devart.Data.SQLite.SQLiteTransactionMode" /> values. </param>
  1307. <returns>An object representing the new transaction. </returns>
  1308. </member>
  1309. <member name="M:Devart.Data.SQLite.SQLiteConnection.BeginTransaction(System.Data.IsolationLevel)">
  1310. <summary>Begins a database transaction with the specified isolation level. </summary>
  1311. <keywords>SQLiteConnection.BeginTransaction method </keywords>
  1312. <param name="isolationLevel"> </param>
  1313. <returns>An object representing the new transaction. </returns>
  1314. </member>
  1315. <member name="M:Devart.Data.SQLite.SQLiteConnection.ChangeDatabase(System.String)">
  1316. <summary>This method is not supported. </summary>
  1317. <keywords>SQLiteConnection.ChangeDatabase method </keywords>
  1318. <param name="databaseName"> </param>
  1319. </member>
  1320. <member name="M:Devart.Data.SQLite.SQLiteConnection.ChangePassword(System.Byte[])">
  1321. <summary>Changes password for opened SEE encrypted SQLite databases. Accepts new password in any encoding. </summary>
  1322. <keywords>SQLiteConnection.ChangePassword method </keywords>
  1323. <param name="newPassword">New password. </param>
  1324. <overloads>Changes password for opened SEE encrypted SQLite databases. </overloads>
  1325. </member>
  1326. <member name="M:Devart.Data.SQLite.SQLiteConnection.ChangePassword(System.String)">
  1327. <summary>Changes password for opened SEE or SQLiteCrypt encrypted SQLite databases. Accepts new password only in UTF-8 encoding. </summary>
  1328. <keywords>SQLiteConnection.ChangePassword method </keywords>
  1329. <param name="newPassword">New password in UTF-8 encoding. </param>
  1330. </member>
  1331. <member name="M:Devart.Data.SQLite.SQLiteConnection.ClearAllPools()">
  1332. <summary>Clears all pools associated with the connection. </summary>
  1333. <keywords>SQLiteConnection.ClearAllPools method </keywords>
  1334. </member>
  1335. <member name="M:Devart.Data.SQLite.SQLiteConnection.ClearAllPools(System.Boolean)">
  1336. <summary>Clears all pools associated with the connection. </summary>
  1337. <keywords>SQLiteConnection.ClearAllPools method </keywords>
  1338. <param name="forced">Determines whether to start the operation immediately, or after the timeout. </param>
  1339. </member>
  1340. <member name="M:Devart.Data.SQLite.SQLiteConnection.ClearPool(Devart.Data.SQLite.SQLiteConnection)">
  1341. <summary>Clears the pool matching <see cref="P:Devart.Data.SQLite.SQLiteConnection.ConnectionString" /> of provided <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> object. </summary>
  1342. <keywords>SQLiteConnection.ClearPool method </keywords>
  1343. <param name="connection">A connection that holds <see cref="P:Devart.Data.SQLite.SQLiteConnection.ConnectionString" /> that identifies pool to clear. </param>
  1344. </member>
  1345. <member name="M:Devart.Data.SQLite.SQLiteConnection.Clone()">
  1346. <summary>Creates a new object that is a copy of the current instance. </summary>
  1347. <keywords>SQLiteConnection.Clone method </keywords>
  1348. <returns>A new <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> object. </returns>
  1349. </member>
  1350. <member name="M:Devart.Data.SQLite.SQLiteConnection.Commit()">
  1351. <summary>Commits the database transaction. </summary>
  1352. <keywords>SQLiteConnection.Commit method </keywords>
  1353. </member>
  1354. <member name="P:Devart.Data.SQLite.SQLiteConnection.ConnectionString">
  1355. <summary>Gets or sets the string used to open a SQLite connection. </summary>
  1356. <keywords>SQLiteConnection.ConnectionString property </keywords>
  1357. <value>The connection string that includes the parameters needed to establish the initial connection. The default value is an empty string (""). </value>
  1358. </member>
  1359. <member name="P:Devart.Data.SQLite.SQLiteConnection.ConnectionTimeout">
  1360. <summary>Gets the time to wait while trying to establish a connection before terminating the attempt and generating an error. </summary>
  1361. <keywords>SQLiteConnection.ConnectionTimeout property </keywords>
  1362. <value>The time (in seconds) to wait for a connection to open. The default value is 15 seconds. </value>
  1363. </member>
  1364. <member name="M:Devart.Data.SQLite.SQLiteConnection.CreateCommand()">
  1365. <summary>Creates and returns a <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> object associated with the <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see>. </summary>
  1366. <keywords>SQLiteConnection.CreateCommand method </keywords>
  1367. <returns>A <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> object. </returns>
  1368. <overloads>Creates and returns a <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> object associated with the <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see>. </overloads>
  1369. </member>
  1370. <member name="M:Devart.Data.SQLite.SQLiteConnection.CreateFile(System.String)">
  1371. <summary>Creates an empty database. </summary>
  1372. <keywords>SQLiteConnection.CreateFile method </keywords>
  1373. <param name="databaseFileName">The path and name of the database to create. </param>
  1374. </member>
  1375. <member name="P:Devart.Data.SQLite.SQLiteConnection.DataSource">
  1376. <summary>Gets or sets the location of the database. </summary>
  1377. <keywords>SQLiteConnection.DataSource property </keywords>
  1378. <value>The path and file name of the database. </value>
  1379. </member>
  1380. <member name="P:Devart.Data.SQLite.SQLiteConnection.Database">
  1381. <summary>Returns constant "Main". </summary>
  1382. <keywords>SQLiteConnection.Database property </keywords>
  1383. <value>The name of the current database or the name of the database to be used once a connection is open. </value>
  1384. </member>
  1385. <member name="M:Devart.Data.SQLite.SQLiteConnection.DisableSharedCache()">
  1386. <summary>Disables the sharing of the database cache and schema data structures between connections to the same database. </summary>
  1387. <keywords>SQLiteConnection.DisableSharedCache method </keywords>
  1388. </member>
  1389. <member name="M:Devart.Data.SQLite.SQLiteConnection.EnableSharedCache()">
  1390. <summary>Enables the sharing of the database cache and schema data structures between connections to the same database. </summary>
  1391. <keywords>SQLiteConnection.EnableSharedCache method </keywords>
  1392. </member>
  1393. <member name="E:Devart.Data.SQLite.SQLiteConnection.Error">
  1394. <summary>Occurs when SQLite returns an error. </summary>
  1395. <keywords>SQLiteConnection.Error event </keywords>
  1396. </member>
  1397. <member name="M:Devart.Data.SQLite.SQLiteConnection.IsFunctionRegistered(Devart.Data.SQLite.SQLiteFunction)">
  1398. <summary>Checks whether the specified function is registered in the connection as SQLite user-defined function. </summary>
  1399. <keywords>SQLiteConnection.IsFunctionRegistered method </keywords>
  1400. <param name="function">The function to check. </param>
  1401. <returns><see langword="true" />, if the specified function is registered in the SQLite connection; otherwise, <see langword="false" />. </returns>
  1402. <overloads>Checks whether the specified function is registered in the connection as SQLite user-defined function. </overloads>
  1403. </member>
  1404. <member name="M:Devart.Data.SQLite.SQLiteConnection.IsFunctionRegistered(System.String,System.Int32)">
  1405. <summary>Checks whether the specified function is registered in the connection as SQLite user-defined function. </summary>
  1406. <keywords>SQLiteConnection.IsFunctionRegistered method </keywords>
  1407. <param name="name">The name of the function to check. </param>
  1408. <param name="argumentCount">The number of arguments the function accepts. </param>
  1409. <returns><see langword="true" />, if the function with the specified name and number of parameters is registered in the SQLite connection; otherwise, <see langword="false" />. </returns>
  1410. </member>
  1411. <member name="M:Devart.Data.SQLite.SQLiteConnection.LoadExtension(System.String)">
  1412. <summary>Loads an SQLite extension library, specified by its file name. </summary>
  1413. <keywords>SQLiteConnection.LoadExtension method </keywords>
  1414. <param name="fileName">The library file name. </param>
  1415. <overloads>Loads an SQLite extension library, specified by its file name. </overloads>
  1416. </member>
  1417. <member name="M:Devart.Data.SQLite.SQLiteConnection.LoadExtension(System.String,System.String)">
  1418. <summary>Loads an SQLite extension library, specified by its file name. </summary>
  1419. <keywords>SQLiteConnection.LoadExtension method </keywords>
  1420. <param name="fileName">The library file name. </param>
  1421. <param name="entryPoint">The library entry point. </param>
  1422. </member>
  1423. <member name="P:Devart.Data.SQLite.SQLiteConnection.Name">
  1424. <summary>Gets or sets the name of the component. </summary>
  1425. <keywords>SQLiteConnection.Name property </keywords>
  1426. <value>The name of the component. </value>
  1427. </member>
  1428. <member name="M:Devart.Data.SQLite.SQLiteConnection.Open()">
  1429. <summary>Opens a SQLite connection with the property settings specified by the <see cref="P:Devart.Data.SQLite.SQLiteConnection.ConnectionString" />. </summary>
  1430. <keywords>SQLiteConnection.Open method </keywords>
  1431. </member>
  1432. <member name="P:Devart.Data.SQLite.SQLiteConnection.Owner">
  1433. <summary>Gets or sets a form or other container that the <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> instance belongs to. </summary>
  1434. <keywords>SQLiteConnection.Owner property </keywords>
  1435. <value>A form or other container that the <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> instance belongs to. </value>
  1436. </member>
  1437. <member name="M:Devart.Data.SQLite.SQLiteConnection.RegisterFunction(Devart.Data.SQLite.SQLiteFunction)">
  1438. <summary>Registers user-defined function in the connection. </summary>
  1439. <keywords>SQLiteConnection.RegisterFunction method </keywords>
  1440. <param name="function">The user-implemented function to register. </param>
  1441. </member>
  1442. <member name="M:Devart.Data.SQLite.SQLiteConnection.RegisterProgressHandler(Devart.Data.SQLite.SQLiteProgressCallback)">
  1443. <summary>Registers a handler to be invoked each SQLite virtual machine instruction during long running calls to a database. </summary>
  1444. <keywords>SQLiteConnection.RegisterProgressHandler method </keywords>
  1445. <param name="handler">A handler to register. </param>
  1446. <overloads>Registers a handler to be invoked periodically during long running calls to a database. </overloads>
  1447. </member>
  1448. <member name="M:Devart.Data.SQLite.SQLiteConnection.RegisterProgressHandler(Devart.Data.SQLite.SQLiteProgressCallback,System.Int32)">
  1449. <summary>Registers a handler to be invoked each SQLite virtual machine instruction during long running calls to a database. </summary>
  1450. <keywords>SQLiteConnection.RegisterProgressHandler method </keywords>
  1451. <param name="handler">A handler to register. </param>
  1452. <param name="vmInstructions">The number of SQLite virtual machine instructions between the progress handler calls. </param>
  1453. </member>
  1454. <member name="M:Devart.Data.SQLite.SQLiteConnection.Rollback()">
  1455. <summary>Rolls back a transaction from a pending state. </summary>
  1456. <keywords>SQLiteConnection.Rollback method </keywords>
  1457. </member>
  1458. <member name="M:Devart.Data.SQLite.SQLiteConnection.SQLCipherExport(System.String,System.String)">
  1459. <summary>Creates an SQLCipher-encrypted copy of the current unencrypted database. You must have the SQLite3.dll library with SQLCipher extension in order to use this method. </summary>
  1460. <keywords>SQLiteConnection.SQLCipherExport method </keywords>
  1461. <param name="destDatabaseFile">Path to save the result encrypted database to. </param>
  1462. <param name="destDatabasePassword">The password to use for the encrypted database. Passing an empty string creates an unencrypted database. </param>
  1463. </member>
  1464. <member name="P:Devart.Data.SQLite.SQLiteConnection.ServerVersion">
  1465. <summary>Gets a string containing the version of the instance of SQLite to which the client is connected. </summary>
  1466. <keywords>SQLiteConnection.ServerVersion property </keywords>
  1467. <value>The version of the instance of SQLite. </value>
  1468. </member>
  1469. <member name="P:Devart.Data.SQLite.SQLiteConnection.State">
  1470. <summary>Gets the current state of the connection. </summary>
  1471. <keywords>SQLiteConnection.State property </keywords>
  1472. <value>A bitwise combination of the <see cref="T:System.Data.ConnectionState" /> values. The default value is Closed. </value>
  1473. </member>
  1474. <member name="P:Devart.Data.SQLite.SQLiteConnection.UTF16">
  1475. <summary>Gets or sets a value indicating whether the connection uses UTF16 encoding. </summary>
  1476. <keywords>SQLiteConnection.UTF16 property </keywords>
  1477. <value>If <b>true</b>, the connection uses UTF16 encoding; otherwise it uses UTF8. </value>
  1478. </member>
  1479. <member name="M:Devart.Data.SQLite.SQLiteConnection.UnRegisterCollation(System.String)">
  1480. <summary>Unregisters existing SQLite collation function. </summary>
  1481. <keywords>SQLiteConnection.UnRegisterCollation method </keywords>
  1482. <param name="name">The name of the function to unregister. </param>
  1483. </member>
  1484. <member name="M:Devart.Data.SQLite.SQLiteConnection.UnRegisterFunction(Devart.Data.SQLite.SQLiteFunction)">
  1485. <summary>Unregisters user-defined scalar or aggregate function. </summary>
  1486. <keywords>SQLiteConnection.UnRegisterFunction method </keywords>
  1487. <param name="function">The user-defined function to unregister. </param>
  1488. <overloads>Unregisters existing SQL scalar or aggregate function. </overloads>
  1489. </member>
  1490. <member name="M:Devart.Data.SQLite.SQLiteConnection.UnRegisterFunction(System.String,System.Int32)">
  1491. <summary>Unregisters existing SQL scalar or aggregate function. </summary>
  1492. <keywords>SQLiteConnection.UnRegisterFunction method </keywords>
  1493. <param name="name">The name of the function to unregister. </param>
  1494. <param name="arguments">The number of arguments in the function. </param>
  1495. </member>
  1496. <member name="M:Devart.Data.SQLite.SQLiteConnection.UnRegisterProgressHandler()">
  1497. <summary>Unregisters any registered <see cref="T:Devart.Data.SQLite.SQLiteProgressCallback" /> progress handler. </summary>
  1498. <keywords>SQLiteConnection.UnRegisterProgressHandler method </keywords>
  1499. </member>
  1500. <member name="T:Devart.Data.SQLite.SQLiteConnectionStringBuilder">
  1501. <summary>Generates automatically connection strings used to connect to SQLite. </summary>
  1502. </member>
  1503. <member name="M:Devart.Data.SQLite.SQLiteConnectionStringBuilder.#ctor()">
  1504. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteConnectionStringBuilder" /> class. </summary>
  1505. <overloads>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteConnectionStringBuilder" /> class. </overloads>
  1506. </member>
  1507. <member name="M:Devart.Data.SQLite.SQLiteConnectionStringBuilder.#ctor(System.String)">
  1508. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteConnectionStringBuilder" /> class and assigns custom initial values to some properties. </summary>
  1509. <param name="connectionString">Initial connection setup string. </param>
  1510. </member>
  1511. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.Attach">
  1512. <summary>Gets or sets the list of databases to attach. </summary>
  1513. <keywords>SQLiteConnectionStringBuilder.Attach property </keywords>
  1514. <value>The list of databases to attach, separated with semicolons. </value>
  1515. </member>
  1516. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.AutoVacuum">
  1517. <summary>Determines what happens when a transaction that deletes data from a database is committed. </summary>
  1518. <keywords>SQLiteConnectionStringBuilder.AutoVacuum property </keywords>
  1519. <value>One of the <see cref="T:Devart.Data.SQLite.AutoVacuumMode" /> values. </value>
  1520. </member>
  1521. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.AutomaticIndex">
  1522. <summary>Determines whether the SQLite <a href="http://sqlite.org/optoverview.html#autoindex">automatic indexing</a> is enabled. </summary>
  1523. <keywords>SQLiteConnectionStringBuilder.AutomaticIndex property </keywords>
  1524. <value>If <see langword="true" /> - automatic indexing is enabled; otherwise it is disabled. Default value is <see langword="true" />. </value>
  1525. </member>
  1526. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.BinaryGUID">
  1527. <summary>Gets or sets a value that determines how GUIDs are stored. </summary>
  1528. <keywords>SQLiteConnectionStringBuilder.BinaryGUID property </keywords>
  1529. <value>If <see langword="true" /> - GUID columns are stored in binary form; otherwise GUID columns are stored as text. </value>
  1530. </member>
  1531. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.BusyTimeout">
  1532. <summary>Sets an SQLite <a href="http://sqlite.org/c3ref/busy_handler.html">busy handler</a> that sleeps for a specified amount of time when a table is locked. The handler will sleep multiple times until at least the specified number of milliseconds of sleeping have accumulated. After this the handler returns 0. </summary>
  1533. <keywords>SQLiteConnectionStringBuilder.BusyTimeout property </keywords>
  1534. <value>The time to sleep in milliseconds. </value>
  1535. </member>
  1536. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.CacheSize">
  1537. <summary>Gets or sets the maximum number of database disk pages that SQLite will hold in memory at once. </summary>
  1538. <keywords>SQLiteConnectionStringBuilder.CacheSize property </keywords>
  1539. <value>The maximum number of database disk pages. </value>
  1540. </member>
  1541. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.CacheSpill">
  1542. <summary>Gets or sets a value indicating whether to allow spilling dirty cache pages to the database file in the middle of a transaction. </summary>
  1543. <keywords>SQLiteConnectionStringBuilder.CacheSpill property </keywords>
  1544. <value>If <see langword="true" />, spilling dirty cache pages to the database file in the middle of a transaction is allowed; otherwise, it is not. By default, <see langword="true" />. </value>
  1545. </member>
  1546. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.CaseSensitiveLike">
  1547. <summary>Gets or sets a value indicating whether LIKE comparisons should be case-sensitive. </summary>
  1548. <keywords>SQLiteConnectionStringBuilder.CaseSensitiveLike property </keywords>
  1549. <value>If <see langword="true" />, comparison operations with LIKE are case-sensitive; otherwise, they are not. By default, <see langword="false" />. </value>
  1550. </member>
  1551. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.CellSizeCheck">
  1552. <summary>Gets or sets a value indicating whether to perform additional checks on database b-tree pages as they are initially read from disk. </summary>
  1553. <keywords>SQLiteConnectionStringBuilder.CellSizeCheck property </keywords>
  1554. <value>If <see langword="true" />, additional checks are performed; otherwise, they are not. By default, <see langword="false" />. </value>
  1555. </member>
  1556. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.CheckpointFullFSync">
  1557. <summary>Determines whether the F_FULLFSYNC syncing method is used during checkpoint operations on systems that support F_FULLFSYNC. </summary>
  1558. <keywords>SQLiteConnectionStringBuilder.CheckpointFullFSync property </keywords>
  1559. <value>If <see langword="true" /> - the F_FULLFSYNC syncing method is used during checkpoint operations on systems that support F_FULLFSYNC; otherwise it is not used. Default value is <see langword="false" />. </value>
  1560. </member>
  1561. <member name="M:Devart.Data.SQLite.SQLiteConnectionStringBuilder.Clear()">
  1562. <summary>Sets all <see cref="T:Devart.Data.SQLite.SQLiteConnectionStringBuilder" /> properties to default values. </summary>
  1563. <keywords>SQLiteConnectionStringBuilder.Clear method </keywords>
  1564. </member>
  1565. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.ConnectionLifetime">
  1566. <summary>Gets or sets time span in seconds for connection to live. </summary>
  1567. <keywords>SQLiteConnectionStringBuilder.ConnectionLifetime property </keywords>
  1568. <value>Number of seconds for connection to live. </value>
  1569. </member>
  1570. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.ConnectionTimeout">
  1571. <summary>Gets or sets the time to wait while trying to establish a connection before terminating the attempt and generating an error. </summary>
  1572. <keywords>SQLiteConnectionStringBuilder.ConnectionTimeout property </keywords>
  1573. <value>The time (in seconds) to wait for a connection to open. The default value is 15 seconds. </value>
  1574. </member>
  1575. <member name="M:Devart.Data.SQLite.SQLiteConnectionStringBuilder.ContainsKey(System.String)">
  1576. <summary>Indicates whether specified key is set in the <see cref="T:Devart.Data.SQLite.SQLiteConnectionStringBuilder" /> object. </summary>
  1577. <keywords>SQLiteConnectionStringBuilder.ContainsKey method </keywords>
  1578. <param name="keyword">Key to search for. </param>
  1579. <returns>
  1580. <see langword="true" />, if the value of the specified key differs from default; otherwise, <see langword="false" />. </returns>
  1581. </member>
  1582. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.CountChanges">
  1583. <summary>Gets or sets a value indicating whether the database engine should return the number of inserted, updated, or deleted rows. </summary>
  1584. <keywords>SQLiteConnectionStringBuilder.CountChanges property </keywords>
  1585. <value>If <see langword="true" />, the database engine returns the number of affected rows; otherwise, <see langword="false" />. </value>
  1586. </member>
  1587. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.DataSource">
  1588. <summary>Gets or sets the location of the database. </summary>
  1589. <keywords>SQLiteConnectionStringBuilder.DataSource property </keywords>
  1590. <value>The path and file name of the database. </value>
  1591. </member>
  1592. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.DateTimeFormat">
  1593. <summary>Gets or sets the format of DATETIME values. </summary>
  1594. <keywords>SQLiteConnectionStringBuilder.DateTimeFormat property </keywords>
  1595. <value>One of the <see cref="T:Devart.Data.SQLite.SQLiteDateFormats" /> values. </value>
  1596. </member>
  1597. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.DefaultCommandTimeout">
  1598. <summary>Gets or sets the time in seconds to wait while trying to execute a command before terminating the attempt and generating an error. </summary>
  1599. <keywords>SQLiteConnectionStringBuilder.DefaultCommandTimeout property </keywords>
  1600. <value>The time in seconds to wait while trying to execute a command before terminating the attempt and generating an error. </value>
  1601. </member>
  1602. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.EnableLoadExtension">
  1603. <summary>Gets or sets a value indicating whether an SQLite extension library can be loaded from the from the named file with the statement <i>SELECT load_extension(file_name);</i>.
  1604. It can be useful, for example, for the full-text search modules. </summary>
  1605. <keywords>SQLiteConnectionStringBuilder.EnableLoadExtension property </keywords>
  1606. <value>If <see langword="true" />, the SQLite extension libraries are allowed to load; otherwise, <see langword="false" />. </value>
  1607. </member>
  1608. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.Encryption">
  1609. <summary>Determines whether the database is encrypted and kind of the database encryption. </summary>
  1610. <keywords>SQLiteConnectionStringBuilder.Encryption property </keywords>
  1611. <value>One of the <see cref="T:Devart.Data.SQLite.EncryptionMode" /> values. </value>
  1612. </member>
  1613. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.EncryptionLicenseKey">
  1614. <summary>Gets or sets the license key of the SQLCipher or SQLiteCrypt extension. Set this parameter if you are connecting to SQLCipher or SQLiteCrypt encrypted databases. </summary>
  1615. <keywords>SQLiteConnectionStringBuilder.EncryptionLicenseKey property </keywords>
  1616. <value>The license key of the SQLCipher extension. </value>
  1617. </member>
  1618. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.Enlist">
  1619. <summary>Gets or sets a Boolean value that indicates whether the connection is automatically enlisted in the current transaction context. </summary>
  1620. <keywords>SQLiteConnectionStringBuilder.Enlist property </keywords>
  1621. <value><see langword="true" />, if the connection is automatically enlisted in the current transaction context; <see langword="false" /> otherwise. </value>
  1622. </member>
  1623. <member name="M:Devart.Data.SQLite.SQLiteConnectionStringBuilder.EquivalentTo(Devart.Common.DbConnectionStringBuilder,System.Boolean)">
  1624. <summary>Returns a value indicating whether this <see cref="T:Devart.Data.SQLite.SQLiteConnectionStringBuilder" /> object has same parameters as given <b>DbConnectionStringBuilder</b> object. </summary>
  1625. <keywords>SQLiteConnectionStringBuilder.EquivalentTo method </keywords>
  1626. <param name="connectionStringBuilder">A <b>DbConnectionStringBuilder</b> object to compare with. </param>
  1627. <param name="loginOnly">
  1628. </param>
  1629. <returns>
  1630. <see langword="true" />, if the two objects have same parameters; otherwise, <see langword="false" />. </returns>
  1631. <overloads>Returns a value indicating whether this <see cref="T:Devart.Data.SQLite.SQLiteConnectionStringBuilder" /> has same parameters as given <b>DbConnectionStringBuilder</b>. </overloads>
  1632. </member>
  1633. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.FailIfMissing">
  1634. <summary>Gets or sets the value that determines what to do when the database file is missing. </summary>
  1635. <keywords>SQLiteConnectionStringBuilder.FailIfMissing property </keywords>
  1636. <value>When <see cref="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.FailIfMissing" /> is <see langword="true" />, <see cref="T:Devart.Data.SQLite.SQLiteConnection" /> throws an exception if it cannot find the database file. When <see cref="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.FailIfMissing" /> is <see langword="false" />, an empty database is created. </value>
  1637. </member>
  1638. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.ForeignKeyConstraints">
  1639. <summary>Determines whether the foreign key constraints are enforced. </summary>
  1640. <keywords>SQLiteConnectionStringBuilder.ForeignKeyConstraints property </keywords>
  1641. <value>One of the <see cref="T:Devart.Data.SQLite.SQLiteForeignKeyConstraints" /> values. </value>
  1642. </member>
  1643. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.FullColumnNames">
  1644. <summary>Gets or sets a value that determines the format of autogenerated names. </summary>
  1645. <keywords>SQLiteConnectionStringBuilder.FullColumnNames property </keywords>
  1646. <value>If <see langword="true" />, the database engine names columns according to format &lt;table-name/alias&gt; &lt;column-name&gt;. </value>
  1647. </member>
  1648. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.FullFSync">
  1649. <summary>Gets or sets a value that determines whether or not the F_FULLFSYNC syncing method is used on systems that support it. </summary>
  1650. <keywords>SQLiteConnectionStringBuilder.FullFSync property </keywords>
  1651. <value>If <see langword="true" />, the database engine attempts to use the F_FULLFSYNC syncing method; otherwise, <see langword="false" />. </value>
  1652. </member>
  1653. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.IgnoreCheckConstraints">
  1654. <summary>Determines whether the check constraints are enforced. </summary>
  1655. <keywords>SQLiteConnectionStringBuilder.IgnoreCheckConstraints property </keywords>
  1656. <value>If <see langword="true" /> - check constraints are ignored; otherwise they are enforced. Default value is <see langword="false" />. </value>
  1657. </member>
  1658. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.IsFixedSize">
  1659. <summary>Returns <see langword="true" />. </summary>
  1660. <keywords>SQLiteConnectionStringBuilder.IsFixedSize property </keywords>
  1661. <value>Always <see langword="true" />. </value>
  1662. </member>
  1663. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.Item(System.String)">
  1664. <summary>Returns the value of given key. </summary>
  1665. <keywords>SQLiteConnectionStringBuilder.Item property </keywords>
  1666. <param name="keyword">The key name. </param>
  1667. <value>Value of given key. </value>
  1668. </member>
  1669. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.JournalMode">
  1670. <summary>Determines SQLite journal mode for the connection. </summary>
  1671. <keywords>SQLiteConnectionStringBuilder.JournalMode property </keywords>
  1672. <value>One of the <see cref="T:Devart.Data.SQLite.JournalMode" /> values. </value>
  1673. </member>
  1674. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.JournalSizeLimit">
  1675. <summary>Gets or sets the maximal size of the log file in bytes. </summary>
  1676. <keywords>SQLiteConnectionStringBuilder.JournalSizeLimit property </keywords>
  1677. <value>The maximal size of the log file in bytes. </value>
  1678. </member>
  1679. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.Keys">
  1680. <summary>Collection of keys in the <see cref="T:Devart.Data.SQLite.SQLiteConnectionStringBuilder" />. </summary>
  1681. <keywords>SQLiteConnectionStringBuilder.Keys property </keywords>
  1682. <value>Collection of keys. </value>
  1683. </member>
  1684. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.LegacyFileFormat">
  1685. <summary>Gets or sets a value that indicates backwards compatibility of the database file. </summary>
  1686. <keywords>SQLiteConnectionStringBuilder.LegacyFileFormat property </keywords>
  1687. <value>If <see langword="true" />, new databases will be created compatible with all 3.x engines; otherwise the new database may be compatible with the current engine version only. The default value is <see langword="true" />. </value>
  1688. </member>
  1689. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.LoadExtension">
  1690. <summary>Defines the list of SQLite extension libraries, which are loaded when the connection opens. Applied only when the <see cref="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.EnableLoadExtension" /> connection string parameter is set to True. </summary>
  1691. <keywords>SQLiteConnectionStringBuilder.LoadExtension property </keywords>
  1692. <value>The list of SQLite extension libraries, which are loaded when the connection opens. </value>
  1693. </member>
  1694. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.Locking">
  1695. <summary>Gets or sets a value that determines database locking mode. </summary>
  1696. <keywords>SQLiteConnectionStringBuilder.Locking property </keywords>
  1697. <value>One of the <see cref="T:Devart.Data.SQLite.LockingMode" /> values. </value>
  1698. </member>
  1699. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.MaxPageCount">
  1700. <summary>Gets or sets the maximum number of pages in the database file. </summary>
  1701. <keywords>SQLiteConnectionStringBuilder.MaxPageCount property </keywords>
  1702. <value>The maximum number of pages. </value>
  1703. </member>
  1704. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.MaxPoolSize">
  1705. <summary>The maximum number of connections allowed in the pool. </summary>
  1706. <keywords>SQLiteConnectionStringBuilder.MaxPoolSize property </keywords>
  1707. <value>Number of connections allowed in the pool. The default value is 100. </value>
  1708. </member>
  1709. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.MinPoolSize">
  1710. <summary>The minimum number of connections allowed in the pool. </summary>
  1711. <keywords>SQLiteConnectionStringBuilder.MinPoolSize property </keywords>
  1712. <value>Number of connections allowed in the pool. The default value is 0. </value>
  1713. </member>
  1714. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.PageSize">
  1715. <summary>Gets or sets the page size in newly created databases. </summary>
  1716. <keywords>SQLiteConnectionStringBuilder.PageSize property </keywords>
  1717. <value>The page size in bytes. </value>
  1718. </member>
  1719. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.Password">
  1720. <summary>Gets or sets the user's password to connect. </summary>
  1721. <keywords>SQLiteConnectionStringBuilder.Password property </keywords>
  1722. <value>The user's password to connect. </value>
  1723. </member>
  1724. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.PersistSecurityInfo">
  1725. <summary>Gets or sets a value indicating whether password is stored in connection string after connection is opened. </summary>
  1726. <keywords>SQLiteConnectionStringBuilder.PersistSecurityInfo property </keywords>
  1727. <value>If <see langword="true" />, <see cref="P:Devart.Data.SQLite.SQLiteConnection.ConnectionString" /> remains unaltered after opening connection; otherwise, password is removed. The default value is <see langword="false" />. </value>
  1728. </member>
  1729. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.Pooling">
  1730. <summary>Gets or sets pooling mode. </summary>
  1731. <keywords>SQLiteConnectionStringBuilder.Pooling property </keywords>
  1732. <value>If <see langword="true" /> (the default value), when a <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> is closed, the internal connection object is not actually closed, and is placed object is drawn from the appropriate pool or is created and added to the appropriate pool. </value>
  1733. </member>
  1734. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.ReadOnlyDatabase">
  1735. <summary>Determines whether to open a database in a read-only mode. An exception is thrown if a database does not exist. Available only if the connection uses the UTF8 encoding - if <see cref="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.UTF16" /> is set to <see langword="false" />. </summary>
  1736. <keywords>SQLiteConnectionStringBuilder.ReadOnlyDatabase property </keywords>
  1737. <value>If <see langword="true" />, the database is opened in rad-only mode, and you cannot modify it; otherwise, <see langword="false" />. Default value is <see langword="false" />. </value>
  1738. </member>
  1739. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.ReadUncommitted">
  1740. <summary>Gets or sets the process isolation level. </summary>
  1741. <keywords>SQLiteConnectionStringBuilder.ReadUncommitted property </keywords>
  1742. <value>If <see langword="true" />, the isolation level is READ UNCOMMITTED; otherwise, it is SERIALIZABLE. The default level is SERIALIZABLE. </value>
  1743. </member>
  1744. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.RecursiveTriggers">
  1745. <summary>Determines whether the recursive triggers are turned on. </summary>
  1746. <keywords>SQLiteConnectionStringBuilder.RecursiveTriggers property </keywords>
  1747. <value>If <b>true</b> - recursive triggers are turned on; otherwise they are turned off. Default value is <b>false</b>. </value>
  1748. </member>
  1749. <member name="M:Devart.Data.SQLite.SQLiteConnectionStringBuilder.Remove(System.String)">
  1750. <summary>Sets value of the specified key to default. </summary>
  1751. <keywords>SQLiteConnectionStringBuilder.Remove method </keywords>
  1752. <param name="keyword">The key to clear. </param>
  1753. <returns>
  1754. <see langword="true" />, if operation is successful; <see langword="false" /> otherwise. </returns>
  1755. </member>
  1756. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.ReverseUnorderedSelects">
  1757. <summary>Determines whether the result of the SELECT statement without the ORDER BY clause will be retrieved in the reverse order of what it normally would. </summary>
  1758. <keywords>SQLiteConnectionStringBuilder.ReverseUnorderedSelects property </keywords>
  1759. <value>If <see langword="true" /> - the result of the SELECT statement without the ORDER BY clause will be retrieved in the reverse order of what it would if this property was set to <see langword="false" />. Default value is <see langword="false" />. </value>
  1760. </member>
  1761. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.SQLiteCryptLicenseKey">
  1762. <summary>Gets or sets the license key of the SQLiteCrypt extension. Set this parameter if you are connecting to SQLiteCrypt encrypted databases. This property is deprecated and left for backward compatibility. Use <see cref="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.EncryptionLicenseKey" /> instead. </summary>
  1763. <keywords>SQLiteConnectionStringBuilder.SQLiteCryptLicenseKey property </keywords>
  1764. <value>The license key of the SQLiteCrypt extension. </value>
  1765. </member>
  1766. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.SecureDelete">
  1767. <summary>Specifies whether to overwrite the deleted data with zeroes. </summary>
  1768. <keywords>SQLiteConnectionStringBuilder.SecureDelete property </keywords>
  1769. <value>One of the <see cref="T:Devart.Data.SQLite.SQLiteSecureDelete" /> values. </value>
  1770. </member>
  1771. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.ShortColumnNames">
  1772. <summary>Gets or sets a value that determines the format of autogenerated names. </summary>
  1773. <keywords>SQLiteConnectionStringBuilder.ShortColumnNames property </keywords>
  1774. <value>If <see langword="true" />, the database engine names columns according to format &lt;column-name&gt;. </value>
  1775. </member>
  1776. <member name="M:Devart.Data.SQLite.SQLiteConnectionStringBuilder.ShouldSerialize(System.String)">
  1777. <summary>Determines whether the key will be serialized if required. </summary>
  1778. <keywords>SQLiteConnectionStringBuilder.ShouldSerialize method </keywords>
  1779. <param name="keyword">Key name to inquiry. </param>
  1780. <returns>
  1781. <see langword="true" />, if the key will be serialized; <see langword="false" /> otherwise. </returns>
  1782. </member>
  1783. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.Synchronous">
  1784. <summary>Gets or sets a value that determines the synchronization mode of write operations. </summary>
  1785. <keywords>SQLiteConnectionStringBuilder.Synchronous property </keywords>
  1786. <value>One of the <see cref="T:Devart.Data.SQLite.SynchronizationMode" /> values. </value>
  1787. </member>
  1788. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.TempStore">
  1789. <summary>Gets or sets a value that indicates location of temporary files. </summary>
  1790. <keywords>SQLiteConnectionStringBuilder.TempStore property </keywords>
  1791. <value>One of the <see cref="T:Devart.Data.SQLite.TempStoreMode" /> values. </value>
  1792. </member>
  1793. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.TempStoreDirectory">
  1794. <summary>Gets or sets the directory where the temporary files are stored. </summary>
  1795. <keywords>SQLiteConnectionStringBuilder.TempStoreDirectory property </keywords>
  1796. <value>The directory where the temporary files are stored. An empty string by default, which denotes the current Windows user's temp directory. </value>
  1797. </member>
  1798. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.Threads">
  1799. <summary>Gets or sets the maximal number of auxillary threads the prepared statement can launch to assist with a query. </summary>
  1800. <keywords>SQLiteConnectionStringBuilder.Threads property </keywords>
  1801. <value>The maximal number of auxillary threads the prepared statement can launch to assist with a query. </value>
  1802. </member>
  1803. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.TransactionScopeLocal">
  1804. <summary>Enables support for non-distributed transactions in the TransactionScope implementation. </summary>
  1805. <keywords>SQLiteConnectionStringBuilder.TransactionScopeLocal property </keywords>
  1806. <value><see langword="true" />, if one-phase commit is used within TransactionScope; <see langword="false" /> otherwise. </value>
  1807. </member>
  1808. <member name="M:Devart.Data.SQLite.SQLiteConnectionStringBuilder.TryGetValue(System.String,System.Object@)">
  1809. <summary>Attempts to get a key value. </summary>
  1810. <keywords>SQLiteConnectionStringBuilder.TryGetValue method </keywords>
  1811. <param name="keyword">Key name to obtain the value. </param>
  1812. <param name="value">Value of the key. If operation fails, the value is null. </param>
  1813. <returns>
  1814. <see langword="true" /> if the operation is successful; <see langword="false" /> otherwise. </returns>
  1815. </member>
  1816. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.UTF16">
  1817. <summary>Gets or sets a value indicating whether the connection uses UTF16 encoding. </summary>
  1818. <keywords>SQLiteConnectionStringBuilder.UTF16 property </keywords>
  1819. <value>If <b>true</b>, the connection uses UTF16 encoding; otherwise it uses UTF8. </value>
  1820. </member>
  1821. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.ValidateConnection">
  1822. <summary>Indicates whether to validate connections that are being taken from the pool. </summary>
  1823. <keywords>SQLiteConnectionStringBuilder.ValidateConnection property </keywords>
  1824. <value><see langword="true" />, if the connection should be validated when it is taken from the pool; <see langword="false" /> otherwise. </value>
  1825. </member>
  1826. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.Values">
  1827. <summary>Collection of values in the <see cref="T:Devart.Data.SQLite.SQLiteConnectionStringBuilder" />. </summary>
  1828. <keywords>SQLiteConnectionStringBuilder.Values property </keywords>
  1829. <value>Collection of values. </value>
  1830. </member>
  1831. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.Version">
  1832. <summary>Gets the version of the database engine, always 3. </summary>
  1833. <keywords>SQLiteConnectionStringBuilder.Version property </keywords>
  1834. <value>Always 3. </value>
  1835. </member>
  1836. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.WALAutoCheckpoint">
  1837. <summary>Gets or sets the write-ahead log auto-checkpoint interval. </summary>
  1838. <keywords>SQLiteConnectionStringBuilder.WALAutoCheckpoint property </keywords>
  1839. <value>The write-ahead log auto-checkpoint interval - the number of the write-ahead log pages, after which the checkpoint is performed. </value>
  1840. </member>
  1841. <member name="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.WritableSchema">
  1842. <summary>Determines whether the SQLITE_MASTER tables can be changed using UPDATE, INSERT, and DELETE statements. </summary>
  1843. <keywords>SQLiteConnectionStringBuilder.WritableSchema property </keywords>
  1844. <value>If <b>true</b> - the SQLITE_MASTER tables in which database can be changed using UPDATE, INSERT, and DELETE statements; otherwise they cannot. </value>
  1845. </member>
  1846. <member name="T:Devart.Data.SQLite.SQLiteDataAdapter">
  1847. <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 SQLite data. </summary>
  1848. </member>
  1849. <member name="M:Devart.Data.SQLite.SQLiteDataAdapter.#ctor()">
  1850. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" /> class. </summary>
  1851. <overloads>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" /> class. </overloads>
  1852. </member>
  1853. <member name="M:Devart.Data.SQLite.SQLiteDataAdapter.#ctor(Devart.Data.SQLite.SQLiteCommand)">
  1854. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" /> class with the specified <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> as the <see ref="P:Devart.Data.SQLite.SQLiteDataAdapter.SelectCommand" /> property. </summary>
  1855. <param name="selectCommand">A <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> that contains SQL SELECT statement, and is set as the <see cref="P:Devart.Data.SQLite.SQLiteDataAdapter.SelectCommand" /> property of the <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" />. </param>
  1856. </member>
  1857. <member name="M:Devart.Data.SQLite.SQLiteDataAdapter.#ctor(System.String,Devart.Data.SQLite.SQLiteConnection)">
  1858. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" /> class with a <see cref="P:Devart.Data.SQLite.SQLiteDataAdapter.SelectCommand" /> and a <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> object. </summary>
  1859. <param name="selectCommandText">A <see cref="T:System.String" /> that contains a SQL SELECT statement to be used as the <see cref="P:Devart.Data.SQLite.SQLiteCommand.CommandText" /> of the <see cref="P:Devart.Data.SQLite.SQLiteDataAdapter.SelectCommand" /> property of the <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" />. </param>
  1860. <param name="selectConnection">A <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> that represents the connection. </param>
  1861. </member>
  1862. <member name="M:Devart.Data.SQLite.SQLiteDataAdapter.#ctor(System.String,System.String)">
  1863. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" /> class with a <see cref="P:Devart.Data.SQLite.SQLiteDataAdapter.SelectCommand" /> and a connection string. </summary>
  1864. <param name="selectCommandText">A <see cref="T:System.String" /> that is a SELECT statement to be used as the <see cref="P:Devart.Data.SQLite.SQLiteCommand.CommandText" /> of the <see cref="P:Devart.Data.SQLite.SQLiteDataAdapter.SelectCommand" /> property of the <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" /> . </param>
  1865. <param name="selectConnectionString">The connection string. </param>
  1866. </member>
  1867. <member name="P:Devart.Data.SQLite.SQLiteDataAdapter.DeleteCommand">
  1868. <summary>Gets or sets a SQLite statement to delete records from the data set. </summary>
  1869. <keywords>SQLiteDataAdapter.DeleteCommand property </keywords>
  1870. <value>A <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> used during an update operation to delete records in SQLite that correspond to deleted rows in the <see cref="T:System.Data.DataSet" />. </value>
  1871. </member>
  1872. <member name="P:Devart.Data.SQLite.SQLiteDataAdapter.InsertCommand">
  1873. <summary>Gets or sets a SQLite statement to insert new records into the data source. </summary>
  1874. <keywords>SQLiteDataAdapter.InsertCommand property </keywords>
  1875. <value>A <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> used during an update operation to insert records in the data source that correspond to new rows in the <see cref="T:System.Data.DataSet" />. </value>
  1876. </member>
  1877. <member name="E:Devart.Data.SQLite.SQLiteDataAdapter.RowUpdated">
  1878. <summary>Occurs during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> after a command is executed against the data source. The attempt to update is made, so the event fires. </summary>
  1879. <keywords>SQLiteDataAdapter.RowUpdated event </keywords>
  1880. </member>
  1881. <member name="E:Devart.Data.SQLite.SQLiteDataAdapter.RowUpdating">
  1882. <summary>Occurs during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> before a command is executed against the data source. The attempt to update is made, so the event fires. </summary>
  1883. <keywords>SQLiteDataAdapter.RowUpdating event </keywords>
  1884. </member>
  1885. <member name="P:Devart.Data.SQLite.SQLiteDataAdapter.SelectCommand">
  1886. <summary>Gets or sets a SQLite statement used to select records in the data source. </summary>
  1887. <keywords>SQLiteDataAdapter.SelectCommand property </keywords>
  1888. <value>A <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> that is used during a fill operation to select records from the data source for placement in the <see cref="T:System.Data.DataSet" />. </value>
  1889. </member>
  1890. <member name="P:Devart.Data.SQLite.SQLiteDataAdapter.TableMappings">
  1891. <summary>Gets a collection that provides the master mapping between a source table and a <see cref="T:Devart.Data.SQLite.SQLiteDataTable" />. </summary>
  1892. <keywords>SQLiteDataAdapter.TableMappings property </keywords>
  1893. <value>A collection that provides the master mapping between the returned records and the <see cref="T:System.Data.DataSet" />. The default value is an empty collection. </value>
  1894. </member>
  1895. <member name="P:Devart.Data.SQLite.SQLiteDataAdapter.UpdateBatchSize">
  1896. <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>
  1897. <keywords>SQLiteDataAdapter.UpdateBatchSize property </keywords>
  1898. <value>The number of rows to process per batch. </value>
  1899. </member>
  1900. <member name="P:Devart.Data.SQLite.SQLiteDataAdapter.UpdateCommand">
  1901. <summary>Gets or sets a SQLite statement used to update records in the data source. </summary>
  1902. <keywords>SQLiteDataAdapter.UpdateCommand property </keywords>
  1903. <value>A <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> used during an update operation to update records in the data source that correspond to modified rows in the <see cref="T:System.Data.DataSet" />. </value>
  1904. </member>
  1905. <member name="T:Devart.Data.SQLite.SQLiteDataReader">
  1906. <summary>Reads a forward-only stream of rows from SQLite. </summary>
  1907. </member>
  1908. <member name="M:Devart.Data.SQLite.SQLiteDataReader.Close()">
  1909. <summary>Closes the <see cref="T:Devart.Data.SQLite.SQLiteDataReader" /> object. </summary>
  1910. <keywords>SQLiteDataReader.Close method </keywords>
  1911. </member>
  1912. <member name="P:Devart.Data.SQLite.SQLiteDataReader.EndOfData">
  1913. <summary>Indicates whether the <see cref="T:Devart.Data.SQLite.SQLiteDataReader" /> has been read completely. </summary>
  1914. <keywords>SQLiteDataReader.EndOfData property </keywords>
  1915. <value>
  1916. <see langword="true" /> if there is no more data in <see cref="T:Devart.Data.SQLite.SQLiteDataReader" />. This property is <see langword="false" /> if there is more data to read, or there were no data at all. </value>
  1917. </member>
  1918. <member name="P:Devart.Data.SQLite.SQLiteDataReader.FieldCount">
  1919. <summary>Gets the number of columns in the current row. </summary>
  1920. <keywords>SQLiteDataReader.FieldCount property </keywords>
  1921. <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>
  1922. </member>
  1923. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetBoolean(System.Int32)">
  1924. <summary>Gets the value of the specified column as a Boolean. </summary>
  1925. <keywords>SQLiteDataReader.GetBoolean method </keywords>
  1926. <param name="i"> </param>
  1927. <returns>The value of the column. </returns>
  1928. </member>
  1929. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetByte(System.Int32)">
  1930. <summary>Gets the value of the specified column as a byte. </summary>
  1931. <keywords>SQLiteDataReader.GetByte method </keywords>
  1932. <param name="i"> </param>
  1933. <returns>The value of the specified column as a byte. </returns>
  1934. </member>
  1935. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
  1936. <summary>Reads a stream of bytes from the specified column offset into the buffer as an array starting at the given buffer offset. </summary>
  1937. <keywords>SQLiteDataReader.GetBytes method </keywords>
  1938. <param name="i">The zero-based column ordinal. </param>
  1939. <param name="fieldOffset">The index within the field where the read operation is to begin. </param>
  1940. <param name="buffer">The buffer into which to read the stream of bytes. </param>
  1941. <param name="bufferOffset">The index within the buffer where the write operation is to begin. </param>
  1942. <param name="length">The maximum length to copy into the buffer. </param>
  1943. <returns>
  1944. <para>The actual number of bytes read.</para> </returns>
  1945. </member>
  1946. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetChar(System.Int32)">
  1947. <summary>Gets the value of the specified column as a single character. </summary>
  1948. <keywords>SQLiteDataReader.GetChar method </keywords>
  1949. <param name="i"> </param>
  1950. <returns>The value of the specified column as a character. </returns>
  1951. </member>
  1952. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
  1953. <summary>Reads a stream of characters from the specified column offset into the buffer as an array starting at the given buffer offset. </summary>
  1954. <keywords>SQLiteDataReader.GetChars method </keywords>
  1955. <param name="i">The zero-based column ordinal. </param>
  1956. <param name="fieldOffset">The index within the field where the read operation is to begin. </param>
  1957. <param name="buffer">The buffer into which to copy data. </param>
  1958. <param name="bufferOffset">The index within the buffer where the write operation is to begin. </param>
  1959. <param name="length">The maximum number of characters to read. </param>
  1960. <returns>
  1961. <para>The actual number of characters read.</para> </returns>
  1962. </member>
  1963. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetDataTypeName(System.Int32)">
  1964. <summary>Gets the name of the source data type. </summary>
  1965. <keywords>SQLiteDataReader.GetDataTypeName method </keywords>
  1966. <param name="i"> </param>
  1967. <returns>The name of the back-end data type. </returns>
  1968. </member>
  1969. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetDateTime(System.Int32)">
  1970. <summary>Gets the value of the specified column as a <see cref="T:System.DateTime" /> object. </summary>
  1971. <keywords>SQLiteDataReader.GetDateTime method </keywords>
  1972. <param name="i"> </param>
  1973. <returns>The value of the specified column. </returns>
  1974. </member>
  1975. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetDateTimeOffset(System.Int32)">
  1976. <summary>Gets the value of the specified column as an <see cref="T:System.DateTimeOffset" /> object. </summary>
  1977. <keywords>SQLiteDataReader.GetDateTimeOffset method </keywords>
  1978. <param name="i">The zero-based column ordinal. </param>
  1979. <returns>The value of the specified column as an <see cref="T:System.DateTimeOffset" /> object. </returns>
  1980. </member>
  1981. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetDecimal(System.Int32)">
  1982. <summary>Gets the value of the specified column as a <see cref="T:System.Decimal" /> object. </summary>
  1983. <keywords>SQLiteDataReader.GetDecimal method </keywords>
  1984. <param name="i"> </param>
  1985. <returns>The value of the specified column. </returns>
  1986. </member>
  1987. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetDouble(System.Int32)">
  1988. <summary>Gets the value of the specified column as a double-precision floating point number. </summary>
  1989. <keywords>SQLiteDataReader.GetDouble method </keywords>
  1990. <param name="i"> </param>
  1991. <returns>The value of the specified column. </returns>
  1992. </member>
  1993. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetEnumerator()">
  1994. <summary>Fills <see cref="T:System.Collection.IEnumerator" /> object with data from <see cref="T:Devart.Data.SQLite.SQLiteDataReader" />. </summary>
  1995. <keywords>SQLiteDataReader.GetEnumerator method </keywords>
  1996. <returns><see cref="T:System.Collection.IEnumerator" /> object to be populated with data. </returns>
  1997. </member>
  1998. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetFieldType(System.Int32)">
  1999. <summary>Gets the <see cref="T:System.Type" /> that is the data type of the object. </summary>
  2000. <keywords>SQLiteDataReader.GetFieldType method </keywords>
  2001. <param name="i"> </param>
  2002. <returns>The <see cref="T:System.Type" /> that is the data type of the object. </returns>
  2003. </member>
  2004. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetFloat(System.Int32)">
  2005. <summary>Gets the value of the specified column as a single-precision floating point number. </summary>
  2006. <keywords>SQLiteDataReader.GetFloat method </keywords>
  2007. <param name="i"> </param>
  2008. <returns>The value of the specified column. </returns>
  2009. </member>
  2010. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetGuid(System.Int32)">
  2011. <summary>Gets the value of the specified column as a globally-unique identifier (GUID). </summary>
  2012. <keywords>SQLiteDataReader.GetGuid method </keywords>
  2013. <param name="i"> </param>
  2014. <returns>The value of the specified column. </returns>
  2015. </member>
  2016. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetInt16(System.Int32)">
  2017. <summary>Gets the value of the specified column as a 16-bit signed integer. </summary>
  2018. <keywords>SQLiteDataReader.GetInt16 method </keywords>
  2019. <param name="i"> </param>
  2020. <returns>The value of the specified column. </returns>
  2021. </member>
  2022. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetInt32(System.Int32)">
  2023. <summary>Gets the value of the specified column as a 32-bit signed integer. </summary>
  2024. <keywords>SQLiteDataReader.GetInt32 method </keywords>
  2025. <param name="i"> </param>
  2026. <returns>The value of the specified column. </returns>
  2027. </member>
  2028. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetInt64(System.Int32)">
  2029. <summary>Gets the value of the specified column as a 64-bit signed integer. </summary>
  2030. <keywords>SQLiteDataReader.GetInt64 method </keywords>
  2031. <param name="i"> </param>
  2032. <returns>The value of the specified column. </returns>
  2033. </member>
  2034. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetName(System.Int32)">
  2035. <summary>Gets the name of the specified column. </summary>
  2036. <keywords>SQLiteDataReader.GetName method </keywords>
  2037. <param name="i">The zero-based column ordinal. </param>
  2038. <returns>A string that is the name of the specified column. </returns>
  2039. </member>
  2040. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetOrdinal(System.String)">
  2041. <summary>Gets the column ordinal, given the name of the column. </summary>
  2042. <keywords>SQLiteDataReader.GetOrdinal method </keywords>
  2043. <param name="name">The name of the column. </param>
  2044. </member>
  2045. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetProviderSpecificFieldType(System.Int32)">
  2046. <summary>Gets the <see cref="T:System.Type" /> that is the provider-specific data type of the object. </summary>
  2047. <keywords>SQLiteDataReader.GetProviderSpecificFieldType method </keywords>
  2048. <param name="i"> </param>
  2049. <returns>The <see cref="T:System.Type" /> that is the provider-specific data type of the object. </returns>
  2050. </member>
  2051. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetProviderSpecificValue(System.Int32)">
  2052. <summary>Gets the value of the specified column. If possible, a provider-specific type is used. </summary>
  2053. <keywords>SQLiteDataReader.GetProviderSpecificValue method </keywords>
  2054. <param name="i"> </param>
  2055. <returns>The value to return. </returns>
  2056. </member>
  2057. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetProviderSpecificValues(System.Object[])">
  2058. <summary>Gets all column values for the current row. If possible, a provider-specific type is used. </summary>
  2059. <keywords>SQLiteDataReader.GetProviderSpecificValues method </keywords>
  2060. <param name="values">An array of <see cref="T:System.Object" /> into which to copy the column values. </param>
  2061. <returns>The number of instances of <see cref="T:System.Object" /> in the array. </returns>
  2062. </member>
  2063. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetSQLiteBlob(System.Int32)">
  2064. <summary>Gets the value of the specified column as a <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> object. </summary>
  2065. <keywords>SQLiteDataReader.GetSQLiteBlob method </keywords>
  2066. <param name="i">The zero-based column ordinal. </param>
  2067. <returns>The value of the specified column as a <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> object. </returns>
  2068. <overloads>Gets the value of the specified column as a <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> object. </overloads>
  2069. </member>
  2070. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetSQLiteBlob(System.String)">
  2071. <summary>Gets the value of the specified column as a <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> object. </summary>
  2072. <keywords>SQLiteDataReader.GetSQLiteBlob method </keywords>
  2073. <param name="name">The name of the column to get value of. </param>
  2074. <returns>The value of the specified column as a <see cref="T:Devart.Data.SQLite.SQLiteBlob" /> object. </returns>
  2075. </member>
  2076. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetSQLiteDateTime(System.Int32)">
  2077. <summary>Gets the value of the specified column as a <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> object. </summary>
  2078. <keywords>SQLiteDataReader.GetSQLiteDateTime method </keywords>
  2079. <param name="i">The zero-based column ordinal. </param>
  2080. <returns>The value of the specified column as a <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> object. </returns>
  2081. <overloads>Gets the value of the specified column as a <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> object. </overloads>
  2082. </member>
  2083. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetSQLiteDateTime(System.String)">
  2084. <summary>Gets the value of the specified column as a <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> object. </summary>
  2085. <keywords>SQLiteDataReader.GetSQLiteDateTime method </keywords>
  2086. <param name="name">The name of the column to get value of. </param>
  2087. <returns>The value of the specified column as a <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> object. </returns>
  2088. </member>
  2089. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetSQLiteText(System.Int32)">
  2090. <summary>Gets the value of the specified column as a <see cref="T:Devart.Data.SQLite.SQLiteText" /> object. </summary>
  2091. <keywords>SQLiteDataReader.GetSQLiteText method </keywords>
  2092. <param name="i">The zero-based column ordinal. </param>
  2093. <returns>The value of the specified column as a <see cref="T:Devart.Data.SQLite.SQLiteDataText" /> object. </returns>
  2094. <overloads>Gets the value of the specified column as a <see cref="T:Devart.Data.SQLite.SQLiteText" /> object. </overloads>
  2095. </member>
  2096. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetSQLiteText(System.String)">
  2097. <summary>Gets the value of the specified column as a <see cref="T:Devart.Data.SQLite.SQLiteText" /> object. </summary>
  2098. <keywords>SQLiteDataReader.GetSQLiteText method </keywords>
  2099. <param name="name">The name of the column to get value of. </param>
  2100. <returns>The value of the specified column as a <see cref="T:Devart.Data.SQLite.SQLiteDataText" /> object. </returns>
  2101. </member>
  2102. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetSQLiteType(System.Int32)">
  2103. <summary>Gets the value of the specified column as a <see cref="T:Devart.Data.SQLite.SQLiteType" /> object. </summary>
  2104. <keywords>SQLiteDataReader.GetSQLiteType method </keywords>
  2105. <param name="i">The zero-based column ordinal. </param>
  2106. <returns>The value of the specified column as a <see cref="T:Devart.Data.SQLite.SQLiteType" /> object. </returns>
  2107. <overloads>Gets the value of the specified column as a <see cref="T:Devart.Data.SQLite.SQLiteType" /> object. </overloads>
  2108. </member>
  2109. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetSQLiteType(System.String)">
  2110. <summary>Gets the value of the specified column as a <see cref="T:Devart.Data.SQLite.SQLiteType" /> object. </summary>
  2111. <keywords>SQLiteDataReader.GetSQLiteType method </keywords>
  2112. <param name="name">The name of the column to get value of. </param>
  2113. <returns>The value of the specified column as a <see cref="T:Devart.Data.SQLite.SQLiteType" /> object. </returns>
  2114. </member>
  2115. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetSchemaTable()">
  2116. <summary>Returns a <see cref="T:Devart.Data.SQLite.SQLiteDataReader" /> that describes the column metadata of the <see cref="T:Devart.Data.SQLite.SQLiteDataReader" />. </summary>
  2117. <keywords>SQLiteDataReader.GetSchemaTable method </keywords>
  2118. <returns>A <see cref="T:System.Data.DataTable" /> that describes the column metadata. </returns>
  2119. </member>
  2120. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetString(System.Int32)">
  2121. <summary>Gets the value of the specified column as a string. </summary>
  2122. <keywords>SQLiteDataReader.GetString method </keywords>
  2123. <param name="i"> </param>
  2124. <returns>The value of the specified column. </returns>
  2125. </member>
  2126. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetTimeSpan(System.Int32)">
  2127. <summary>Gets the value of the specified column as a <see cref="T:System.TimeSpan" /> object. </summary>
  2128. <keywords>SQLiteDataReader.GetTimeSpan method </keywords>
  2129. <param name="i">The zero-based column ordinal. </param>
  2130. <returns>The value of the specified column as a <see cref="T:System.TimeSpan" /> object. </returns>
  2131. <overloads>Gets the value of the specified column as a <see cref="T:System.TimeSpan" /> object. </overloads>
  2132. </member>
  2133. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetTimeSpan(System.String)">
  2134. <summary>Gets the value of the specified column as a <see cref="T:System.TimeSpan" /> object. </summary>
  2135. <keywords>SQLiteDataReader.GetTimeSpan method </keywords>
  2136. <param name="name">The name of the column to get value of. </param>
  2137. <returns>The value of the specified column as a <see cref="T:System.TimeSpan" /> object. </returns>
  2138. </member>
  2139. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetValue(System.Int32)">
  2140. <summary>Gets the value of the specified column in its native format. </summary>
  2141. <keywords>SQLiteDataReader.GetValue method </keywords>
  2142. <param name="i"> </param>
  2143. <returns>The value to return. </returns>
  2144. </member>
  2145. <member name="M:Devart.Data.SQLite.SQLiteDataReader.GetValues(System.Object[])">
  2146. <summary>Gets all column values for the current row. </summary>
  2147. <keywords>SQLiteDataReader.GetValues method </keywords>
  2148. <param name="values">An array of <see cref="T:System.Object" /> into which to copy the attribute column values. </param>
  2149. <returns>The number of instances of <see cref="T:System.Object" /> in the array. </returns>
  2150. </member>
  2151. <member name="P:Devart.Data.SQLite.SQLiteDataReader.HasRows">
  2152. <summary>Gets a value indicating whether the <see cref="T:Devart.Data.SQLite.SQLiteDataReader" /> contains one or more rows. </summary>
  2153. <keywords>SQLiteDataReader.HasRows property </keywords>
  2154. <value>
  2155. <see langword="true" /> if the <see cref="T:Devart.Data.SQLite.SQLiteDataReader" /> contains one or more rows; otherwise, <see langword="false" />. </value>
  2156. </member>
  2157. <member name="M:Devart.Data.SQLite.SQLiteDataReader.IsDBNull(System.Int32)">
  2158. <summary>Gets a value indicating whether the column contains non-existent or missing values. </summary>
  2159. <keywords>SQLiteDataReader.IsDBNull method </keywords>
  2160. <param name="i"> </param>
  2161. <returns>
  2162. <see langword="true" /> if the specified column value is equivalent to <see cref="T:System.DBNull" />; otherwise, <see langword="false" />. </returns>
  2163. </member>
  2164. <member name="M:Devart.Data.SQLite.SQLiteDataReader.NextResult()">
  2165. <summary>Advances the data reader to the next result, when reading the results of batch SQL statements. </summary>
  2166. <keywords>SQLiteDataReader.NextResult method </keywords>
  2167. <returns>
  2168. <see langword="true" /> if there are more result sets; otherwise, <see langword="false" />. </returns>
  2169. </member>
  2170. <member name="M:Devart.Data.SQLite.SQLiteDataReader.Read()">
  2171. <summary>Advances the <see cref="T:Devart.Data.SQLite.SQLiteDataReader" /> to the next record. </summary>
  2172. <keywords>SQLiteDataReader.Read method </keywords>
  2173. <returns>
  2174. <see langword="true" /> if there are more rows; otherwise, <see langword="false" />. </returns>
  2175. </member>
  2176. <member name="P:Devart.Data.SQLite.SQLiteDataReader.RecordsAffected">
  2177. <summary>Gets the number of rows changed, inserted, or deleted by execution of the SQL statement. </summary>
  2178. <keywords>SQLiteDataReader.RecordsAffected property </keywords>
  2179. <value>The number of rows changed, inserted, or deleted. -1 for SELECT statements; 0 if no rows were affected, or the statement failed. </value>
  2180. </member>
  2181. <member name="T:Devart.Data.SQLite.SQLiteDataSet">
  2182. <summary>Represents an in-memory cache of data with support for SQLite-specific features. </summary>
  2183. </member>
  2184. <member name="M:Devart.Data.SQLite.SQLiteDataSet.#ctor()">
  2185. <summary>Initializes a new instance of a <see cref="T:Devart.Data.SQLite.SQLiteDataSet" /> class with the given name. </summary>
  2186. </member>
  2187. <member name="M:Devart.Data.SQLite.SQLiteDataSet.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext,System.Boolean)">
  2188. <summary>This API supports the .NET Framework infrastructure and is not intended to be used directly from your code. </summary>
  2189. <param name="info"> </param>
  2190. <param name="context"> </param>
  2191. <param name="ConstructSchema"> </param>
  2192. </member>
  2193. <member name="P:Devart.Data.SQLite.SQLiteDataSet.Connection">
  2194. <summary>Associated <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see>. </summary>
  2195. <keywords>SQLiteDataSet.Connection property </keywords>
  2196. <value>
  2197. <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> used by <see cref="T:Devart.Data.SQLite.SQLiteDataSet" />. </value>
  2198. </member>
  2199. <member name="M:Devart.Data.SQLite.SQLiteDataSet.CreateDataTable()">
  2200. <summary>Creates and returns new <see cref="T:Devart.Data.SQLite.SQLiteDataTable" /> object. </summary>
  2201. <keywords>SQLiteDataSet.CreateDataTable method </keywords>
  2202. <returns>The new <see cref="T:Devart.Data.SQLite.SQLiteDataTable" /> object. </returns>
  2203. </member>
  2204. <member name="P:Devart.Data.SQLite.SQLiteDataSet.Relations">
  2205. <summary>Gets the collection of relations within the <see cref="T:Devart.Data.SQLite.SQLiteDataSet" /> </summary>
  2206. <keywords>SQLiteDataSet.Relations property </keywords>
  2207. <value>The collection of relations. </value>
  2208. </member>
  2209. <member name="P:Devart.Data.SQLite.SQLiteDataSet.Tables">
  2210. <summary>Gets collection of tables </summary>
  2211. <keywords>SQLiteDataSet.Tables property </keywords>
  2212. <value>Collection of tables in DataSet </value>
  2213. </member>
  2214. <member name="T:Devart.Data.SQLite.SQLiteDataTable">
  2215. <summary>Represents a single object that provides all of the functionality needed to retrieve and manipulate data from a SQLite data source. </summary>
  2216. </member>
  2217. <member name="M:Devart.Data.SQLite.SQLiteDataTable.#ctor()">
  2218. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDataTable" /> class. </summary>
  2219. <overloads>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDataTable" /> class. </overloads>
  2220. </member>
  2221. <member name="M:Devart.Data.SQLite.SQLiteDataTable.#ctor(Devart.Data.SQLite.SQLiteCommand)">
  2222. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDataTable" /> class. </summary>
  2223. <param name="selectCommand">A <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> object used to select rows from the data source. </param>
  2224. </member>
  2225. <member name="M:Devart.Data.SQLite.SQLiteDataTable.#ctor(Devart.Data.SQLite.SQLiteCommand,Devart.Data.SQLite.SQLiteConnection)">
  2226. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDataTable" /> class. </summary>
  2227. <param name="selectCommand">A <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> object used to select rows from the data source. </param>
  2228. <param name="connection">A <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> used to connect to the data source. </param>
  2229. </member>
  2230. <member name="M:Devart.Data.SQLite.SQLiteDataTable.#ctor(System.String)">
  2231. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDataTable" /> class. </summary>
  2232. <param name="tableName">Name of the table to work with. </param>
  2233. </member>
  2234. <member name="M:Devart.Data.SQLite.SQLiteDataTable.#ctor(System.String,Devart.Data.SQLite.SQLiteConnection)">
  2235. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDataTable" /> class. </summary>
  2236. <param name="selectCommandText">The text of the selection command. </param>
  2237. <param name="connection">A <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> used to connect to the data source. </param>
  2238. </member>
  2239. <member name="M:Devart.Data.SQLite.SQLiteDataTable.#ctor(System.String,System.String)">
  2240. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDataTable" /> class. </summary>
  2241. <param name="selectCommandText">The text of the selection command. </param>
  2242. <param name="connectionString">Connection string used to connect to the data source. </param>
  2243. </member>
  2244. <member name="M:Devart.Data.SQLite.SQLiteDataTable.Clone()">
  2245. <summary>Clones the current instance of <see cref="T:Devart.Data.SQLite.SQLiteDataTable" />. </summary>
  2246. <keywords>SQLiteDataTable.Clone method </keywords>
  2247. <returns>A new instance of <see cref="T:Devart.Data.SQLite.SQLiteDataTable" />. </returns>
  2248. </member>
  2249. <member name="P:Devart.Data.SQLite.SQLiteDataTable.Connection">
  2250. <summary>Gets or sets the <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> used to connect to the data source. </summary>
  2251. <keywords>SQLiteDataTable.Connection property </keywords>
  2252. <value>A <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> object which provides a connection to the data source. </value>
  2253. </member>
  2254. <member name="P:Devart.Data.SQLite.SQLiteDataTable.DeleteCommand">
  2255. <summary>Gets or sets a SQLite statement to delete records from the data set. </summary>
  2256. <keywords>SQLiteDataTable.DeleteCommand property </keywords>
  2257. <value>A <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> 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>
  2258. </member>
  2259. <member name="P:Devart.Data.SQLite.SQLiteDataTable.InsertCommand">
  2260. <summary>Gets or sets a SQLite statement to insert new records into the data source. </summary>
  2261. <keywords>SQLiteDataTable.InsertCommand property </keywords>
  2262. <value>A <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> used during an update operation to insert records in the data source that correspond to new rows in the <see cref="T:System.Data.DataSet" />. </value>
  2263. </member>
  2264. <member name="P:Devart.Data.SQLite.SQLiteDataTable.RefreshMode">
  2265. <summary>This feature is not supported in dotConnect for SQLite. </summary>
  2266. <keywords>SQLiteDataTable.RefreshMode property </keywords>
  2267. </member>
  2268. <member name="P:Devart.Data.SQLite.SQLiteDataTable.RefreshingFields">
  2269. <summary>Gets or sets list of fields whose values should be retrieved after a DML statement execution. </summary>
  2270. <keywords>SQLiteDataTable.RefreshingFields property </keywords>
  2271. <value>The string containing list of field names separated by semicolon. </value>
  2272. </member>
  2273. <member name="E:Devart.Data.SQLite.SQLiteDataTable.RowUpdated">
  2274. <summary>Occurs during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> after a command is executed against the data source. The attempt to update is made, so the event fires. </summary>
  2275. <keywords>SQLiteDataTable.RowUpdated event </keywords>
  2276. </member>
  2277. <member name="E:Devart.Data.SQLite.SQLiteDataTable.RowUpdating">
  2278. <summary>Occurs during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)" /> before a command is executed against the data source. The attempt to update is made, so the event fires. </summary>
  2279. <keywords>SQLiteDataTable.RowUpdating event </keywords>
  2280. </member>
  2281. <member name="P:Devart.Data.SQLite.SQLiteDataTable.SelectCommand">
  2282. <summary>Gets or sets a SQLite statement used to select records in the data source. </summary>
  2283. <keywords>SQLiteDataTable.SelectCommand property </keywords>
  2284. <value>A <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> that is used during a fill operation to select records from the data source for placement in the <see cref="T:System.Data.DataSet" />. </value>
  2285. </member>
  2286. <member name="P:Devart.Data.SQLite.SQLiteDataTable.TableMapping">
  2287. <summary>Gets a <see cref="T:System.Data.Common.DataTableMapping" /> object that provides the master mapping between a source table and a <see cref="T:Devart.Data.SQLite.SQLiteDataTable" />. </summary>
  2288. <keywords>SQLiteDataTable.TableMapping property </keywords>
  2289. <value>A <see cref="T:System.Data.Common.DataTableMapping" /> object that provides the master mapping between the returned records and the <see cref="T:Devart.Data.SQLite.SQLiteDataTable" />. </value>
  2290. </member>
  2291. <member name="P:Devart.Data.SQLite.SQLiteDataTable.UpdateCommand">
  2292. <summary>Gets or sets a SQLite statement used to update records in the data source. </summary>
  2293. <keywords>SQLiteDataTable.UpdateCommand property </keywords>
  2294. <value>A <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> used during an update operation to update records in the data source that correspond to modified rows in the <see cref="T:System.Data.DataSet" />. </value>
  2295. </member>
  2296. <member name="P:Devart.Data.SQLite.SQLiteDataTable.UpdatingFields">
  2297. <summary>Gets or sets string containing list of field names used to generate update commands. </summary>
  2298. <keywords>SQLiteDataTable.UpdatingFields property </keywords>
  2299. <value>The string containing list of field names separated by semicolon. </value>
  2300. </member>
  2301. <member name="P:Devart.Data.SQLite.SQLiteDataTable.UpdatingKeyFields">
  2302. <summary>Gets or sets string containing list of key field names separated by semicolon. They are used to generate update commands. </summary>
  2303. <keywords>SQLiteDataTable.UpdatingKeyFields property </keywords>
  2304. <value>The string containing list of key field names separated by semicolon. </value>
  2305. </member>
  2306. <member name="P:Devart.Data.SQLite.SQLiteDataTable.UpdatingTable">
  2307. <summary>Gets or sets table name to generate update statements for. </summary>
  2308. <keywords>SQLiteDataTable.UpdatingTable property </keywords>
  2309. <value>The name of the table. </value>
  2310. </member>
  2311. <member name="T:Devart.Data.SQLite.SQLiteDateFormats">
  2312. <summary>Determines the format of datetime fields. </summary>
  2313. </member>
  2314. <member name="F:Devart.Data.SQLite.SQLiteDateFormats.ISO8601">
  2315. <summary>Datetime fields are formatted according to ISO8601. </summary>
  2316. </member>
  2317. <member name="F:Devart.Data.SQLite.SQLiteDateFormats.Ticks">
  2318. <summary>Datetime are expressed as ticks. </summary>
  2319. </member>
  2320. <member name="T:Devart.Data.SQLite.SQLiteDateTime">
  2321. <summary>Represents the SQLite datetime data type. </summary>
  2322. </member>
  2323. <member name="M:Devart.Data.SQLite.SQLiteDateTime.#ctor(System.DateTime)">
  2324. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure with the specified <see cref="T:System.DateTime" />. </summary>
  2325. <param name="value">The specified <see cref="T:System.DateTime" />. </param>
  2326. <overloads>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </overloads>
  2327. </member>
  2328. <member name="M:Devart.Data.SQLite.SQLiteDateTime.#ctor(System.DateTime,System.Int32,System.Int32)">
  2329. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure with the specified <see cref="T:System.DateTime" />, and time zone offset in hours and minutes. </summary>
  2330. <param name="value">The specified <see cref="T:System.DateTime" /> value. </param>
  2331. <param name="tzhour">The hours part of time zone offset relative to UTC. </param>
  2332. <param name="tzminute">The minutes part of time zone offset relative to UTC. </param>
  2333. </member>
  2334. <member name="M:Devart.Data.SQLite.SQLiteDateTime.#ctor(System.DateTime,System.TimeSpan)">
  2335. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure with the specified <see cref="T:System.DateTime" />, and time zone offset, specified as <see cref="T:System.TimeSpan" />. </summary>
  2336. <param name="value">The specified <see cref="T:System.DateTime" /> value. </param>
  2337. <param name="timeZone">The specified time zone offset. </param>
  2338. </member>
  2339. <member name="M:Devart.Data.SQLite.SQLiteDateTime.#ctor(System.Int32,System.Int32,System.Int32)">
  2340. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure with the specified year, month, and day. </summary>
  2341. <param name="year">The specified year. </param>
  2342. <param name="month">The specified month. </param>
  2343. <param name="day">The specified day. </param>
  2344. </member>
  2345. <member name="M:Devart.Data.SQLite.SQLiteDateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  2346. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure with the specified year, month, day, hour, minute, and second. </summary>
  2347. <param name="year">The specified year. </param>
  2348. <param name="month">The specified month. </param>
  2349. <param name="day">The specified day. </param>
  2350. <param name="hour">The specified hour. </param>
  2351. <param name="minute">The specified minute. </param>
  2352. <param name="second">The specified second. </param>
  2353. </member>
  2354. <member name="M:Devart.Data.SQLite.SQLiteDateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  2355. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure with the specified year, month, day, hour, minute, second, and microsecond. </summary>
  2356. <param name="year">The specified year. </param>
  2357. <param name="month">The specified month. </param>
  2358. <param name="day">The specified day. </param>
  2359. <param name="hour">The specified hour. </param>
  2360. <param name="minute">The specified minute. </param>
  2361. <param name="second">The specified second. </param>
  2362. <param name="microsecond">The specified microsecond. </param>
  2363. </member>
  2364. <member name="M:Devart.Data.SQLite.SQLiteDateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  2365. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure with the specified year, month, day, hour, minute, second, and microsecond and with time zone offset in hours and minutes. </summary>
  2366. <param name="year">The specified year. </param>
  2367. <param name="month">The specified month. </param>
  2368. <param name="day">The specified day. </param>
  2369. <param name="hour">The specified hour. </param>
  2370. <param name="minute">The specified minute. </param>
  2371. <param name="second">The specified second. </param>
  2372. <param name="microsecond">The specified microsecond. </param>
  2373. <param name="tzhour">The hours part of time zone offset relative to UTC. </param>
  2374. <param name="tzminute">The minutes part of time zone offset relative to UTC. </param>
  2375. </member>
  2376. <member name="M:Devart.Data.SQLite.SQLiteDateTime.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.TimeSpan)">
  2377. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure with the specified year, month, day, hour, minute, second, and microsecond and with time zone offset, specified as <see cref="T:System.TimeSpan" />. </summary>
  2378. <param name="year">The specified year. </param>
  2379. <param name="month">The specified month. </param>
  2380. <param name="day">The specified day. </param>
  2381. <param name="hour">The specified hour. </param>
  2382. <param name="minute">The specified minute. </param>
  2383. <param name="second">The specified second. </param>
  2384. <param name="microsecond">The specified microsecond. </param>
  2385. <param name="timeZone">The specified time zone offset. </param>
  2386. </member>
  2387. <member name="M:Devart.Data.SQLite.SQLiteDateTime.#ctor(System.Int32,System.Int32,System.Int32,System.TimeSpan)">
  2388. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure with the specified year, month, and day and with time zone offset, specified as <see cref="T:System.TimeSpan" />. </summary>
  2389. <param name="year">The specified year. </param>
  2390. <param name="month">The specified month. </param>
  2391. <param name="day">The specified day. </param>
  2392. <param name="timeZone">The specified time zone offset. </param>
  2393. </member>
  2394. <member name="M:Devart.Data.SQLite.SQLiteDateTime.#ctor(System.Int32,System.Int64)">
  2395. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure with the specified total number of days and microseconds. </summary>
  2396. <param name="days">The specified number of days in the date part of the structure. </param>
  2397. <param name="timeTicks">The specified number of ticks in the time part of the structure. </param>
  2398. </member>
  2399. <member name="M:Devart.Data.SQLite.SQLiteDateTime.#ctor(System.Int32,System.Int64,System.Int32,System.Int32)">
  2400. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure with the specified total number of days and microseconds and with time zone offset in hours and minutes. </summary>
  2401. <param name="days">The specified number of days in the date part of the structure. </param>
  2402. <param name="timeTicks">The specified number of ticks in the time part of the structure. </param>
  2403. <param name="tzhour">The hours part of time zone offset relative to UTC. </param>
  2404. <param name="tzminute">The minutes part of time zone offset relative to UTC. </param>
  2405. </member>
  2406. <member name="M:Devart.Data.SQLite.SQLiteDateTime.#ctor(System.Int32,System.Int64,System.TimeSpan)">
  2407. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure with the specified total number of days and microseconds and with time zone offset, specified as <see cref="T:System.TimeSpan" />. </summary>
  2408. <param name="days">The specified number of days in the date part of the structure. </param>
  2409. <param name="timeTicks">The specified number of ticks in the time part of the structure. </param>
  2410. <param name="timeZone">The specified time zone offset. </param>
  2411. </member>
  2412. <member name="M:Devart.Data.SQLite.SQLiteDateTime.Add(Devart.Data.SQLite.SQLiteDateTime,System.TimeSpan)">
  2413. <summary>Adds a <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> to a <see cref="T:System.TimeSpan" /> structure. </summary>
  2414. <keywords>SQLiteDateTime.Add method </keywords>
  2415. <param name="x">The first item to add. </param>
  2416. <param name="t">The second item to add. </param>
  2417. <returns>The new <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> that represents sum of the two arguments. </returns>
  2418. </member>
  2419. <member name="M:Devart.Data.SQLite.SQLiteDateTime.AddDays(System.Double)">
  2420. <summary>Adds the specified number of days to the current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> instance. </summary>
  2421. <keywords>SQLiteDateTime.AddDays method </keywords>
  2422. <param name="value">The number of days to add. </param>
  2423. <returns>A new <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </returns>
  2424. </member>
  2425. <member name="M:Devart.Data.SQLite.SQLiteDateTime.AddHours(System.Double)">
  2426. <summary>Adds the specified number of hours to the current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> instance. </summary>
  2427. <keywords>SQLiteDateTime.AddHours method </keywords>
  2428. <param name="value">The number of hours to add. </param>
  2429. <returns>A new <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </returns>
  2430. </member>
  2431. <member name="M:Devart.Data.SQLite.SQLiteDateTime.AddMicroseconds(System.Int64)">
  2432. <summary>Adds the specified number of microseconds to the current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> instance. </summary>
  2433. <keywords>SQLiteDateTime.AddMicroseconds method </keywords>
  2434. <param name="value">The specified number of microseconds. </param>
  2435. <returns>A new <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </returns>
  2436. </member>
  2437. <member name="M:Devart.Data.SQLite.SQLiteDateTime.AddMinutes(System.Double)">
  2438. <summary>Adds the specified number of minutes to the current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> instance. </summary>
  2439. <keywords>SQLiteDateTime.AddMinutes method </keywords>
  2440. <param name="value">The number of minutes to add. </param>
  2441. <returns>A new <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </returns>
  2442. </member>
  2443. <member name="M:Devart.Data.SQLite.SQLiteDateTime.AddMonths(System.Int32)">
  2444. <summary>Adds the specified number of months to the current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> instance. </summary>
  2445. <keywords>SQLiteDateTime.AddMonths method </keywords>
  2446. <param name="months">The specified number of months. </param>
  2447. <returns>A new <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </returns>
  2448. </member>
  2449. <member name="M:Devart.Data.SQLite.SQLiteDateTime.AddSeconds(System.Double)">
  2450. <summary>Adds the specified number of seconds to the current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> instance. </summary>
  2451. <keywords>SQLiteDateTime.AddSeconds method </keywords>
  2452. <param name="value">The number of seconds to add. </param>
  2453. <returns>A new <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </returns>
  2454. </member>
  2455. <member name="M:Devart.Data.SQLite.SQLiteDateTime.AddYears(System.Int32)">
  2456. <summary>Adds the specified number of years to the current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> instance. </summary>
  2457. <keywords>SQLiteDateTime.AddYears method </keywords>
  2458. <param name="years">The specified number of years. </param>
  2459. <returns>A new <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </returns>
  2460. </member>
  2461. <member name="M:Devart.Data.SQLite.SQLiteDateTime.CompareTo(Devart.Data.SQLite.SQLiteDateTime)">
  2462. <summary>Compares the current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> object to the specified <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> and returns an integer that represents their relative values. </summary>
  2463. <keywords>SQLiteDateTime.CompareTo method </keywords>
  2464. <param name="value">A <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value to compare with. </param>
  2465. <returns>A signed number indicating the relative values of the current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure and the object.
  2466. <list type="table">
  2467. <listheader>
  2468. <term>Return Value</term>
  2469. <description>Condition</description>
  2470. </listheader>
  2471. <item>
  2472. <term>Less than zero</term>
  2473. <description>The value of the current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> is less than the argument.</description>
  2474. </item>
  2475. <item>
  2476. <term>Zero</term>
  2477. <description>The current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> is the same to the argument.</description>
  2478. </item>
  2479. <item>
  2480. <term>Greater than zero</term>
  2481. <description>The current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> is greater than the argument.</description>
  2482. </item>
  2483. </list> </returns>
  2484. <overloads>Compares the current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> object to the specified object. </overloads>
  2485. </member>
  2486. <member name="M:Devart.Data.SQLite.SQLiteDateTime.CompareTo(System.Object)">
  2487. <summary>Compares the current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> object to the specified object and returns an integer that represents their relative values. </summary>
  2488. <keywords>SQLiteDateTime.CompareTo method </keywords>
  2489. <param name="value">An object value to compare with. </param>
  2490. <returns>A signed number indicating the relative values of the current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure and the object.
  2491. <list type="table">
  2492. <listheader>
  2493. <term>Return Value</term>
  2494. <description>Condition</description>
  2495. </listheader>
  2496. <item>
  2497. <term>Less than zero</term>
  2498. <description>The value of the current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> is less than the argument.</description>
  2499. </item>
  2500. <item>
  2501. <term>Zero</term>
  2502. <description>The current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> is the same to the argument.</description>
  2503. </item>
  2504. <item>
  2505. <term>Greater than zero</term>
  2506. <description>The current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> is greater than the argument.</description>
  2507. </item>
  2508. </list> </returns>
  2509. </member>
  2510. <member name="P:Devart.Data.SQLite.SQLiteDateTime.Day">
  2511. <summary>Gets the day component of a <see cref="T:Devart.Data.SQLite.SQLiteDateTime" />. </summary>
  2512. <keywords>SQLiteDateTime.Day property </keywords>
  2513. <value>A number that represents a day value between 1 and 31. </value>
  2514. </member>
  2515. <member name="P:Devart.Data.SQLite.SQLiteDateTime.DayOfWeek">
  2516. <summary>Returns the day of a week that corresponds to the current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </summary>
  2517. <keywords>SQLiteDateTime.DayOfWeek property </keywords>
  2518. <value>One of the <see cref="T:System.DayOfWeek" /> values. </value>
  2519. </member>
  2520. <member name="P:Devart.Data.SQLite.SQLiteDateTime.DayOfYear">
  2521. <summary>Returns ordinal of the day in a year that corresponds to the current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </summary>
  2522. <keywords>SQLiteDateTime.DayOfYear property </keywords>
  2523. <value>The day's ordinal. </value>
  2524. </member>
  2525. <member name="P:Devart.Data.SQLite.SQLiteDateTime.Days">
  2526. <summary>Gets the number of days in the date part of the structure (days since January 24.11.4714 BC). </summary>
  2527. <keywords>SQLiteDateTime.Days property </keywords>
  2528. <value>The number of days in the date part of the structure. The value includes years and months expressed in days. Zero value corresponds to the <see cref="F:Devart.Data.SQLite.SQLiteDateTime.MinValue" />. </value>
  2529. </member>
  2530. <member name="M:Devart.Data.SQLite.SQLiteDateTime.DaysInMonth(System.Int32,System.Int32)">
  2531. <summary>Returns the number of days in the specified month and year. </summary>
  2532. <keywords>SQLiteDateTime.DaysInMonth method </keywords>
  2533. <param name="year">The year. </param>
  2534. <param name="month">The month (a number ranging from 1 to 12). </param>
  2535. <returns>The number of days in the specified month and year. </returns>
  2536. </member>
  2537. <member name="F:Devart.Data.SQLite.SQLiteDateTime.Epoch">
  2538. <summary>Returns the date 1970-01-01 00:00:00-00. </summary>
  2539. <keywords>SQLiteDateTime.Epoch field </keywords>
  2540. </member>
  2541. <member name="M:Devart.Data.SQLite.SQLiteDateTime.Equals(Devart.Data.SQLite.SQLiteDateTime,Devart.Data.SQLite.SQLiteDateTime)">
  2542. <summary>Determines whether two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> values are equal. </summary>
  2543. <keywords>SQLiteDateTime.Equals method </keywords>
  2544. <param name="x">A <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value to compare. </param>
  2545. <param name="y">A <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value to compare. </param>
  2546. <returns><see langword="true" /> if two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> values are equal; otherwise, <see langword="false" />. </returns>
  2547. <overloads>Compares two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structures to determine if they are equal. </overloads>
  2548. </member>
  2549. <member name="M:Devart.Data.SQLite.SQLiteDateTime.Equals(System.Object)">
  2550. <summary>Compares the specified object parameter to the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </summary>
  2551. <keywords>SQLiteDateTime.Equals method </keywords>
  2552. <param name="value">The object to be compared. </param>
  2553. <returns><see langword="true" /> if object is an instance of the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> and has the same date and time; otherwise, <see langword="false" />. </returns>
  2554. </member>
  2555. <member name="M:Devart.Data.SQLite.SQLiteDateTime.GetHashCode()">
  2556. <summary>Gets a hash code for the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> instance. </summary>
  2557. <keywords>SQLiteDateTime.GetHashCode method </keywords>
  2558. <returns>A 32-bit signed integer hash code. </returns>
  2559. </member>
  2560. <member name="M:Devart.Data.SQLite.SQLiteDateTime.GreaterThan(Devart.Data.SQLite.SQLiteDateTime,Devart.Data.SQLite.SQLiteDateTime)">
  2561. <summary>Determines whether the first of two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> values is greater than the second. </summary>
  2562. <keywords>SQLiteDateTime.GreaterThan method </keywords>
  2563. <param name="x">The first <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2564. <param name="y">The second <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2565. <returns><see langword="true" /> if the first of two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> values is greater than the second; otherwise, <see langword="false" />. </returns>
  2566. </member>
  2567. <member name="M:Devart.Data.SQLite.SQLiteDateTime.GreaterThanOrEqual(Devart.Data.SQLite.SQLiteDateTime,Devart.Data.SQLite.SQLiteDateTime)">
  2568. <summary>Determines whether the first of two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> values is greater than or equal to the second. </summary>
  2569. <keywords>SQLiteDateTime.GreaterThanOrEqual method </keywords>
  2570. <param name="x">The first <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2571. <param name="y">The second <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2572. <returns><see langword="true" /> if the first of two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> values is greater than or equal to the second; otherwise, <see langword="false" />. </returns>
  2573. </member>
  2574. <member name="P:Devart.Data.SQLite.SQLiteDateTime.Hour">
  2575. <summary>Gets the hour component of a <see cref="T:Devart.Data.SQLite.SQLiteDateTime" />. </summary>
  2576. <keywords>SQLiteDateTime.Hour property </keywords>
  2577. <value>A number that represents an hour value between 0 and 23. </value>
  2578. </member>
  2579. <member name="P:Devart.Data.SQLite.SQLiteDateTime.IsDate">
  2580. <summary>Determines whether the current structure value represents only date (without time value). </summary>
  2581. <keywords>SQLiteDateTime.IsDate property </keywords>
  2582. <value><see langword="true" /> if the <see cref="P:Devart.Data.SQLite.SQLiteDateTime.Value" /> represents a date without the time part; otherwise, <see langword="false" />. </value>
  2583. </member>
  2584. <member name="P:Devart.Data.SQLite.SQLiteDateTime.IsFinite">
  2585. <summary>Indicates whether the current structure value is finite or null. </summary>
  2586. <keywords>SQLiteDateTime.IsFinite property </keywords>
  2587. <value><see langword="true" /> if the <see cref="P:Devart.Data.SQLite.SQLiteDateTime.Value" /> represents a finite timestamp or <see cref="F:Devart.Data.SQLite.SQLiteDateTime.Null" />; otherwise, <see langword="false" />. </value>
  2588. </member>
  2589. <member name="M:Devart.Data.SQLite.SQLiteDateTime.IsLeapYear(System.Int32)">
  2590. <summary>Indicates whether specified year is a leap one. </summary>
  2591. <keywords>SQLiteDateTime.IsLeapYear method </keywords>
  2592. <param name="year">The year to check. </param>
  2593. <returns><see langword="true" /> if the specified year is a leap one; otherwise, <see langword="false" />. </returns>
  2594. </member>
  2595. <member name="P:Devart.Data.SQLite.SQLiteDateTime.IsNull">
  2596. <summary>Gets a value indicating whether the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure represents <see cref="F:Devart.Data.SQLite.SQLiteDateTime.Null" />. </summary>
  2597. <keywords>SQLiteDateTime.IsNull property </keywords>
  2598. <value><see langword="true" /> if the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure represents <see cref="F:Devart.Data.SQLite.SQLiteDateTime.Null" />; otherwise, <see langword="false" />. </value>
  2599. </member>
  2600. <member name="M:Devart.Data.SQLite.SQLiteDateTime.LessThan(Devart.Data.SQLite.SQLiteDateTime,Devart.Data.SQLite.SQLiteDateTime)">
  2601. <summary>Determines whether the first of two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> values is less than the second. </summary>
  2602. <keywords>SQLiteDateTime.LessThan method </keywords>
  2603. <param name="x">The first <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2604. <param name="y">The second <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2605. <returns><see langword="true" /> if the first of two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> values is less than the second; otherwise, <see langword="false" />. </returns>
  2606. </member>
  2607. <member name="M:Devart.Data.SQLite.SQLiteDateTime.LessThanOrEqual(Devart.Data.SQLite.SQLiteDateTime,Devart.Data.SQLite.SQLiteDateTime)">
  2608. <summary>Determines whether the first of two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> values is less than or equal to the second. </summary>
  2609. <keywords>SQLiteDateTime.LessThanOrEqual method </keywords>
  2610. <param name="x">The first <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2611. <param name="y">The second <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2612. <returns><see langword="true" /> if the first of two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> values is less than or equal to the second; otherwise, <see langword="false" />. </returns>
  2613. </member>
  2614. <member name="F:Devart.Data.SQLite.SQLiteDateTime.MaxValue">
  2615. <summary>Represents the maximum valid date for a <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </summary>
  2616. <keywords>SQLiteDateTime.MaxValue field </keywords>
  2617. </member>
  2618. <member name="P:Devart.Data.SQLite.SQLiteDateTime.Microsecond">
  2619. <summary>Gets the microsecond component of a <see cref="T:Devart.Data.SQLite.SQLiteDateTime" />. </summary>
  2620. <keywords>SQLiteDateTime.Microsecond property </keywords>
  2621. <value>Number of microseconds in the time part of the structure. </value>
  2622. </member>
  2623. <member name="F:Devart.Data.SQLite.SQLiteDateTime.MinValue">
  2624. <summary>Represents the minimum valid date for a <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </summary>
  2625. <keywords>SQLiteDateTime.MinValue field </keywords>
  2626. </member>
  2627. <member name="P:Devart.Data.SQLite.SQLiteDateTime.Minute">
  2628. <summary>Gets the minute component of a <see cref="T:Devart.Data.SQLite.SQLiteDateTime" />. </summary>
  2629. <keywords>SQLiteDateTime.Minute property </keywords>
  2630. <value>A number that represents a minute value between 0 and 59. </value>
  2631. </member>
  2632. <member name="P:Devart.Data.SQLite.SQLiteDateTime.Month">
  2633. <summary>Gets the month component of a <see cref="T:Devart.Data.SQLite.SQLiteDateTime" />. </summary>
  2634. <keywords>SQLiteDateTime.Month property </keywords>
  2635. <value>A number that represents a month value between 1 and 12. </value>
  2636. </member>
  2637. <member name="F:Devart.Data.SQLite.SQLiteDateTime.NegativeInfinity">
  2638. <summary>Represents a negative infinity value that can be assigned to the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </summary>
  2639. <keywords>SQLiteDateTime.NegativeInfinity field </keywords>
  2640. </member>
  2641. <member name="M:Devart.Data.SQLite.SQLiteDateTime.NotEquals(Devart.Data.SQLite.SQLiteDateTime,Devart.Data.SQLite.SQLiteDateTime)">
  2642. <summary>Determines whether two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> values are not equal. </summary>
  2643. <keywords>SQLiteDateTime.NotEquals method </keywords>
  2644. <param name="x">The first <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2645. <param name="y">The second <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2646. <returns><see langword="true" /> if two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> values are not equal; otherwise, <see langword="false" />. </returns>
  2647. </member>
  2648. <member name="F:Devart.Data.SQLite.SQLiteDateTime.Null">
  2649. <summary>Represents a NULL value that can be assigned to the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </summary>
  2650. <keywords>SQLiteDateTime.Null field </keywords>
  2651. </member>
  2652. <member name="M:Devart.Data.SQLite.SQLiteDateTime.Parse(System.String)">
  2653. <summary>Converts the specified <see cref="T:System.String" /> representation of a date to its <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> equivalent. </summary>
  2654. <keywords>SQLiteDateTime.Parse method </keywords>
  2655. <param name="value">The <see cref="T:System.String" /> to be parsed. </param>
  2656. <returns>a <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure equal to the date represented by the specified <see cref="T:System.String" />. </returns>
  2657. <overloads>Converts the specified <see cref="T:System.String" /> representation of a date to its <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> equivalent. </overloads>
  2658. </member>
  2659. <member name="M:Devart.Data.SQLite.SQLiteDateTime.Parse(System.String,System.String)">
  2660. <summary>Converts the specified <see cref="T:System.String" /> representation of a date to its <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> equivalent. </summary>
  2661. <keywords>SQLiteDateTime.Parse method </keywords>
  2662. <param name="value">The <see cref="T:System.String" /> to be parsed. </param>
  2663. <param name="format">A <see cref="T:System.String" /> that describes elements contained within <paramref name="value" />. </param>
  2664. <returns>a <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure equal to the date represented by the specified <see cref="T:System.String" />. </returns>
  2665. </member>
  2666. <member name="M:Devart.Data.SQLite.SQLiteDateTime.ParseExact(System.String,System.String[])">
  2667. <summary>Converts the specified <see cref="T:System.String" /> representation of a date to its <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> equivalent. </summary>
  2668. <keywords>SQLiteDateTime.ParseExact method </keywords>
  2669. <param name="value">The <see cref="T:System.String" /> to be parsed. </param>
  2670. <param name="formats">The array of <see cref="T:System.String" /> formats that describe elements contained within <paramref name="value" />. </param>
  2671. <returns>a <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure equal to the date represented by the specified <see cref="T:System.String" />. </returns>
  2672. </member>
  2673. <member name="F:Devart.Data.SQLite.SQLiteDateTime.PositiveInfinity">
  2674. <summary>Represents a positive infinity value that can be assigned to the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </summary>
  2675. <keywords>SQLiteDateTime.PositiveInfinity field </keywords>
  2676. </member>
  2677. <member name="F:Devart.Data.SQLite.SQLiteDateTime.SQLiteDateTimeFormats">
  2678. <summary>Static field, containing all the formats of the DateTime string representations, that can be parsed by the <see cref="M:Devart.Data.SQLite.SQLiteDateTime.Parse(System.String)" /> method. </summary>
  2679. <keywords>SQLiteDateTime.SQLiteDateTimeFormats field </keywords>
  2680. <value>All the formats of the DateTime string representations, that can be parsed by the <see cref="M:Devart.Data.SQLite.SQLiteDateTime.Parse(System.String)" /> method. </value>
  2681. </member>
  2682. <member name="P:Devart.Data.SQLite.SQLiteDateTime.Second">
  2683. <summary>Gets the second component of a <see cref="T:Devart.Data.SQLite.SQLiteDateTime" />. </summary>
  2684. <keywords>SQLiteDateTime.Second property </keywords>
  2685. <value>A number that represents a second value between 0 and 59. </value>
  2686. </member>
  2687. <member name="M:Devart.Data.SQLite.SQLiteDateTime.Subtract(Devart.Data.SQLite.SQLiteDateTime,System.TimeSpan)">
  2688. <summary>Subtracts a <see cref="T:System.TimeSpan" /> value from a <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </summary>
  2689. <keywords>SQLiteDateTime.Subtract method </keywords>
  2690. <param name="x">A <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure to subtract from. </param>
  2691. <param name="t">A <see cref="T:System.TimeSpan" /> value to subtract. </param>
  2692. <returns>The new <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure that represents the result of the subtract operation. </returns>
  2693. </member>
  2694. <member name="P:Devart.Data.SQLite.SQLiteDateTime.TimeOfDay">
  2695. <summary>Gets the time part of the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </summary>
  2696. <keywords>SQLiteDateTime.TimeOfDay property </keywords>
  2697. <value>A <see cref="T:System.TimeSpan" /> value. </value>
  2698. </member>
  2699. <member name="P:Devart.Data.SQLite.SQLiteDateTime.TimeTicks">
  2700. <summary>Gets the number of microseconds in the time part of the structure. </summary>
  2701. <keywords>SQLiteDateTime.TimeTicks property </keywords>
  2702. <value>Thenumber of microseconds in the time part of the structure. The value includes hours and minutes expressed in microseconds. </value>
  2703. </member>
  2704. <member name="P:Devart.Data.SQLite.SQLiteDateTime.TimeZoneOffset">
  2705. <summary>Determines the time difference between the local time stored in this <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> instance and coordinated universal time (UTC). </summary>
  2706. <keywords>SQLiteDateTime.TimeZoneOffset property </keywords>
  2707. <value>The time difference between the local time stored in this <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> instance and coordinated universal time (UTC). </value>
  2708. </member>
  2709. <member name="M:Devart.Data.SQLite.SQLiteDateTime.ToString()">
  2710. <summary>Converts the current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure to a <see cref="T:System.String" />. </summary>
  2711. <keywords>SQLiteDateTime.ToString method </keywords>
  2712. <returns>A <see cref="T:System.String" /> object. </returns>
  2713. <overloads>Converts the current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure to a <see cref="T:System.String" />. </overloads>
  2714. </member>
  2715. <member name="M:Devart.Data.SQLite.SQLiteDateTime.ToString(System.String)">
  2716. <summary>Converts the current <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure to a <see cref="T:System.String" /> using provided format string. </summary>
  2717. <keywords>SQLiteDateTime.ToString method </keywords>
  2718. <param name="format">Format to use for converting the string. </param>
  2719. <returns>A <see cref="T:System.String" /> object. </returns>
  2720. </member>
  2721. <member name="P:Devart.Data.SQLite.SQLiteDateTime.Value">
  2722. <summary>Gets the date and time that is stored in the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </summary>
  2723. <keywords>SQLiteDateTime.Value property </keywords>
  2724. <value>A <see cref="T:System.DateTime" /> object. </value>
  2725. </member>
  2726. <member name="P:Devart.Data.SQLite.SQLiteDateTime.Year">
  2727. <summary>Gets the year component of a <see cref="T:Devart.Data.SQLite.SQLiteDateTime" />. </summary>
  2728. <keywords>SQLiteDateTime.Year property </keywords>
  2729. <value>A number that represents a year value between -4713 and 5874897. </value>
  2730. </member>
  2731. <member name="M:Devart.Data.SQLite.SQLiteDateTime.op_Addition(Devart.Data.SQLite.SQLiteDateTime,System.TimeSpan)">
  2732. <summary>Adds the specified <see cref="T:System.TimeSpan" /> to the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> and returns a new <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </summary>
  2733. <keywords>SQLiteDateTime.op_Addition method </keywords>
  2734. <param name="d">A <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </param>
  2735. <param name="t">A <see cref="T:System.TimeSpan" /> value. </param>
  2736. <returns>A new <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </returns>
  2737. </member>
  2738. <member name="M:Devart.Data.SQLite.SQLiteDateTime.op_Equality(Devart.Data.SQLite.SQLiteDateTime,Devart.Data.SQLite.SQLiteDateTime)">
  2739. <summary>Determines whether two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> values are equal. </summary>
  2740. <keywords>SQLiteDateTime.op_Equality method </keywords>
  2741. <param name="x">The first <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2742. <param name="y">The second <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2743. <returns><see langword="true" /> if two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> values are equal; otherwise, <see langword="false" />. </returns>
  2744. </member>
  2745. <member name="M:Devart.Data.SQLite.SQLiteDateTime.op_Explicit(Devart.Data.SQLite.SQLiteDateTime)~System.DateTime">
  2746. <summary>Converts a <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure to the <see cref="T:System.DateTime" /> object. </summary>
  2747. <keywords>SQLiteDateTime.op_Explicit method </keywords>
  2748. <param name="x">A <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure to convert. </param>
  2749. <returns>A <see cref="T:System.DateTime" /> object. </returns>
  2750. </member>
  2751. <member name="M:Devart.Data.SQLite.SQLiteDateTime.op_GreaterThan(Devart.Data.SQLite.SQLiteDateTime,Devart.Data.SQLite.SQLiteDateTime)">
  2752. <summary>Compares two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structures to determine if the first is greater than the second. </summary>
  2753. <keywords>SQLiteDateTime.op_GreaterThan method </keywords>
  2754. <param name="x">The first <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2755. <param name="y">The second <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2756. <returns><see langword="true" /> if the first of two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> values is greater than the second; otherwise, <see langword="false" />. </returns>
  2757. </member>
  2758. <member name="M:Devart.Data.SQLite.SQLiteDateTime.op_GreaterThanOrEqual(Devart.Data.SQLite.SQLiteDateTime,Devart.Data.SQLite.SQLiteDateTime)">
  2759. <summary>Compares two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structures to determine if the first is greater than or equal to the second. </summary>
  2760. <keywords>SQLiteDateTime.op_GreaterThanOrEqual method </keywords>
  2761. <param name="x">The first <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2762. <param name="y">The second <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2763. <returns><see langword="true" /> if the first of two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> values is greater than or equal to the second; otherwise, <see langword="false" />. </returns>
  2764. </member>
  2765. <member name="M:Devart.Data.SQLite.SQLiteDateTime.op_Implicit(System.DateTime)~Devart.Data.SQLite.SQLiteDateTime">
  2766. <summary>Converts a <see cref="T:System.DateTime" /> object to the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </summary>
  2767. <keywords>SQLiteDateTime.op_Implicit method </keywords>
  2768. <param name="value">A <see cref="T:System.DateTime" /> object to convert. </param>
  2769. <returns>A <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </returns>
  2770. </member>
  2771. <member name="M:Devart.Data.SQLite.SQLiteDateTime.op_Inequality(Devart.Data.SQLite.SQLiteDateTime,Devart.Data.SQLite.SQLiteDateTime)">
  2772. <summary>Determines whether two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> values are not equal. </summary>
  2773. <keywords>SQLiteDateTime.op_Inequality method </keywords>
  2774. <param name="x">The first <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2775. <param name="y">The second <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2776. <returns><see langword="true" /> if two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> values are not equal; otherwise, <see langword="false" />. </returns>
  2777. </member>
  2778. <member name="M:Devart.Data.SQLite.SQLiteDateTime.op_LessThan(Devart.Data.SQLite.SQLiteDateTime,Devart.Data.SQLite.SQLiteDateTime)">
  2779. <summary>Compares two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structures to determine if the first is less than the second. </summary>
  2780. <keywords>SQLiteDateTime.op_LessThan method </keywords>
  2781. <param name="x">The first <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2782. <param name="y">The second <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2783. <returns><see langword="true" /> if the first of two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> values is less than the second; otherwise, <see langword="false" />. </returns>
  2784. </member>
  2785. <member name="M:Devart.Data.SQLite.SQLiteDateTime.op_LessThanOrEqual(Devart.Data.SQLite.SQLiteDateTime,Devart.Data.SQLite.SQLiteDateTime)">
  2786. <summary>Compares two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structures to determine if the first is less than or equal to the second. </summary>
  2787. <keywords>SQLiteDateTime.op_LessThanOrEqual method </keywords>
  2788. <param name="x">The first <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2789. <param name="y">The second <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2790. <returns><see langword="true" /> if the first of two <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> values is less than or equal to the second; otherwise, <see langword="false" />. </returns>
  2791. </member>
  2792. <member name="M:Devart.Data.SQLite.SQLiteDateTime.op_Subtraction(Devart.Data.SQLite.SQLiteDateTime,System.TimeSpan)">
  2793. <summary>Subtracts the specified <see cref="T:System.TimeSpan" /> value from the <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value and returns a new <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </summary>
  2794. <keywords>SQLiteDateTime.op_Subtraction method </keywords>
  2795. <param name="d">A <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> value. </param>
  2796. <param name="t">A <see cref="T:System.TimeSpan" /> value to subtract. </param>
  2797. <returns>A new <see cref="T:Devart.Data.SQLite.SQLiteDateTime" /> structure. </returns>
  2798. </member>
  2799. <member name="T:Devart.Data.SQLite.SQLiteDump">
  2800. <summary>Serves to store a database or its parts as a script and also to restore database from the received script. </summary>
  2801. </member>
  2802. <member name="M:Devart.Data.SQLite.SQLiteDump.#ctor()">
  2803. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDump" /> class. </summary>
  2804. <overloads>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDump" /> class. </overloads>
  2805. </member>
  2806. <member name="M:Devart.Data.SQLite.SQLiteDump.#ctor(Devart.Data.SQLite.SQLiteConnection)">
  2807. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteDump" /> class with a <see ref="T:Devart.Data.SQLite.SQLiteConnection" /> object. </summary>
  2808. <param name="connection">A <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> object that represents the connection to a data source. </param>
  2809. </member>
  2810. <member name="P:Devart.Data.SQLite.SQLiteDump.Catalog">
  2811. <summary>Gets or sets the database to read tables from. </summary>
  2812. <keywords>SQLiteDump.Catalog property </keywords>
  2813. <value>If this property contains an empty string, the <see cref="T:Devart.Data.SQLite.SQLiteDump" /> will search for the <see cref="P:Devart.Data.SQLite.SQLiteDump.Tables" /> in all attached databases. If this property contains a name of a database, the <see cref="T:Devart.Data.SQLite.SQLiteDump" /> will search in the specified database only.
  2814. The default value is empty string. </value>
  2815. </member>
  2816. <member name="P:Devart.Data.SQLite.SQLiteDump.Connection">
  2817. <summary>Gets or sets the <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> used by this instance of the <see cref="T:Devart.Data.SQLite.SQLiteDump" />. </summary>
  2818. <keywords>SQLiteDump.Connection property </keywords>
  2819. <value>The connection to a data source. The default value is a null reference. </value>
  2820. </member>
  2821. <member name="P:Devart.Data.SQLite.SQLiteDump.DumpText">
  2822. <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>
  2823. <keywords>SQLiteDump.DumpText property </keywords>
  2824. <value>SQL commands separated by ';' symbols. </value>
  2825. </member>
  2826. <member name="P:Devart.Data.SQLite.SQLiteDump.ObjectTypes">
  2827. <summary>Gets or sets a value that indicates which database objects will be included in the dump text. </summary>
  2828. <keywords>SQLiteDump.ObjectTypes property </keywords>
  2829. <value>A combination of <see cref="T:Devart.Data.SQLite.SQLiteDumpObjects" /> values. </value>
  2830. </member>
  2831. <member name="P:Devart.Data.SQLite.SQLiteDump.Tables">
  2832. <summary>Gets or sets a list of the tables which will be used in the script. Table names are separated by semicolon. </summary>
  2833. <keywords>SQLiteDump.Tables property </keywords>
  2834. <value><see cref="T:System.String" /> containing a list of the tables separated by semicolon. </value>
  2835. </member>
  2836. <member name="T:Devart.Data.SQLite.SQLiteDumpObjects">
  2837. <summary>Determines which database objects will be included in the dump text. </summary>
  2838. </member>
  2839. <member name="F:Devart.Data.SQLite.SQLiteDumpObjects.All">
  2840. <summary>All database objects will be included in the dump. </summary>
  2841. </member>
  2842. <member name="F:Devart.Data.SQLite.SQLiteDumpObjects.Indexes">
  2843. <summary>Includes indexes in the dump. </summary>
  2844. </member>
  2845. <member name="F:Devart.Data.SQLite.SQLiteDumpObjects.Tables">
  2846. <summary>Includes tables in the dump. </summary>
  2847. </member>
  2848. <member name="F:Devart.Data.SQLite.SQLiteDumpObjects.Triggers">
  2849. <summary>Includes triggers in the dump. </summary>
  2850. </member>
  2851. <member name="F:Devart.Data.SQLite.SQLiteDumpObjects.Views">
  2852. <summary>Includes views in the dump. </summary>
  2853. </member>
  2854. <member name="T:Devart.Data.SQLite.SQLiteErrorCode">
  2855. <summary>Determines the type of error that occurred in the database. </summary>
  2856. </member>
  2857. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.Abort">
  2858. <summary>Callback routine requested an abort. </summary>
  2859. </member>
  2860. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.Auth">
  2861. <summary>Authorization denied. </summary>
  2862. </member>
  2863. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.Busy">
  2864. <summary>The database file is locked. </summary>
  2865. </member>
  2866. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.CantOpen">
  2867. <summary>Unable to open the database file. </summary>
  2868. </member>
  2869. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.Constraint">
  2870. <summary>Abort due to a constraint violation. </summary>
  2871. </member>
  2872. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.Corrupt">
  2873. <summary>The database disk image is malformed. </summary>
  2874. </member>
  2875. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.Done">
  2876. <summary>sqlite3_step() has finished executing. </summary>
  2877. </member>
  2878. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.Empty">
  2879. <summary>Database is empty. </summary>
  2880. </member>
  2881. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.Error">
  2882. <summary>SQL error or missing database. </summary>
  2883. </member>
  2884. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.Format">
  2885. <summary>Auxiliary database format error. </summary>
  2886. </member>
  2887. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.Full">
  2888. <summary>Insertion failed because database is full. </summary>
  2889. </member>
  2890. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.IOErr">
  2891. <summary>Some kind of disk I/O error occurred. </summary>
  2892. </member>
  2893. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.Internal">
  2894. <summary>Internal logic error in SQLite. </summary>
  2895. </member>
  2896. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.Interrupt">
  2897. <summary>Operation terminated by sqlite3_interrupt(). </summary>
  2898. </member>
  2899. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.Locked">
  2900. <summary>A table in the database is locked. </summary>
  2901. </member>
  2902. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.Mismatch">
  2903. <summary>Data type mismatch. </summary>
  2904. </member>
  2905. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.Misuse">
  2906. <summary>Library used incorrectly. </summary>
  2907. </member>
  2908. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.NOLFS">
  2909. <summary>Use of OS features not supported by the host. </summary>
  2910. </member>
  2911. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.NoMem">
  2912. <summary>malloc() failed. </summary>
  2913. </member>
  2914. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.NotADatabase">
  2915. <summary>The file opened is not a database file. </summary>
  2916. </member>
  2917. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.NotFound">
  2918. <summary>Table or record not found. </summary>
  2919. </member>
  2920. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.Ok">
  2921. <summary>Success. </summary>
  2922. </member>
  2923. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.Perm">
  2924. <summary>Access permission denied. </summary>
  2925. </member>
  2926. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.Protocol">
  2927. <summary>Database lock protocol error. </summary>
  2928. </member>
  2929. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.Range">
  2930. <summary>2nd parameter to sqlite3_bind out of range. </summary>
  2931. </member>
  2932. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.ReadOnly">
  2933. <summary>Attempt to write a read-only database. </summary>
  2934. </member>
  2935. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.Row">
  2936. <summary>sqlite3_step() has another row ready. </summary>
  2937. </member>
  2938. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.Schema">
  2939. <summary>The database schema changed. </summary>
  2940. </member>
  2941. <member name="F:Devart.Data.SQLite.SQLiteErrorCode.TooBig">
  2942. <summary>Too much data for one row of a table. </summary>
  2943. </member>
  2944. <member name="T:Devart.Data.SQLite.SQLiteErrorEventArgs">
  2945. <summary>Provides data for the <see cref="E:Devart.Data.SQLite.SQLiteConnection.Error" /> event. </summary>
  2946. </member>
  2947. <member name="P:Devart.Data.SQLite.SQLiteErrorEventArgs.Exception">
  2948. <summary>Gets a <see cref="T:Devart.Data.SQLite.SQLiteException" /> object that describes the error. </summary>
  2949. <keywords>SQLiteErrorEventArgs.Exception property </keywords>
  2950. <value>A <see cref="T:Devart.Data.SQLite.SQLiteException" /> object. </value>
  2951. </member>
  2952. <member name="T:Devart.Data.SQLite.SQLiteErrorEventHandler">
  2953. <summary>Represents the method that will handle the <see cref="E:Devart.Data.SQLite.SQLiteConnection.Error" /> event of <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see>. </summary>
  2954. <keywords>SQLiteErrorEventHandler delegate </keywords>
  2955. <param name="sender">The source of the event. </param>
  2956. <param name="e">The <see cref="T:Devart.Data.SQLite.SQLiteErrorEventArgs" /> object that contains the event data. </param>
  2957. </member>
  2958. <member name="T:Devart.Data.SQLite.SQLiteException">
  2959. <summary>The exception that is generated when SQLite returns an error. </summary>
  2960. </member>
  2961. <member name="P:Devart.Data.SQLite.SQLiteException.ErrorCode">
  2962. <summary>Describes an error occurred in the database. </summary>
  2963. <keywords>SQLiteException.ErrorCode property </keywords>
  2964. <value>One of the <see cref="T:Devart.Data.SQLite.SQLiteErrorCode" /> values. </value>
  2965. </member>
  2966. <member name="M:Devart.Data.SQLite.SQLiteException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  2967. <summary>Populates a <b>SerializationInfo</b> with the data needed to serialize the target object. </summary>
  2968. <keywords>SQLiteException.GetObjectData method </keywords>
  2969. <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object to populate. </param>
  2970. <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination. </param>
  2971. </member>
  2972. <member name="T:Devart.Data.SQLite.SQLiteForeignKeyConstraints">
  2973. <summary>Determines whether to enforce foreign key constraints. </summary>
  2974. </member>
  2975. <member name="F:Devart.Data.SQLite.SQLiteForeignKeyConstraints.Default">
  2976. <summary>Use default SQLite foreign key constraint enforcement settings. </summary>
  2977. </member>
  2978. <member name="F:Devart.Data.SQLite.SQLiteForeignKeyConstraints.Off">
  2979. <summary>Foreign key constraint enforcement is off. </summary>
  2980. </member>
  2981. <member name="F:Devart.Data.SQLite.SQLiteForeignKeyConstraints.On">
  2982. <summary>Foreign key constraint enforcement is on. </summary>
  2983. </member>
  2984. <member name="T:Devart.Data.SQLite.SQLiteFunction">
  2985. <summary>Base class for user-defined functions. </summary>
  2986. </member>
  2987. <member name="M:Devart.Data.SQLite.SQLiteFunction.#ctor(System.String,System.Int32)">
  2988. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteAggregateFunction" /> class. </summary>
  2989. <param name="name">User-defined function name to register. </param>
  2990. <param name="argumentCount">Number of arguments, the user-defined function accepts. </param>
  2991. </member>
  2992. <member name="P:Devart.Data.SQLite.SQLiteFunction.ArgumentCount">
  2993. <summary>Gets a number of user-defined function arguments. </summary>
  2994. <keywords>SQLiteFunction.ArgumentCount property </keywords>
  2995. <value>Number of user-defined function arguments. </value>
  2996. </member>
  2997. <member name="M:Devart.Data.SQLite.SQLiteFunction.Dispose()">
  2998. <summary>Releases all resources allocated by this object. </summary>
  2999. <keywords>SQLiteFunction.Dispose method </keywords>
  3000. </member>
  3001. <member name="P:Devart.Data.SQLite.SQLiteFunction.Name">
  3002. <summary>Gets a name of the user-defined function. </summary>
  3003. <keywords>SQLiteFunction.Name property </keywords>
  3004. <value>Name of the user-defined function. </value>
  3005. </member>
  3006. <member name="T:Devart.Data.SQLite.SQLiteMetaDataCollectionNames">
  3007. <summary>Enumerates collection names you can use for metadata retrieval purposes. </summary>
  3008. </member>
  3009. <member name="M:Devart.Data.SQLite.SQLiteMetaDataCollectionNames.#ctor()">
  3010. <summary>Creates a <see cref="T:Devart.Data.SQLite.SQLiteMetaDataCollectionNames" /> instance. </summary>
  3011. </member>
  3012. <member name="F:Devart.Data.SQLite.SQLiteMetaDataCollectionNames.Catalogs">
  3013. <summary>The name of the metadata collection for known catalogs with SQLite database files. </summary>
  3014. <keywords>SQLiteMetaDataCollectionNames.Catalogs field </keywords>
  3015. <value>The value is "Catalogs". </value>
  3016. </member>
  3017. <member name="F:Devart.Data.SQLite.SQLiteMetaDataCollectionNames.Columns">
  3018. <summary>The name of the metadata collection for table columns. </summary>
  3019. <keywords>SQLiteMetaDataCollectionNames.Columns field </keywords>
  3020. <value>The value is "Columns". </value>
  3021. </member>
  3022. <member name="F:Devart.Data.SQLite.SQLiteMetaDataCollectionNames.DataSourceInformation">
  3023. <summary>The name of the metadata collection for the data source. </summary>
  3024. <keywords>SQLiteMetaDataCollectionNames.DataSourceInformation field </keywords>
  3025. <value>The value is "DataSourceInformation". </value>
  3026. </member>
  3027. <member name="F:Devart.Data.SQLite.SQLiteMetaDataCollectionNames.DataTypes">
  3028. <summary>The name of the metadata collection for SQLite data types. </summary>
  3029. <keywords>SQLiteMetaDataCollectionNames.DataTypes field </keywords>
  3030. <value>The value is "DataTypes". </value>
  3031. </member>
  3032. <member name="F:Devart.Data.SQLite.SQLiteMetaDataCollectionNames.ForeignKeyColumns">
  3033. <summary>The name of the metadata collection for columns used in foreign keys. </summary>
  3034. <keywords>SQLiteMetaDataCollectionNames.ForeignKeyColumns field </keywords>
  3035. <value>The value is "ForeignKeyColumns". </value>
  3036. </member>
  3037. <member name="F:Devart.Data.SQLite.SQLiteMetaDataCollectionNames.ForeignKeys">
  3038. <summary>The name of the metadata collection for foreign keys. </summary>
  3039. <keywords>SQLiteMetaDataCollectionNames.ForeignKeys field </keywords>
  3040. <value>The value is "ForeignKeys". </value>
  3041. </member>
  3042. <member name="F:Devart.Data.SQLite.SQLiteMetaDataCollectionNames.IndexColumns">
  3043. <summary>The name of the metadata collection for columns used in indexes. </summary>
  3044. <keywords>SQLiteMetaDataCollectionNames.IndexColumns field </keywords>
  3045. <value>The value is "IndexColumns". </value>
  3046. </member>
  3047. <member name="F:Devart.Data.SQLite.SQLiteMetaDataCollectionNames.Indexes">
  3048. <summary>The name of the metadata collection for table indexes. </summary>
  3049. <keywords>SQLiteMetaDataCollectionNames.Indexes field </keywords>
  3050. <value>The value is "Indexes". </value>
  3051. </member>
  3052. <member name="F:Devart.Data.SQLite.SQLiteMetaDataCollectionNames.MetadataCollections">
  3053. <summary>The name of the metadata collection for metadata collection definitions. </summary>
  3054. <keywords>SQLiteMetaDataCollectionNames.MetadataCollections field </keywords>
  3055. <value>The value is "MetadataCollections" </value>
  3056. </member>
  3057. <member name="F:Devart.Data.SQLite.SQLiteMetaDataCollectionNames.PrimaryKeys">
  3058. <summary>The name of the metadata collection for primary keys. </summary>
  3059. <keywords>SQLiteMetaDataCollectionNames.PrimaryKeys field </keywords>
  3060. <value>The value is "PrimaryKeys". </value>
  3061. </member>
  3062. <member name="F:Devart.Data.SQLite.SQLiteMetaDataCollectionNames.ReservedWords">
  3063. <summary>The name of metadata collection for the reserved words. </summary>
  3064. <keywords>SQLiteMetaDataCollectionNames.ReservedWords field </keywords>
  3065. <value>The value is "ReservedWords". </value>
  3066. </member>
  3067. <member name="F:Devart.Data.SQLite.SQLiteMetaDataCollectionNames.Restrictions">
  3068. <summary>The name of the metadata collection for metadata restrictions. </summary>
  3069. <keywords>SQLiteMetaDataCollectionNames.Restrictions field </keywords>
  3070. <value>The value is "Restrictions". </value>
  3071. </member>
  3072. <member name="F:Devart.Data.SQLite.SQLiteMetaDataCollectionNames.SSISColumns">
  3073. <summary>The name of the metadata collection for SSIS tables. </summary>
  3074. <keywords>SQLiteMetaDataCollectionNames.SSISColumns field </keywords>
  3075. <value>The value is "SSISTables". </value>
  3076. </member>
  3077. <member name="F:Devart.Data.SQLite.SQLiteMetaDataCollectionNames.Tables">
  3078. <summary>The name of the metadata collection for SQLite tables. </summary>
  3079. <keywords>SQLiteMetaDataCollectionNames.Tables field </keywords>
  3080. <value>The value is "Tables". </value>
  3081. </member>
  3082. <member name="F:Devart.Data.SQLite.SQLiteMetaDataCollectionNames.Triggers">
  3083. <summary>The name of the metadata collection for triggers. </summary>
  3084. <keywords>SQLiteMetaDataCollectionNames.Triggers field </keywords>
  3085. <value>The value is "Triggers". </value>
  3086. </member>
  3087. <member name="F:Devart.Data.SQLite.SQLiteMetaDataCollectionNames.UniqueKeys">
  3088. <summary> The name of the metadata collection for unique keys. </summary>
  3089. <keywords>SQLiteMetaDataCollectionNames.UniqueKeys field </keywords>
  3090. <value>The value is "UniqueKeys". </value>
  3091. </member>
  3092. <member name="F:Devart.Data.SQLite.SQLiteMetaDataCollectionNames.UserDefinedFunctions">
  3093. <summary>The name of the metadata collection for user-defined functions. </summary>
  3094. <keywords>SQLiteMetaDataCollectionNames.UserDefinedFunctions field </keywords>
  3095. <value>The value is "UserDefinedFunctions". </value>
  3096. </member>
  3097. <member name="F:Devart.Data.SQLite.SQLiteMetaDataCollectionNames.ViewColumns">
  3098. <summary>The name of the metadata collection for columns available in database views. </summary>
  3099. <keywords>SQLiteMetaDataCollectionNames.ViewColumns field </keywords>
  3100. <value>The value is "ViewColumns". </value>
  3101. </member>
  3102. <member name="F:Devart.Data.SQLite.SQLiteMetaDataCollectionNames.Views">
  3103. <summary>The name of the metadata collection for database views. </summary>
  3104. <keywords>SQLiteMetaDataCollectionNames.Views field </keywords>
  3105. <value>The value is "Views". </value>
  3106. </member>
  3107. <member name="T:Devart.Data.SQLite.SQLiteMonitor">
  3108. <summary>Monitors dynamic SQL execution in applications that use dotConnect for SQLite. </summary>
  3109. </member>
  3110. <member name="M:Devart.Data.SQLite.SQLiteMonitor.#ctor()">
  3111. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteMonitor" /> class. </summary>
  3112. </member>
  3113. <member name="P:Devart.Data.SQLite.SQLiteMonitor.IsActive">
  3114. <summary>Gets or sets whether <see cref="T:Devart.Data.SQLite.SQLiteMonitor" /> should watch SQL execution. </summary>
  3115. <keywords>SQLiteMonitor.IsActive property </keywords>
  3116. <value>
  3117. <see langword="true" /> if the <see cref="T:Devart.Data.SQLite.SQLiteMonitor" /> object should detect SQL queries peformed by the application; <see langword="false" /> otherwise. </value>
  3118. </member>
  3119. <member name="T:Devart.Data.SQLite.SQLiteParameter">
  3120. <summary>Represents a parameter to a <see cref="T:Devart.Data.SQLite.SQLiteCommand" />, and optionally, its mapping to <see cref="T:System.Data.DataSet" /> columns. </summary>
  3121. </member>
  3122. <member name="M:Devart.Data.SQLite.SQLiteParameter.#ctor()">
  3123. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> class. </summary>
  3124. <overloads>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> class. </overloads>
  3125. </member>
  3126. <member name="M:Devart.Data.SQLite.SQLiteParameter.#ctor(System.String)">
  3127. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> class. </summary>
  3128. <param name="parameterName">The name of the parameter. </param>
  3129. </member>
  3130. <member name="M:Devart.Data.SQLite.SQLiteParameter.#ctor(System.String,Devart.Data.SQLite.SQLiteType)">
  3131. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> class with the parameter name and data type. </summary>
  3132. <param name="parameterName">The name of the parameter. </param>
  3133. <param name="dbType">One of the <see cref="T:Devart.Data.SQLite.SQLiteType" /> values. </param>
  3134. </member>
  3135. <member name="M:Devart.Data.SQLite.SQLiteParameter.#ctor(System.String,Devart.Data.SQLite.SQLiteType,System.Int32)">
  3136. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> class with the parameter name, data type, and width. </summary>
  3137. <param name="parameterName">The name of the parameter. </param>
  3138. <param name="dbType">One of the <see cref="T:Devart.Data.SQLite.SQLiteType" /> values. </param>
  3139. <param name="size">The maximum size, in bytes, of the data within the column. </param>
  3140. </member>
  3141. <member name="M:Devart.Data.SQLite.SQLiteParameter.#ctor(System.String,Devart.Data.SQLite.SQLiteType,System.Int32,System.Data.ParameterDirection,System.Boolean,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Boolean,System.Object)">
  3142. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> class. </summary>
  3143. <param name="parameterName">The name of the parameter. </param>
  3144. <param name="dbType">The name of the parameter. </param>
  3145. <param name="size">The maximum size, in bytes, of the data within the column. </param>
  3146. <param name="direction">The direction of the parameter. </param>
  3147. <param name="isNullable"><see langword="true" /> if the value of the field can be null; otherwise, <see langword="false" />. </param>
  3148. <param name="precision">The total number of digits to the left and right of the decimal point to which <see cref="P:Devart.Common.DbParameterBase.Value" /> is resolved. </param>
  3149. <param name="scale">The total number of decimal places to which <see cref="P:Devart.Common.DbParameterBase.Value" /> is resolved. </param>
  3150. <param name="sourceColumn">The name of the source column. </param>
  3151. <param name="sourceVersion">One of the <see cref="T:System.Data.DataRowVersion" /> values. </param>
  3152. <param name="sourceColumnNullMapping"><see langword="true" /> if the source column is nullable; <see langword="false" /> if it is not. </param>
  3153. <param name="value">An Object that is the value of the <see cref="T:Devart.Data.SQLite.SQLiteParameter" />. </param>
  3154. </member>
  3155. <member name="M:Devart.Data.SQLite.SQLiteParameter.#ctor(System.String,Devart.Data.SQLite.SQLiteType,System.Int32,System.Data.ParameterDirection,System.Boolean,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Object)">
  3156. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> class with the parameter name, data type, width, source column name, parameter direction, numeric precision, and other properties. </summary>
  3157. <param name="parameterName">The name of the parameter. </param>
  3158. <param name="dbType">One of the <see cref="T:Devart.Data.SQLite.SQLiteType" /> values. </param>
  3159. <param name="size">The maximum size, in bytes, of the data within the column. </param>
  3160. <param name="direction">One of the <see cref="T:System.Data.ParameterDirection" /> values. </param>
  3161. <param name="isNullable"><see langword="true" /> if the value of the field can be null; otherwise, <see langword="false" />. </param>
  3162. <param name="precision">The total number of digits to the left and right of the decimal point to which <see cref="P:Devart.Common.DbParameterBase.Value" /> is resolved. </param>
  3163. <param name="scale">The total number of decimal places to which <see cref="P:Devart.Common.DbParameterBase.Value" /> is resolved. </param>
  3164. <param name="sourceColumn">The name of the source column. </param>
  3165. <param name="sourceVersion">One of the <see cref="T:System.Data.DataRowVersion" /> values. </param>
  3166. <param name="value">An Object that is the value of the <see cref="T:Devart.Data.SQLite.SQLiteParameter" />. </param>
  3167. </member>
  3168. <member name="M:Devart.Data.SQLite.SQLiteParameter.#ctor(System.String,Devart.Data.SQLite.SQLiteType,System.Int32,System.String)">
  3169. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> class with the parameter name, data type, width, and source column name. For internal use. </summary>
  3170. <param name="parameterName">The name of the parameter. </param>
  3171. <param name="dbType">One of the <see cref="T:Devart.Data.SQLite.SQLiteType" /> values. </param>
  3172. <param name="size">The maximum size, in bytes, of the data within the column. </param>
  3173. <param name="sourceColumn">The name of the source column. </param>
  3174. </member>
  3175. <member name="M:Devart.Data.SQLite.SQLiteParameter.#ctor(System.String,System.Data.ParameterDirection,System.Boolean,System.String,System.Data.DataRowVersion,System.Object)">
  3176. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> class. </summary>
  3177. <param name="parameterName">The name of the parameter. </param>
  3178. <param name="direction">The direction of the parameter. </param>
  3179. <param name="isNullable"><see langword="true" /> if the value of the field can be null; otherwise, <see langword="false" />. </param>
  3180. <param name="sourceColumn">The name of the source column. </param>
  3181. <param name="sourceVersion">One of the <see cref="T:System.Data.DataRowVersion" /> values. </param>
  3182. <param name="value">An Object that is the value of the <see cref="T:Devart.Data.SQLite.SQLiteParameter" />. </param>
  3183. </member>
  3184. <member name="M:Devart.Data.SQLite.SQLiteParameter.#ctor(System.String,System.Object)">
  3185. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> class with the parameter name and a <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> object. </summary>
  3186. <param name="parameterName">The name of the parameter. </param>
  3187. <param name="value">An Object that is the value of the <see cref="T:Devart.Data.SQLite.SQLiteParameter" />. </param>
  3188. </member>
  3189. <member name="M:Devart.Data.SQLite.SQLiteParameter.Clone()">
  3190. <summary>Creates a new object that is a copy of the current <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> instance. </summary>
  3191. <keywords>SQLiteParameter.Clone method </keywords>
  3192. <returns>A new <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> object in which all property values are the same as the original. </returns>
  3193. </member>
  3194. <member name="P:Devart.Data.SQLite.SQLiteParameter.DbType">
  3195. <summary>Gets or sets the <see cref="T:System.Data.DbType" /> of the parameter. </summary>
  3196. <keywords>SQLiteParameter.DbType property </keywords>
  3197. <value>One of the <see cref="T:System.Data.DbType" /> values. The default value is <see cref="T:System.String" />. </value>
  3198. </member>
  3199. <member name="P:Devart.Data.SQLite.SQLiteParameter.Direction">
  3200. <summary>Gets or sets direction of the parameter. </summary>
  3201. <keywords>SQLiteParameter.Direction property </keywords>
  3202. <value>Always <see cref="F:System.Data.ParameterDirection.Input" />, as SQLite does not support other directions. </value>
  3203. </member>
  3204. <member name="P:Devart.Data.SQLite.SQLiteParameter.Precision">
  3205. <summary>Gets or sets the maximum number of digits used to represent the <see cref="P:Devart.Common.DbParameterBase.Value" /> property. </summary>
  3206. <keywords>SQLiteParameter.Precision property </keywords>
  3207. <value>The maximum number of digits used to represent the <see cref="P:Devart.Common.DbParameterBase.Value" /> property. The default value is 0. </value>
  3208. </member>
  3209. <member name="M:Devart.Data.SQLite.SQLiteParameter.ResetDbType()">
  3210. <summary>Clears explicit <see cref="P:Devart.Data.SQLite.SQLiteParameter.SQLiteType" /> assignment. </summary>
  3211. <keywords>SQLiteParameter.ResetDbType method </keywords>
  3212. </member>
  3213. <member name="P:Devart.Data.SQLite.SQLiteParameter.SQLiteType">
  3214. <summary>Gets or sets the <see cref="T:Devart.Data.SQLite.SQLiteType" /> of the parameter. </summary>
  3215. <keywords>SQLiteParameter.SQLiteType property </keywords>
  3216. <value>A <see cref="T:Devart.Data.SQLite.SQLiteType" /> value that is the <see cref="P:Devart.Data.SQLite.SQLiteParameter.SQLiteType" /> of the parameter. </value>
  3217. </member>
  3218. <member name="P:Devart.Data.SQLite.SQLiteParameter.SQLiteValue">
  3219. <summary>Gets or sets the provider-specific value of the parameter. </summary>
  3220. <keywords>SQLiteParameter.SQLiteValue property </keywords>
  3221. <value>The provider-specific value of the parameter. </value>
  3222. </member>
  3223. <member name="P:Devart.Data.SQLite.SQLiteParameter.Scale">
  3224. <summary>Gets or sets the number of decimal places to which <see cref="P:Devart.Common.DbParameterBase.Value" /> is resolved. </summary>
  3225. <keywords>SQLiteParameter.Scale property </keywords>
  3226. <value>The number of decimal places to which <see cref="P:Devart.Common.DbParameterBase.Value" /> is resolved. The default value is 0. </value>
  3227. </member>
  3228. <member name="M:Devart.Data.SQLite.SQLiteParameter.ToString()">
  3229. <summary>Gets a string containing the <see cref="P:Devart.Common.DbParameterBase.ParameterName" />. </summary>
  3230. <keywords>SQLiteParameter.ToString method </keywords>
  3231. <returns>A string containing the <see cref="P:Devart.Common.DbParameterBase.ParameterName" />. </returns>
  3232. </member>
  3233. <member name="T:Devart.Data.SQLite.SQLiteParameterCollection">
  3234. <summary>Collects all parameters relevant to a <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> as well as their respective mappings to <see cref="T:System.Data.DataSet" /> columns. </summary>
  3235. </member>
  3236. <member name="M:Devart.Data.SQLite.SQLiteParameterCollection.Add(Devart.Data.SQLite.SQLiteParameter)">
  3237. <summary>Adds the specified <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> to the <see cref="T:Devart.Data.SQLite.SQLiteParameterCollection" />. </summary>
  3238. <keywords>SQLiteParameterCollection.Add method </keywords>
  3239. <param name="value">The <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> to add to the collection. </param>
  3240. <returns>The new <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> object. </returns>
  3241. <overloads>Adds the specified <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> to the <see cref="T:Devart.Data.SQLite.SQLiteParameterCollection" />. </overloads>
  3242. </member>
  3243. <member name="M:Devart.Data.SQLite.SQLiteParameterCollection.Add(System.Object)">
  3244. <summary>Adds the specified <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> to the <see cref="T:Devart.Data.SQLite.SQLiteCommand" />. </summary>
  3245. <keywords>SQLiteParameterCollection.Add method </keywords>
  3246. <param name="value">The <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> to add to the <see cref="T:Devart.Data.SQLite.SQLiteCommand" />. </param>
  3247. <returns>The index of the new <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> object. </returns>
  3248. </member>
  3249. <member name="M:Devart.Data.SQLite.SQLiteParameterCollection.Add(System.String,Devart.Data.SQLite.SQLiteType)">
  3250. <summary>Adds a <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> to the <see cref="T:Devart.Data.SQLite.SQLiteParameterCollection" /> given the parameter name and data type. </summary>
  3251. <keywords>SQLiteParameterCollection.Add method </keywords>
  3252. <param name="parameterName">The name of the parameter. </param>
  3253. <param name="type">One of the <see cref="T:Devart.Data.SQLite.SQLiteType" /> values. </param>
  3254. <returns>The new <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> object. </returns>
  3255. </member>
  3256. <member name="M:Devart.Data.SQLite.SQLiteParameterCollection.Add(System.String,Devart.Data.SQLite.SQLiteType,System.Int32)">
  3257. <summary>Adds a <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> to the <see cref="T:Devart.Data.SQLite.SQLiteParameterCollection" /> given the the parameter name, data type, and data size. </summary>
  3258. <keywords>SQLiteParameterCollection.Add method </keywords>
  3259. <param name="parameterName">The name of the parameter. </param>
  3260. <param name="dbType">One of the <see cref="T:Devart.Data.SQLite.SQLiteType" /> values. </param>
  3261. <param name="size">The maximum size, in bytes, of the data the parameter can contain. </param>
  3262. <returns>The new <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> object. </returns>
  3263. </member>
  3264. <member name="M:Devart.Data.SQLite.SQLiteParameterCollection.Add(System.String,Devart.Data.SQLite.SQLiteType,System.Int32,System.String)">
  3265. <summary>Adds a <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> to the <see cref="T:Devart.Data.SQLite.SQLiteParameterCollection" /> given the parameter name, data type, column width, and source column name. </summary>
  3266. <keywords>SQLiteParameterCollection.Add method </keywords>
  3267. <param name="parameterName">The name of the parameter. </param>
  3268. <param name="dbType">One of the <see cref="T:Devart.Data.SQLite.SQLiteType" /> values. </param>
  3269. <param name="size">The maximum size, in bytes, of the data the parameter can contain. </param>
  3270. <param name="sourceColumn">The name of the source column. </param>
  3271. <returns>The new <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> object. </returns>
  3272. </member>
  3273. <member name="M:Devart.Data.SQLite.SQLiteParameterCollection.Add(System.String,System.Object)">
  3274. <summary>Adds a <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> to the <see cref="T:Devart.Data.SQLite.SQLiteParameterCollection" /> given the parameter name and value. </summary>
  3275. <keywords>SQLiteParameterCollection.Add method </keywords>
  3276. <param name="parameterName">The name of the parameter. </param>
  3277. <param name="value">The <see cref="P:Devart.Common.DbParameterBase.Value" /> of the <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> to add to the collection. </param>
  3278. <returns>The new <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> object. </returns>
  3279. </member>
  3280. <member name="M:Devart.Data.SQLite.SQLiteParameterCollection.AddRange(System.Array)">
  3281. <summary>Adds a <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> to the <see cref="T:Devart.Data.SQLite.SQLiteParameterCollection" /> given parameter values. </summary>
  3282. <keywords>SQLiteParameterCollection.AddRange method </keywords>
  3283. <param name="values">Array of <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> objects to be added to the <see cref="T:Devart.Data.SQLite.SQLiteParameterCollection" />. </param>
  3284. </member>
  3285. <member name="M:Devart.Data.SQLite.SQLiteParameterCollection.AddWithValue(System.String,System.Object)">
  3286. <summary>Adds a <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> to the <see cref="T:Devart.Data.SQLite.SQLiteParameterCollection" /> given the parameter name and value. </summary>
  3287. <keywords>SQLiteParameterCollection.AddWithValue method </keywords>
  3288. <param name="parameterName">Name of the parameter. </param>
  3289. <param name="value">Value of the parameter. </param>
  3290. <returns>A new <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> object. </returns>
  3291. </member>
  3292. <member name="M:Devart.Data.SQLite.SQLiteParameterCollection.Clear()">
  3293. <summary>Removes all items from the collection. </summary>
  3294. <keywords>SQLiteParameterCollection.Clear method </keywords>
  3295. </member>
  3296. <member name="M:Devart.Data.SQLite.SQLiteParameterCollection.Insert(System.Int32,System.Object)">
  3297. <summary>Inserts a <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> into the collection at the specified index. </summary>
  3298. <keywords>SQLiteParameterCollection.Insert method </keywords>
  3299. <param name="index">The zero-based index where the parameter is to be inserted within the collection. </param>
  3300. <param name="value">The <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> object to add to the collection. </param>
  3301. </member>
  3302. <member name="P:Devart.Data.SQLite.SQLiteParameterCollection.Item(System.Int32)">
  3303. <summary>Gets or sets the <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> at the specified index. </summary>
  3304. <keywords>SQLiteParameterCollection.Item property </keywords>
  3305. <param name="index">The zero-based index of the parameter to retrieve. </param>
  3306. <value>The <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> at the specified index. </value>
  3307. </member>
  3308. <member name="P:Devart.Data.SQLite.SQLiteParameterCollection.Item(System.String)">
  3309. <summary>Gets or sets the <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> with the specified name. </summary>
  3310. <keywords>SQLiteParameterCollection.Item property </keywords>
  3311. <param name="parameterName">The name of the parameter to retrieve. </param>
  3312. <value>The <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> with the specified name. </value>
  3313. </member>
  3314. <member name="M:Devart.Data.SQLite.SQLiteParameterCollection.Remove(System.Object)">
  3315. <summary>Removes the specified <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> from the collection. </summary>
  3316. <keywords>SQLiteParameterCollection.Remove method </keywords>
  3317. <param name="value">The <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> object to remove from the collection. </param>
  3318. </member>
  3319. <member name="M:Devart.Data.SQLite.SQLiteParameterCollection.RemoveAt(System.Int32)">
  3320. <summary>Removes the <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> at the specified index from the collection. </summary>
  3321. <keywords>SQLiteParameterCollection.RemoveAt method </keywords>
  3322. <param name="index">The zero-based index of the parameter to remove. </param>
  3323. <overloads>Removes the specified <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> from the collection. </overloads>
  3324. </member>
  3325. <member name="M:Devart.Data.SQLite.SQLiteParameterCollection.RemoveAt(System.String)">
  3326. <summary>Removes the <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> with the specified name from the collection. </summary>
  3327. <keywords>SQLiteParameterCollection.RemoveAt method </keywords>
  3328. <param name="parameterName">The name of the parameter to remove. </param>
  3329. </member>
  3330. <member name="T:Devart.Data.SQLite.SQLiteProgressCallback">
  3331. <summary>Represents the method that can be registered as a callback function to be called periodically during long running calls to the database. </summary>
  3332. <keywords>SQLiteProgressCallback delegate </keywords>
  3333. </member>
  3334. <member name="T:Devart.Data.SQLite.SQLiteProviderFactory">
  3335. <summary>Represents a factory required to create inheritors of generic base classes to use with dotConnect for SQLite. </summary>
  3336. </member>
  3337. <member name="M:Devart.Data.SQLite.SQLiteProviderFactory.#ctor()">
  3338. <summary>Creates an instance of <see cref="T:Devart.Data.SQLite.SQLiteProviderFactory" />. </summary>
  3339. </member>
  3340. <member name="P:Devart.Data.SQLite.SQLiteProviderFactory.CanCreateDataSourceEnumerator">
  3341. <summary>Gets a value indicating whether the <see cref="T:Devart.Data.SQLite.SQLiteProviderFactory" /> can create a <see cref="T:Devart.Common.DbDataSourceEnumerator" /> object. </summary>
  3342. <keywords>SQLiteProviderFactory.CanCreateDataSourceEnumerator property </keywords>
  3343. <value><see langword="true" />, if a <see cref="T:Devart.Common.DbDataSourceEnumerator" /> object can be created; otherwise, <see langword="false" />. </value>
  3344. </member>
  3345. <member name="M:Devart.Data.SQLite.SQLiteProviderFactory.CreateCommand()">
  3346. <summary>Creates and returns a <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> object. </summary>
  3347. <keywords>SQLiteProviderFactory.CreateCommand method </keywords>
  3348. <returns>A <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> object. </returns>
  3349. </member>
  3350. <member name="M:Devart.Data.SQLite.SQLiteProviderFactory.CreateCommandBuilder()">
  3351. <summary>Creates and returns a <see cref="T:Devart.Data.SQLite.SQLiteCommandBuilder" /> object. </summary>
  3352. <keywords>SQLiteProviderFactory.CreateCommandBuilder method </keywords>
  3353. <returns>A <see cref="T:Devart.Data.SQLite.SQLiteCommandBuilder" /> object. </returns>
  3354. </member>
  3355. <member name="M:Devart.Data.SQLite.SQLiteProviderFactory.CreateConnection()">
  3356. <summary>Creates and returns a <see cref="T:Devart.Data.SQLite.SQLiteConnection" /> object. </summary>
  3357. <keywords>SQLiteProviderFactory.CreateConnection method </keywords>
  3358. <returns>A <see cref="T:Devart.Data.SQLite.SQLiteConnection" /> object. </returns>
  3359. </member>
  3360. <member name="M:Devart.Data.SQLite.SQLiteProviderFactory.CreateConnectionStringBuilder()">
  3361. <summary>Creates and returns a <see cref="T:Devart.Data.SQLite.SQLiteConnectionStringBuilder" /> object. </summary>
  3362. <keywords>SQLiteProviderFactory.CreateConnectionStringBuilder method </keywords>
  3363. <returns>A <see cref="T:Devart.Data.SQLite.SQLiteConnectionStringBuilder" /> object. </returns>
  3364. </member>
  3365. <member name="M:Devart.Data.SQLite.SQLiteProviderFactory.CreateDataAdapter()">
  3366. <summary>Creates and returns a <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" /> object. </summary>
  3367. <keywords>SQLiteProviderFactory.CreateDataAdapter method </keywords>
  3368. <returns>A <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" /> object. </returns>
  3369. </member>
  3370. <member name="M:Devart.Data.SQLite.SQLiteProviderFactory.CreateParameter()">
  3371. <summary>Creates and returns a <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> object. </summary>
  3372. <keywords>SQLiteProviderFactory.CreateParameter method </keywords>
  3373. <returns>A <see cref="T:Devart.Data.SQLite.SQLiteParameter" /> object. </returns>
  3374. </member>
  3375. <member name="F:Devart.Data.SQLite.SQLiteProviderFactory.Instance">
  3376. <summary>Returns the instance of <see cref="T:Devart.Data.SQLite.SQLiteProviderFactory" />. </summary>
  3377. <keywords>SQLiteProviderFactory.Instance field </keywords>
  3378. </member>
  3379. <member name="T:Devart.Data.SQLite.SQLiteRowUpdatedEventArgs">
  3380. <summary>Provides data for the <see cref="E:Devart.Data.SQLite.SQLiteDataAdapter.RowUpdated" /> event. </summary>
  3381. </member>
  3382. <member name="M:Devart.Data.SQLite.SQLiteRowUpdatedEventArgs.#ctor(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)">
  3383. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteRowUpdatedEventArgs" /> class. </summary>
  3384. <param name="row">The <see cref="T:System.Data.DataRow" /> sent through an update operation. </param>
  3385. <param name="command">The <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update()" /> is called. </param>
  3386. <param name="statementType">One of the <see cref="T:System.Data.StatementType" /> values that specifies the type of query executed. </param>
  3387. <param name="tableMapping">The <see cref="T:System.Data.Common.DataTableMapping" /> sent through <see cref="M:System.Data.Common.DbDataAdapter.Update()" />. </param>
  3388. </member>
  3389. <member name="P:Devart.Data.SQLite.SQLiteRowUpdatedEventArgs.Command">
  3390. <summary>Gets the <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update()" /> is called. </summary>
  3391. <keywords>SQLiteRowUpdatedEventArgs.Command property </keywords>
  3392. <value>The <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> to execute when <see cref="M:System.Data.Common.DbDataAdapter.Update()" /> is called. </value>
  3393. </member>
  3394. <member name="T:Devart.Data.SQLite.SQLiteRowUpdatedEventHandler">
  3395. <summary>Represents the method that will handle the <see cref="E:Devart.Data.SQLite.SQLiteDataAdapter.RowUpdated" /> event of an <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" />. </summary>
  3396. <keywords>SQLiteRowUpdatedEventHandler delegate </keywords>
  3397. <param name="sender">The source of the event. </param>
  3398. <param name="e">The <see cref="T:Devart.Data.SQLite.SQLiteRowUpdatedEventArgs" /> object that contains the event data. </param>
  3399. </member>
  3400. <member name="T:Devart.Data.SQLite.SQLiteRowUpdatingEventArgs">
  3401. <summary>Provides data for the <see cref="E:Devart.Data.SQLite.SQLiteDataAdapter.RowUpdating" /> event. This class cannot be inherited. </summary>
  3402. </member>
  3403. <member name="M:Devart.Data.SQLite.SQLiteRowUpdatingEventArgs.#ctor(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)">
  3404. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteRowUpdatingEventArgs" /> class. </summary>
  3405. <param name="row">The <see cref="T:System.Data.DataRow" /> to update. </param>
  3406. <param name="command">The <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> to execute during <see cref="M:System.Data.Common.DbDataAdapter.Update()" /> is called. </param>
  3407. <param name="statementType">One of the <see cref="T:System.Data.StatementType" /> values that specifies the type of query executed. </param>
  3408. <param name="tableMapping">The <see cref="T:System.Data.Common.DataTableMapping" /> sent through <see cref="M:System.Data.Common.DbDataAdapter.Update()" />. </param>
  3409. </member>
  3410. <member name="P:Devart.Data.SQLite.SQLiteRowUpdatingEventArgs.Command">
  3411. <summary>Gets or sets the <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> to execute when <see cref="M:System.Data.Common.DbDataAdapter.Update()" /> is called. </summary>
  3412. <keywords>SQLiteRowUpdatingEventArgs.Command property </keywords>
  3413. <value>The <see cref="T:Devart.Data.SQLite.SQLiteCommand" /> to execute when <see cref="M:System.Data.Common.DbDataAdapter.Update()" /> is called. </value>
  3414. </member>
  3415. <member name="T:Devart.Data.SQLite.SQLiteRowUpdatingEventHandler">
  3416. <summary>Represents the method that will handle the <see cref="E:Devart.Data.SQLite.SQLiteDataAdapter.RowUpdating" /> event of an <see cref="T:Devart.Data.SQLite.SQLiteDataAdapter" />. </summary>
  3417. <keywords>SQLiteRowUpdatingEventHandler delegate </keywords>
  3418. <param name="sender">The source of the event. </param>
  3419. <param name="e">The <see cref="T:Devart.Data.SQLite.SQLiteRowUpdatingEventArgs" /> object that contains the event data. </param>
  3420. </member>
  3421. <member name="T:Devart.Data.SQLite.SQLiteScalarFunction">
  3422. <summary>Base class for user-defined scalar functions. </summary>
  3423. </member>
  3424. <member name="M:Devart.Data.SQLite.SQLiteScalarFunction.#ctor(System.String,System.Int32)">
  3425. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteScalarFunction" /> class. </summary>
  3426. <param name="name">User-defined function name to register. </param>
  3427. <param name="argumentCount">Number of arguments, the user-defined function accepts. </param>
  3428. </member>
  3429. <member name="M:Devart.Data.SQLite.SQLiteScalarFunction.Invoke(System.Object[],Devart.Data.SQLite.SQLiteConnection)">
  3430. <summary>Should implement the user-defined function. </summary>
  3431. <keywords>SQLiteScalarFunction.Invoke method </keywords>
  3432. <param name="args">User-defined function arguments. </param>
  3433. <param name="connection">The connection to register the function in. </param>
  3434. <returns>Result of the user-defined scalar function. </returns>
  3435. </member>
  3436. <member name="T:Devart.Data.SQLite.SQLiteScalarFunction`1">
  3437. <summary>Base class for user-defined scalar functions with no parameters. </summary>
  3438. <typeparam name="TResult">Type of the user-defined function result. </typeparam>
  3439. </member>
  3440. <member name="M:Devart.Data.SQLite.SQLiteScalarFunction`1.#ctor(System.String)">
  3441. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteScalarFunction`1" /> class. </summary>
  3442. <param name="name">User-defined function name to register. </param>
  3443. </member>
  3444. <member name="M:Devart.Data.SQLite.SQLiteScalarFunction`1.Execute(Devart.Data.SQLite.SQLiteConnection)">
  3445. <summary>Should implement the user-defined function. </summary>
  3446. <keywords>SQLiteScalarFunction`1.Execute method </keywords>
  3447. <param name="connection">The connection to register the function in. </param>
  3448. <returns>Result of the user-defined scalar function. </returns>
  3449. </member>
  3450. <member name="M:Devart.Data.SQLite.SQLiteScalarFunction`1.Invoke(System.Object[],Devart.Data.SQLite.SQLiteConnection)">
  3451. <summary>Should implement the user-defined function. </summary>
  3452. <keywords>SQLiteScalarFunction`1.Invoke method </keywords>
  3453. <param name="args">User-defined function arguments. </param>
  3454. <param name="connection">The connection to register the function in. </param>
  3455. <returns>Result of the user-defined scalar function. </returns>
  3456. </member>
  3457. <member name="T:Devart.Data.SQLite.SQLiteScalarFunction`2">
  3458. <summary>Base class for user-defined scalar functions with one parameter. </summary>
  3459. <typeparam name="T1">Type of the user-defined function parameter. </typeparam>
  3460. <typeparam name="TResult">Type of the user-defined function result. </typeparam>
  3461. </member>
  3462. <member name="M:Devart.Data.SQLite.SQLiteScalarFunction`2.#ctor(System.String)">
  3463. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteScalarFunction`1" /> class. </summary>
  3464. <param name="name">User-defined function name to register. </param>
  3465. </member>
  3466. <member name="M:Devart.Data.SQLite.SQLiteScalarFunction`2.Execute(`0,Devart.Data.SQLite.SQLiteConnection)">
  3467. <summary>Should implement the user-defined function. </summary>
  3468. <keywords>SQLiteScalarFunction`2.Execute method </keywords>
  3469. <param name="arg1">User-defined function argument. </param>
  3470. <param name="connection">The connection to register the function in. </param>
  3471. <returns>Result of the user-defined scalar function. </returns>
  3472. </member>
  3473. <member name="M:Devart.Data.SQLite.SQLiteScalarFunction`2.Invoke(System.Object[],Devart.Data.SQLite.SQLiteConnection)">
  3474. <summary>Should implement the user-defined function. </summary>
  3475. <keywords>SQLiteScalarFunction`2.Invoke method </keywords>
  3476. <param name="args">User-defined function arguments. </param>
  3477. <param name="connection">The connection to register the function in. </param>
  3478. <returns>Result of the user-defined scalar function. </returns>
  3479. </member>
  3480. <member name="T:Devart.Data.SQLite.SQLiteScalarFunction`3">
  3481. <summary>Base class for user-defined scalar functions with two parameters. </summary>
  3482. <typeparam name="T1">Type of the first user-defined function parameter. </typeparam>
  3483. <typeparam name="T2">Type of the second user-defined function parameter. </typeparam>
  3484. <typeparam name="TResult">Type of the user-defined function result. </typeparam>
  3485. </member>
  3486. <member name="M:Devart.Data.SQLite.SQLiteScalarFunction`3.#ctor(System.String)">
  3487. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteScalarFunction`1" /> class. </summary>
  3488. <param name="name">User-defined function name to register. </param>
  3489. </member>
  3490. <member name="M:Devart.Data.SQLite.SQLiteScalarFunction`3.Execute(`0,`1,Devart.Data.SQLite.SQLiteConnection)">
  3491. <summary>Should implement the user-defined function. </summary>
  3492. <keywords>SQLiteScalarFunction`3.Execute method </keywords>
  3493. <param name="arg1">First user-defined function argument. </param>
  3494. <param name="arg2">Second user-defined function argument. </param>
  3495. <param name="connection">The connection to register the function in. </param>
  3496. <returns>Result of the user-defined scalar function. </returns>
  3497. </member>
  3498. <member name="M:Devart.Data.SQLite.SQLiteScalarFunction`3.Invoke(System.Object[],Devart.Data.SQLite.SQLiteConnection)">
  3499. <summary>Should implement the user-defined function. </summary>
  3500. <keywords>SQLiteScalarFunction`3.Invoke method </keywords>
  3501. <param name="args">User-defined function arguments. </param>
  3502. <param name="connection">The connection to register the function in. </param>
  3503. <returns>Result of the user-defined scalar function. </returns>
  3504. </member>
  3505. <member name="T:Devart.Data.SQLite.SQLiteScalarFunction`4">
  3506. <summary>Base class for user-defined scalar functions with three parameters. </summary>
  3507. <typeparam name="T1">Type of the first user-defined function parameter. </typeparam>
  3508. <typeparam name="T2">Type of the second user-defined function parameter. </typeparam>
  3509. <typeparam name="T3">Type of the third user-defined function parameter. </typeparam>
  3510. <typeparam name="TResult">Type of the user-defined function result. </typeparam>
  3511. </member>
  3512. <member name="M:Devart.Data.SQLite.SQLiteScalarFunction`4.#ctor(System.String)">
  3513. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteScalarFunction`1" /> class. </summary>
  3514. <param name="name">User-defined function name to register. </param>
  3515. </member>
  3516. <member name="M:Devart.Data.SQLite.SQLiteScalarFunction`4.Execute(`0,`1,`2,Devart.Data.SQLite.SQLiteConnection)">
  3517. <summary>Should implement the user-defined function. </summary>
  3518. <keywords>SQLiteScalarFunction`4.Execute method </keywords>
  3519. <param name="arg1">First user-defined function argument. </param>
  3520. <param name="arg2">Second user-defined function argument. </param>
  3521. <param name="arg3">Third user-defined function argument. </param>
  3522. <param name="connection">The connection to register the function in. </param>
  3523. <returns>Result of the user-defined scalar function. </returns>
  3524. </member>
  3525. <member name="M:Devart.Data.SQLite.SQLiteScalarFunction`4.Invoke(System.Object[],Devart.Data.SQLite.SQLiteConnection)">
  3526. <summary>Should implement the user-defined function. </summary>
  3527. <keywords>SQLiteScalarFunction`4.Invoke method </keywords>
  3528. <param name="args">User-defined function arguments. </param>
  3529. <param name="connection">The connection to register the function in. </param>
  3530. <returns>Result of the user-defined scalar function. </returns>
  3531. </member>
  3532. <member name="T:Devart.Data.SQLite.SQLiteScalarFunction`5">
  3533. <summary>Base class for user-defined scalar functions with four parameters. </summary>
  3534. <typeparam name="T1">Type of the first user-defined function parameter. </typeparam>
  3535. <typeparam name="T2">Type of the second user-defined function parameter. </typeparam>
  3536. <typeparam name="T3">Type of the third user-defined function parameter. </typeparam>
  3537. <typeparam name="T4">Type of the fourth user-defined function parameter. </typeparam>
  3538. <typeparam name="TResult">Type of the user-defined function result. </typeparam>
  3539. </member>
  3540. <member name="M:Devart.Data.SQLite.SQLiteScalarFunction`5.#ctor(System.String)">
  3541. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteScalarFunction`1" /> class. </summary>
  3542. <param name="name">User-defined function name to register. </param>
  3543. </member>
  3544. <member name="M:Devart.Data.SQLite.SQLiteScalarFunction`5.Execute(`0,`1,`2,`3,Devart.Data.SQLite.SQLiteConnection)">
  3545. <summary>Should implement the user-defined function. </summary>
  3546. <keywords>SQLiteScalarFunction`5.Execute method </keywords>
  3547. <param name="arg1">First user-defined function argument. </param>
  3548. <param name="arg2">Second user-defined function argument. </param>
  3549. <param name="arg3">Third user-defined function argument. </param>
  3550. <param name="arg4">Fourth user-defined function argument. </param>
  3551. <param name="connection">The connection to register the function in. </param>
  3552. <returns>Result of the user-defined scalar function. </returns>
  3553. </member>
  3554. <member name="M:Devart.Data.SQLite.SQLiteScalarFunction`5.Invoke(System.Object[],Devart.Data.SQLite.SQLiteConnection)">
  3555. <summary>Should implement the user-defined function. </summary>
  3556. <keywords>SQLiteScalarFunction`5.Invoke method </keywords>
  3557. <param name="args">User-defined function arguments. </param>
  3558. <param name="connection">The connection to register the function in. </param>
  3559. <returns>Result of the user-defined scalar function. </returns>
  3560. </member>
  3561. <member name="T:Devart.Data.SQLite.SQLiteScalarFunction`6">
  3562. <summary>Base class for user-defined scalar functions with four parameters. </summary>
  3563. <typeparam name="T1">Type of the first user-defined function parameter. </typeparam>
  3564. <typeparam name="T2">Type of the second user-defined function parameter. </typeparam>
  3565. <typeparam name="T3">Type of the third user-defined function parameter. </typeparam>
  3566. <typeparam name="T4">Type of the fourth user-defined function parameter. </typeparam>
  3567. <typeparam name="T5">Type of the fifth user-defined function parameter. </typeparam>
  3568. <typeparam name="TResult">Type of the user-defined function result. </typeparam>
  3569. </member>
  3570. <member name="T:Devart.Data.SQLite.SQLiteScalarFunction`7">
  3571. <summary>Base class for user-defined scalar functions with four parameters. </summary>
  3572. <typeparam name="T1">Type of the first user-defined function parameter. </typeparam>
  3573. <typeparam name="T2">Type of the second user-defined function parameter. </typeparam>
  3574. <typeparam name="T3">Type of the third user-defined function parameter. </typeparam>
  3575. <typeparam name="T4">Type of the fourth user-defined function parameter. </typeparam>
  3576. <typeparam name="T5">Type of the fifth user-defined function parameter. </typeparam>
  3577. <typeparam name="T6">Type of the sixth user-defined function parameter. </typeparam>
  3578. <typeparam name="TResult">Type of the user-defined function result. </typeparam>
  3579. </member>
  3580. <member name="T:Devart.Data.SQLite.SQLiteScalarFunction`8">
  3581. <summary>Base class for user-defined scalar functions with four parameters. </summary>
  3582. <typeparam name="T1">Type of the first user-defined function parameter. </typeparam>
  3583. <typeparam name="T2">Type of the second user-defined function parameter. </typeparam>
  3584. <typeparam name="T3">Type of the third user-defined function parameter. </typeparam>
  3585. <typeparam name="T4">Type of the fourth user-defined function parameter. </typeparam>
  3586. <typeparam name="T5">Type of the fifth user-defined function parameter. </typeparam>
  3587. <typeparam name="T6">Type of the sixth user-defined function parameter. </typeparam>
  3588. <typeparam name="T7">Type of the seventh user-defined function parameter. </typeparam>
  3589. <typeparam name="TResult">Type of the user-defined function result. </typeparam>
  3590. </member>
  3591. <member name="T:Devart.Data.SQLite.SQLiteScalarFunction`9">
  3592. <summary>Base class for user-defined scalar functions with four parameters. </summary>
  3593. <typeparam name="T1">Type of the first user-defined function parameter. </typeparam>
  3594. <typeparam name="T2">Type of the second user-defined function parameter. </typeparam>
  3595. <typeparam name="T3">Type of the third user-defined function parameter. </typeparam>
  3596. <typeparam name="T4">Type of the fourth user-defined function parameter. </typeparam>
  3597. <typeparam name="T5">Type of the fifth user-defined function parameter. </typeparam>
  3598. <typeparam name="T6">Type of the sixth user-defined function parameter. </typeparam>
  3599. <typeparam name="T7">Type of the seventh user-defined function parameter. </typeparam>
  3600. <typeparam name="T8">Type of the eighth user-defined function parameter. </typeparam>
  3601. <typeparam name="TResult">Type of the user-defined function result. </typeparam>
  3602. </member>
  3603. <member name="T:Devart.Data.SQLite.SQLiteScript">
  3604. <summary>Serves to execute series of SQL statements separated by special symbols. </summary>
  3605. </member>
  3606. <member name="M:Devart.Data.SQLite.SQLiteScript.#ctor()">
  3607. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteScript" /> class. </summary>
  3608. <overloads>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteScript" /> class. </overloads>
  3609. </member>
  3610. <member name="M:Devart.Data.SQLite.SQLiteScript.#ctor(System.IO.Stream)">
  3611. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteScript" /> class with a <b>Stream</b> object to get SQL statements from. </summary>
  3612. <param name="stream">A <b>Stream</b> object that contains the script text. </param>
  3613. </member>
  3614. <member name="M:Devart.Data.SQLite.SQLiteScript.#ctor(System.IO.Stream,Devart.Data.SQLite.SQLiteConnection)">
  3615. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteScript" /> class with a <b>Stream</b> object to get SQL statements from and a <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> object. </summary>
  3616. <param name="stream">A <b>Stream</b> object that contains the script text. </param>
  3617. <param name="connection">A <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> object that represents the connection to a database. </param>
  3618. </member>
  3619. <member name="M:Devart.Data.SQLite.SQLiteScript.#ctor(System.IO.TextReader)">
  3620. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteScript" /> class with a <b>TextReader</b> object to get SQL statements from. </summary>
  3621. <param name="reader">A <b>TextReader</b> object that contains the script text. </param>
  3622. </member>
  3623. <member name="M:Devart.Data.SQLite.SQLiteScript.#ctor(System.IO.TextReader,Devart.Data.SQLite.SQLiteConnection)">
  3624. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteScript" /> class with a <b>TextReader</b> object to get SQL statements from and a <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> object. </summary>
  3625. <param name="reader">A <b>TextReader</b> object that contains the script text. </param>
  3626. <param name="connection">A <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> object that represents the connection to a database. </param>
  3627. </member>
  3628. <member name="M:Devart.Data.SQLite.SQLiteScript.#ctor(System.String)">
  3629. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteScript" /> class with the text of the query. </summary>
  3630. <param name="scriptText">The text of the query. </param>
  3631. </member>
  3632. <member name="M:Devart.Data.SQLite.SQLiteScript.#ctor(System.String,Devart.Data.SQLite.SQLiteConnection)">
  3633. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteScript" /> class with the text of the query and a <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> object. </summary>
  3634. <param name="scriptText">The text of the query. </param>
  3635. <param name="connection">A <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> object that represents the connection to a database. </param>
  3636. </member>
  3637. <member name="P:Devart.Data.SQLite.SQLiteScript.Connection">
  3638. <summary>Gets or sets the <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> used by this instance of the <see cref="T:Devart.Data.SQLite.SQLiteScript" />. </summary>
  3639. <keywords>SQLiteScript.Connection property </keywords>
  3640. <value>The connection to a data source. The default value is a null reference. </value>
  3641. </member>
  3642. <member name="P:Devart.Data.SQLite.SQLiteScript.ScriptText">
  3643. <summary>Gets or sets text of the script. </summary>
  3644. <keywords>SQLiteScript.ScriptText property </keywords>
  3645. <value>Script text. The default value is an empty string (""). </value>
  3646. </member>
  3647. <member name="T:Devart.Data.SQLite.SQLiteSecureDelete">
  3648. <summary>Determines whether to overwrite the deleted data with zeroes. </summary>
  3649. </member>
  3650. <member name="F:Devart.Data.SQLite.SQLiteSecureDelete.Default">
  3651. <summary>Use default SQLite secure deleting settings. </summary>
  3652. </member>
  3653. <member name="F:Devart.Data.SQLite.SQLiteSecureDelete.Off">
  3654. <summary>The deleted data is not overwritten with zeroes. </summary>
  3655. </member>
  3656. <member name="F:Devart.Data.SQLite.SQLiteSecureDelete.On">
  3657. <summary>The deleted data is overwritten with zeroes. </summary>
  3658. </member>
  3659. <member name="T:Devart.Data.SQLite.SQLiteSelectLimit">
  3660. <summary>Represents SQLite LIMIT clause. </summary>
  3661. </member>
  3662. <member name="M:Devart.Data.SQLite.SQLiteSelectLimit.#ctor()">
  3663. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteSelectLimit" /> class. </summary>
  3664. <overloads>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteSelectLimit" /> class. </overloads>
  3665. </member>
  3666. <member name="M:Devart.Data.SQLite.SQLiteSelectLimit.#ctor(System.Int32,System.Int32)">
  3667. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteSelectLimit" /> class with given offset and count values. </summary>
  3668. <param name="offset">The limit offset value. </param>
  3669. <param name="count">The limit count value. </param>
  3670. </member>
  3671. <member name="M:Devart.Data.SQLite.SQLiteSelectLimit.#ctor(System.String,System.String)">
  3672. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteSelectLimit" /> class with given offset and count values. </summary>
  3673. <param name="offset">The limit offset value. </param>
  3674. <param name="count">The limit count value. </param>
  3675. </member>
  3676. <member name="P:Devart.Data.SQLite.SQLiteSelectLimit.Count">
  3677. <summary>Gets or sets the limit count value. </summary>
  3678. <keywords>SQLiteSelectLimit.Count property </keywords>
  3679. <value>The limit count value. </value>
  3680. </member>
  3681. <member name="P:Devart.Data.SQLite.SQLiteSelectLimit.Offset">
  3682. <summary>Gets or sets the limit offset value. </summary>
  3683. <keywords>SQLiteSelectLimit.Offset property </keywords>
  3684. <value>The limit offset value. </value>
  3685. </member>
  3686. <member name="M:Devart.Data.SQLite.SQLiteSelectLimit.ToString()">
  3687. <summary>Returns a <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />. </summary>
  3688. <keywords>SQLiteSelectLimit.ToString method </keywords>
  3689. <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Object" />. </returns>
  3690. </member>
  3691. <member name="T:Devart.Data.SQLite.SQLiteSelectStatement">
  3692. <summary>Represents SQLite SELECT statement. </summary>
  3693. </member>
  3694. <member name="M:Devart.Data.SQLite.SQLiteSelectStatement.#ctor()">
  3695. <summary>Creates a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteSelectStatement">SQLiteSelectStatement</see> class. </summary>
  3696. </member>
  3697. <member name="M:Devart.Data.SQLite.SQLiteSelectStatement.Clear()">
  3698. <summary>Clears all parts of the <see cref="T:Devart.Data.SQLite.SQLiteSelectStatement">SQLiteSelectStatement</see>. </summary>
  3699. <keywords>SQLiteSelectStatement.Clear method </keywords>
  3700. </member>
  3701. <member name="P:Devart.Data.SQLite.SQLiteSelectStatement.Limit">
  3702. <summary>Gets or sets the LIMIT clause for the statement. </summary>
  3703. <keywords>SQLiteSelectStatement.Limit property </keywords>
  3704. <value>The LIMIT clause for the statement. </value>
  3705. </member>
  3706. <member name="M:Devart.Data.SQLite.SQLiteSelectStatement.Parse(System.String,Devart.Common.ParserBehavior)">
  3707. <summary>Converts the specified SELECT statement to a <see cref="T:Devart.Data.SQLite.SQLiteSelectStatement">SQLiteSelectStatement</see> object. </summary>
  3708. <keywords>SQLiteSelectStatement.Parse method </keywords>
  3709. <param name="text">The statement to parse. </param>
  3710. <param name="behavior">One of the <see cref="T:Devart.Common.ParserBehavior" /> values. Determines what parts of the statement to analyze. </param>
  3711. <returns>A <see cref="T:Devart.Data.SQLite.SQLiteSelectStatement">SQLiteSelectStatement</see> object that represents the specified SELECT statement. </returns>
  3712. </member>
  3713. <member name="M:Devart.Data.SQLite.SQLiteSelectStatement.TryParse(System.String,Devart.Common.ParserBehavior,Devart.Data.SQLite.SQLiteSelectStatement@)">
  3714. <summary>Tries to convert the specified SELECT statement to a <see cref="T:Devart.Data.SQLite.SQLiteSelectStatement">SQLiteSelectStatement</see> object. </summary>
  3715. <keywords>SQLiteSelectStatement.TryParse method </keywords>
  3716. <param name="text">The statement to parse. </param>
  3717. <param name="behavior">One of the <see cref="T:Devart.Common.ParserBehavior" /> values. Determines what parts of the statement to analyze. </param>
  3718. <param name="statement">A <see cref="T:Devart.Data.SQLite.SQLiteSelectStatement">SQLiteSelectStatement</see> object that represents the specified SELECT statement. </param>
  3719. <returns>
  3720. <see langword="true" /> if the conversion was successful; otherwise, <see langword="false" /> </returns>
  3721. </member>
  3722. <member name="T:Devart.Data.SQLite.SQLiteText">
  3723. <summary>Represents a variable-length stream of characters to be stored in or retrieved from the database. </summary>
  3724. </member>
  3725. <member name="M:Devart.Data.SQLite.SQLiteText.#ctor()">
  3726. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteText" /> class. </summary>
  3727. <overloads>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteText" /> class. </overloads>
  3728. </member>
  3729. <member name="M:Devart.Data.SQLite.SQLiteText.#ctor(System.String)">
  3730. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteText" /> class, setting the <see cref="P:Devart.Data.SQLite.SQLiteText.Value" /> property to the specified string. </summary>
  3731. <param name="value">The string to store. </param>
  3732. </member>
  3733. <member name="M:Devart.Data.SQLite.SQLiteText.#ctor(System.String,System.Boolean)">
  3734. <summary>Initializes a new instance of the <see cref="T:Devart.Data.SQLite.SQLiteText" /> class, setting the <see cref="P:Devart.Data.SQLite.SQLiteText.Value" /> property to the specified string and specifying what encoding will be used. </summary>
  3735. <param name="value">The string to store. </param>
  3736. <param name="isUnicode16"><see langword="true" />, if client charset UTF8 is used; <see langword="false" />, if default client charset is used. </param>
  3737. </member>
  3738. <member name="M:Devart.Data.SQLite.SQLiteText.Equals(System.Object)">
  3739. <summary>Compares the specified object parameter to the <see cref="T:Devart.Data.SQLite.SQLiteText" /> value. </summary>
  3740. <keywords>SQLiteText.Equals method </keywords>
  3741. <param name="obj">The object to be compared. </param>
  3742. <returns><see langword="true" /> if object is an instance of the <see cref="T:Devart.Data.SQLite.SQLiteText" /> and has the same date and time; otherwise, <see langword="false" />. </returns>
  3743. </member>
  3744. <member name="P:Devart.Data.SQLite.SQLiteText.IsUnicode16">
  3745. <summary>Gets or sets a value indicating whether the <see cref="T:Devart.Data.SQLite.SQLiteText" /> uses UTF16 encoding. </summary>
  3746. <keywords>SQLiteText.IsUnicode16 property </keywords>
  3747. <value>If <b>true</b>, the <see cref="T:Devart.Data.SQLite.SQLiteText" /> connection uses UTF16 encoding; otherwise it uses UTF8. </value>
  3748. </member>
  3749. <member name="F:Devart.Data.SQLite.SQLiteText.Null">
  3750. <summary>Represents a null value that can be assigned to the <see cref="P:Devart.Data.SQLite.SQLiteText.Value" /> property of the <see cref="T:Devart.Data.SQLite.SQLiteText" /> object. </summary>
  3751. <keywords>SQLiteText.Null field </keywords>
  3752. </member>
  3753. <member name="M:Devart.Data.SQLite.SQLiteText.ToString()">
  3754. <summary>Gets the string representation of the <see cref="T:Devart.Data.SQLite.SQLiteText" /> object. </summary>
  3755. <keywords>SQLiteText.ToString method </keywords>
  3756. <returns>The string representation of the <see cref="T:Devart.Data.SQLite.SQLiteText" /> object. </returns>
  3757. </member>
  3758. <member name="P:Devart.Data.SQLite.SQLiteText.Value">
  3759. <summary>Gets the string that is stored in the specified <see cref="T:Devart.Data.SQLite.SQLiteText" /> object. </summary>
  3760. <keywords>SQLiteText.Value property </keywords>
  3761. <value>The string to be stored or value retrieved from database. </value>
  3762. </member>
  3763. <member name="T:Devart.Data.SQLite.SQLiteTransaction">
  3764. <summary>Represents a SQL transaction to be made in the SQLite database. </summary>
  3765. </member>
  3766. <member name="M:Devart.Data.SQLite.SQLiteTransaction.Commit()">
  3767. <summary>Commits the database transaction. </summary>
  3768. <keywords>SQLiteTransaction.Commit method </keywords>
  3769. </member>
  3770. <member name="P:Devart.Data.SQLite.SQLiteTransaction.Connection">
  3771. <summary>Gets the <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> object associated with the transaction, or <see langword="null" /> if the transaction is no longer valid. </summary>
  3772. <keywords>SQLiteTransaction.Connection property </keywords>
  3773. <value>The <see cref="T:Devart.Data.SQLite.SQLiteConnection">SQLiteConnection</see> object associated with the transaction. </value>
  3774. </member>
  3775. <member name="P:Devart.Data.SQLite.SQLiteTransaction.IsolationLevel">
  3776. <summary>Specifies the <see cref="T:System.Data.IsolationLevel" /> for this transaction. </summary>
  3777. <keywords>SQLiteTransaction.IsolationLevel property </keywords>
  3778. <value>The <see cref="T:System.Data.IsolationLevel" /> for this transaction. The default value is IsolationLevel.ReadCommitted. </value>
  3779. </member>
  3780. <member name="M:Devart.Data.SQLite.SQLiteTransaction.Rollback()">
  3781. <summary>Rolls back a database transaction from a pending state. </summary>
  3782. <keywords>SQLiteTransaction.Rollback method </keywords>
  3783. </member>
  3784. <member name="T:Devart.Data.SQLite.SQLiteTransactionMode">
  3785. <summary>Determines how the database is locked during transactions. </summary>
  3786. </member>
  3787. <member name="F:Devart.Data.SQLite.SQLiteTransactionMode.Deferred">
  3788. <summary>No locks are acquired on the database until the database is first accessed. The first read operation against a database creates a shared lock and the first write operation creates a reserved lock. This is the default behavior. </summary>
  3789. </member>
  3790. <member name="F:Devart.Data.SQLite.SQLiteTransactionMode.Exclusive">
  3791. <summary>An exclusive transaction causes exclusive locks to be acquired on all databases. No other thread or process will be able to read or write the database until the transaction is complete. </summary>
  3792. </member>
  3793. <member name="F:Devart.Data.SQLite.SQLiteTransactionMode.Immediate">
  3794. <summary>Reserved locks are acquired on all databases without waiting for the database to be used. No other thread or process will be able to write to the database or initiate immediate or exclusive transactions. However, other processes can continue to read from the database. </summary>
  3795. </member>
  3796. <member name="T:Devart.Data.SQLite.SQLiteType">
  3797. <summary>Specifies the data type of a field or a parameter. </summary>
  3798. </member>
  3799. <member name="F:Devart.Data.SQLite.SQLiteType.Blob">
  3800. <summary>The SQLite BLOB data type that contains a variable-length stream of binary data. Represented as the array of <see cref="T:System.Byte" />. </summary>
  3801. </member>
  3802. <member name="F:Devart.Data.SQLite.SQLiteType.DateTime">
  3803. <summary>The SQLite DATETIME data type that contains a fixed-length representation of a date and time value. Represented as the <see cref="T:System.DateTime" />. </summary>
  3804. </member>
  3805. <member name="F:Devart.Data.SQLite.SQLiteType.Double">
  3806. <summary>The SQLite DOUBLE data type. Represented as the <see cref="T:System.Double" />. </summary>
  3807. </member>
  3808. <member name="F:Devart.Data.SQLite.SQLiteType.Guid">
  3809. <summary>The GUID data type that contains a 16-byte Guid. Represented as the <see cref="T:System.Guid" />. </summary>
  3810. </member>
  3811. <member name="F:Devart.Data.SQLite.SQLiteType.Int16">
  3812. <summary>The SQLite SMALLINT data type that contains a 32-bit signed integer. Represented as the <see cref="T:System.Int16" />. </summary>
  3813. </member>
  3814. <member name="F:Devart.Data.SQLite.SQLiteType.Int32">
  3815. <summary>The SQLite INT data type that contains a 32-bit signed integer. Represented as the <see cref="T:System.Int32" />. </summary>
  3816. </member>
  3817. <member name="F:Devart.Data.SQLite.SQLiteType.Int64">
  3818. <summary>The SQLite LONG data type that contains a 32-bit signed integer. Represented as the <see cref="T:System.Int64" />. </summary>
  3819. </member>
  3820. <member name="F:Devart.Data.SQLite.SQLiteType.Null">
  3821. <summary>The database NULL value, represented as <b>DBNull.Value</b>. </summary>
  3822. </member>
  3823. <member name="F:Devart.Data.SQLite.SQLiteType.Text">
  3824. <summary>The SQLite TEXT data type that contains a variable-length character string. Represented as the <see cref="T:System.String" />. </summary>
  3825. </member>
  3826. <member name="F:Devart.Data.SQLite.SQLiteType.Time">
  3827. <summary>The TIME data type that contains a fixed-length representation of a time value. Represented as the <see cref="T:System.TimeSpan" />. </summary>
  3828. </member>
  3829. <member name="F:Devart.Data.SQLite.SQLiteType.Uninitialized">
  3830. <summary>Data type not initialized. </summary>
  3831. </member>
  3832. <member name="T:Devart.Data.SQLite.SynchronizationMode">
  3833. <summary>Determines how the database is synchronized with writing to hard disk. </summary>
  3834. </member>
  3835. <member name="F:Devart.Data.SQLite.SynchronizationMode.Full">
  3836. <summary>The database engine will pause at critical moments to make sure that data has actually been written to the disk surface before continuing. </summary>
  3837. </member>
  3838. <member name="F:Devart.Data.SQLite.SynchronizationMode.Normal">
  3839. <summary>The database engine will still pause at the most critical moments, but less often than in Full mode. The Normal mode is faster than the Full mode. This is the default mode. </summary>
  3840. </member>
  3841. <member name="F:Devart.Data.SQLite.SynchronizationMode.Off">
  3842. <summary>The database engine continues without pausing as soon as it has handed data off to the operating system. The database might become corrupted if the operating system crashes or the computer loses power. This is the fastest mode. </summary>
  3843. </member>
  3844. <member name="T:Devart.Data.SQLite.TempStoreMode">
  3845. <summary>Determines where temporary tables and indices are stored. </summary>
  3846. </member>
  3847. <member name="F:Devart.Data.SQLite.TempStoreMode.Default">
  3848. <summary>The location of temporary data is defined by C preprocessor macro TEMP_STORE. Currently the generally available library stores temporary data in memory. </summary>
  3849. </member>
  3850. <member name="F:Devart.Data.SQLite.TempStoreMode.File">
  3851. <summary>The temporary data is located in a file, in the directory specified by the <see cref="P:Devart.Data.SQLite.SQLiteConnectionStringBuilder.TempStoreDirectory" /> property. </summary>
  3852. </member>
  3853. <member name="F:Devart.Data.SQLite.TempStoreMode.Memory">
  3854. <summary>The temporary data is located in memory. </summary>
  3855. </member>
  3856. </members>
  3857. </doc>