forked from HicServices/FAnsiSql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommonMethods.doc.xml
More file actions
34 lines (33 loc) · 988 Bytes
/
Copy pathCommonMethods.doc.xml
File metadata and controls
34 lines (33 loc) · 988 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Methods>
<Method name="GetTopXSql">
<summary>
Returns the SQL required to fetch the first <paramref name="topX" /> records out of the table.
</summary>
<param name="topX">The number of records to fetch</param>
<returns>Sql to execute</returns>
</Method>
<Method name="GetCommand">
<summary>
Returns a DbCommand of the appropriate API type initialized with the given SQL CommandText.
</summary>
</Method>
<Method name="GetDataAdapter">
<summary>
Returns a DbDataAdapter of the appropriate API type (e.g. SqlDataAdapter for sql server).
</summary>
</Method>
<Method name="GetCommandBuilder">
<summary>
Returns a DbCommandBuilder of the appropriate API type (e.g. SqlCommandBuilder for sql server)
</summary>
</Method>
<Method name="GetParameter">
<summary>
Returns a DbParameter of the appropriate API type (e.g. SqlParameter for sql server)
</summary>
</Method>
<Method name="Placeholder">
<summary>
</summary>
</Method>
</Methods>