-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDelegates.vb
More file actions
79 lines (67 loc) · 1.99 KB
/
Copy pathDelegates.vb
File metadata and controls
79 lines (67 loc) · 1.99 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
Imports System.Data.Common
''' <summary>
''' Typed handler for catched Databasic utility exception or sql server error(s).
''' </summary>
''' <param name="ex">Catched Exception In .NET environment.</param>
''' <param name="sqlErrors">Collection of SQL errors sended from SQL server.</param>
Public Delegate Sub ErrorHandler(ex As Exception, sqlErrors As SqlErrorsCollection)
Public Delegate Function ItemCompleter(
reader As DbDataReader
) As Object
Public Delegate Function ItemCompleter(
Of TValue
)(
reader As DbDataReader
) As TValue
Public Delegate Function ItemCompleterWithColumns(
Of TValue
)(
reader As DbDataReader,
readerColumns As List(Of String)
) As TValue
Public Delegate Function ItemCompleterWithColumns(
reader As DbDataReader,
readerColumns As List(Of String)
) As Object
Public Delegate Function ItemCompleterWithAllInfo(
Of TValue
)(
reader As DbDataReader,
readerColumns As List(Of String),
columnsByDbNames As Dictionary(Of String, Databasic.MemberInfo)
) As TValue
Public Delegate Function ItemCompleterWithAllInfo(
reader As DbDataReader,
readerColumns As List(Of String),
columnsByDbNames As Dictionary(Of String, Databasic.MemberInfo)
) As Object
Public Delegate Function InstanceCompleter(
reader As DbDataReader
) As Object
Public Delegate Function InstanceCompleter(
Of TValue
)(
reader As DbDataReader
) As TValue
Public Delegate Function InstanceCompleterWithColumns(
Of TValue
)(
reader As DbDataReader,
readerColumns As List(Of String)
) As TValue
Public Delegate Function InstanceCompleterWithColumns(
reader As DbDataReader,
readerColumns As List(Of String)
) As Object
Public Delegate Function InstanceCompleterWithAllInfo(
Of TValue
)(
reader As DbDataReader,
readerColumns As List(Of String),
columnsByDbNames As Dictionary(Of String, Databasic.MemberInfo)
) As TValue
Public Delegate Function InstanceCompleterWithAllInfo(
reader As DbDataReader,
readerColumns As List(Of String),
columnsByDbNames As Dictionary(Of String, Databasic.MemberInfo)
) As Object