Exemplo n.º 1
0
 internal static extern ResultType AddDataChangeCallback(SafeDataControlHandle provider, DataChangeCallback callback,
                                                         IntPtr userData, AddCallbackResultCallback resultCallback, IntPtr resultCbUserData, out int callbackID);
Exemplo n.º 2
0
 internal static extern ResultType RemoveDataChangeCallback(SafeDataControlHandle provider, int callbackID);
Exemplo n.º 3
0
 internal static extern string CreateDeleteStatement(SafeDataControlHandle provider, string where);
Exemplo n.º 4
0
 internal static extern string CreateUpdateStatement(SafeDataControlHandle provider, SafeBundleHandle updateData, string where);
Exemplo n.º 5
0
 internal static extern ResultType UnregisterMapResponse(SafeDataControlHandle provider);
Exemplo n.º 6
0
 internal static extern ResultType UnregisterSqlBulkResponseCallback(SafeDataControlHandle provider);
Exemplo n.º 7
0
 internal static extern ResultType MapRemove(SafeDataControlHandle provider, string key, string value, out int requestId);
Exemplo n.º 8
0
 internal static extern ResultType DataControlGetDataId(SafeDataControlHandle handle, out string dataId);
Exemplo n.º 9
0
 internal static extern ResultType Update(SafeDataControlHandle provider, SafeBundleHandle updatetData, string where, out int requestID);
Exemplo n.º 10
0
 internal static extern ResultType MapSet(SafeDataControlHandle provider, string key, string oldValue, string newValue, out int requestId);
Exemplo n.º 11
0
 internal static extern ResultType Delete(SafeDataControlHandle provider, string where, out int requestID);
Exemplo n.º 12
0
 internal static extern ResultType Select(SafeDataControlHandle provider, string[] columnList, int columnCount, string where, string order, int pageNumber,
                                          int countPerPage, out int requestID);
Exemplo n.º 13
0
 internal static extern ResultType Insert(SafeDataControlHandle provider, SafeBundleHandle insertData, out int requestId);
Exemplo n.º 14
0
 internal static extern ResultType DataControlCreate(out SafeDataControlHandle handle);
Exemplo n.º 15
0
 internal static extern ResultType MapGet(SafeDataControlHandle provider, string key, out int requestId, int pageNumber,
                                          int countPerPage);
Exemplo n.º 16
0
 internal static extern ResultType DataControlSetProviderId(SafeDataControlHandle handle, string providerId);
Exemplo n.º 17
0
 internal static extern ResultType BulkAdd(SafeDataControlHandle provider, SafeBulkDataHandle insertData, out int requestID);
Exemplo n.º 18
0
 internal static extern ResultType RegisterMapResponse(SafeDataControlHandle provider, ref MapResponseCallbacks callback, IntPtr userData);
Exemplo n.º 19
0
 internal static extern string CreateInsertStatement(SafeDataControlHandle provider, SafeBundleHandle insertData);
Exemplo n.º 20
0
 internal static extern ResultType RegisterMapBulkResponseCallback(SafeDataControlHandle provider, MapBulkAddResponseCallback callback, IntPtr userData);
Exemplo n.º 21
0
 internal static extern ResultType RegisterSqlBulkResponseCallback(SafeDataControlHandle provider, SqlBulkInsertResponseCallback callback, IntPtr userData);