Welcome to mirror list, hosted at ThFree Co, Russian Federation.

libgda.cs « System.Data.OleDb « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 835a0f91bcae1b41a5a67de156740e0ea6b289b7 (plain)
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
//
// System.Data.OleDb.libgda
//
// Authors:
//   Rodrigo Moya (rodrigo@ximian.com)
//   Tim Coleman (tim@timcoleman.com)
//
// Copyright (C) Rodrigo Moya, 2002
// Copyright (C) Tim Coleman, 2002
//

//
// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
// 
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
// 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//

using System.Data;
using System.Data.Common;
using System.Runtime.InteropServices;

namespace System.Data.OleDb
{
	internal enum GdaConnectionOptions {
		ReadOnly = 1 << 0
	};
	
	internal enum GdaCommandOptions {
		IgnoreErrors = 1,
		StopOnErrors = 1 << 1,
		BadOption = 1 << 2,
	};

	internal enum GdaCommandType {
		Sql = 0,
		Xml = 1,
		Procedure = 2,
		Table = 3,
		Schema = 4,
		Invalid = 5
	};

	internal enum GdaTransactionIsolation {
		Unknown,
		ReadCommitted,
		ReadUncommitted,
		RepeatableRead,
		Serializable
	};
	
	internal enum GdaValueType {
		Null = 0,
		Bigint = 1,
		Binary = 2,
		Boolean = 3,
		Date = 4,
		Double = 5,
		GeometricPoint = 6,
		Integer = 7,
		List = 8,
		Numeric = 9,
		Single = 10,
		Smallint = 11,
		String = 12,
		Time = 13,
		Timestamp = 14,
		Tinyint = 15,
		Type = 16,
		Unknown = 17
	};

	[StructLayout(LayoutKind.Sequential)]
	internal class GdaDate
	{
		public short year;
		public ushort month;
		public ushort day;
	}

	[StructLayout(LayoutKind.Sequential)]
	internal class GdaTime
	{
		public ushort hour;
		public ushort minute;
		public ushort second;
		public long timezone;
	}
	
	[StructLayout(LayoutKind.Sequential)]
	internal class GdaTimestamp
	{
		public short year;
		public ushort month;
		public ushort day;
		public ushort hour;
		public ushort minute;
		public ushort second;
		public ulong fraction;
		public long timezone;
	}
	
	[StructLayout(LayoutKind.Sequential)]
	internal class GdaList
	{
		public IntPtr data;
		public IntPtr next;
		public IntPtr prev;
	}
	
	sealed internal class libgda
	{
		private static IntPtr gdaClient = IntPtr.Zero;

		public static IntPtr GdaClient
		{
			get {
				if (gdaClient == IntPtr.Zero)
					gdaClient = gda_client_new ();

				return gdaClient;
			}
		}

		[DllImport("gobject-2.0",
			   EntryPoint="g_object_unref")]
		public static extern void FreeObject (IntPtr obj);

		[DllImport("gda-2")]
		public static extern void gda_init (string app_id, string version, int nargs, string[] args);

		[DllImport("gda-2")]
		public static extern GdaValueType gda_value_get_type (IntPtr value);

		[DllImport("gda-2")]
		public static extern long gda_value_get_bigint (IntPtr value);
		
		[DllImport("gda-2")]
		public static extern bool gda_value_get_boolean (IntPtr value);

		[DllImport("gda-2")]
		public static extern IntPtr gda_value_get_date (IntPtr value);
		
		[DllImport("gda-2")]
		public static extern double gda_value_get_double (IntPtr value);

		[DllImport("gda-2")]
		public static extern int gda_value_get_integer (IntPtr value);
		
		[DllImport("gda-2")]
		public static extern float gda_value_get_single (IntPtr value);
		
		[DllImport("gda-2")]
		public static extern int gda_value_get_smallint (IntPtr value);

		[DllImport("gda-2")]
		public static extern string gda_value_get_string (IntPtr value);

		[DllImport("gda-2")]
		public static extern IntPtr gda_value_get_time (IntPtr value);
		
		[DllImport("gda-2")]
		public static extern IntPtr gda_value_get_timestamp (IntPtr value);
		
		[DllImport("gda-2")]
		public static extern byte gda_value_get_tinyint (IntPtr value);

		[DllImport("gda-2")]
		public static extern bool gda_value_is_null (IntPtr value);
		
		[DllImport("gda-2")]
		public static extern string gda_value_stringify (IntPtr value);
		
		[DllImport("gda-2")]
		public static extern IntPtr gda_parameter_list_new ();

		[DllImport("gda-2")]
		public static extern string gda_type_to_string (GdaValueType type);
		
		[DllImport("gda-2")]
		public static extern int gda_data_model_get_n_rows (IntPtr model);

		[DllImport("gda-2")]
		public static extern int gda_data_model_get_n_columns (IntPtr model);

		[DllImport("gda-2")]
		public static extern IntPtr gda_data_model_get_value_at (IntPtr model, int col, int row);

		[DllImport("gda-2")]
		public static extern string gda_data_model_get_column_title (IntPtr model, int col);

		[DllImport("gda-2")]
		public static extern IntPtr gda_data_model_describe_column (IntPtr model, int col);

		[DllImport("gda-2")]
		public static extern int gda_data_model_get_column_position (IntPtr model, string name);
		
		[DllImport("gda-2")]
		public static extern void gda_field_attributes_free (IntPtr fa);

		[DllImport("gda-2")]
		public static extern string gda_field_attributes_get_name (IntPtr fa);
		
		[DllImport("gda-2")]
		public static extern GdaValueType gda_field_attributes_get_gdatype (IntPtr fa);

		[DllImport("gda-2")]
		public static extern long gda_field_attributes_get_defined_size (IntPtr fa);

		[DllImport("gda-2")]
		public static extern long gda_field_attributes_get_scale (IntPtr fa);

		[DllImport("gda-2")]
		public static extern bool gda_field_attributes_get_allow_null (IntPtr fa);
		
		[DllImport("gda-2")]
		public static extern bool gda_field_attributes_get_primary_key (IntPtr fa);
		
		[DllImport("gda-2")]
		public static extern bool gda_field_attributes_get_unique_key (IntPtr fa);
		
		[DllImport("gda-2")]
		public static extern IntPtr gda_client_new ();

		[DllImport("gda-2")]
		public static extern IntPtr gda_client_open_connection (IntPtr client, string dsn,
									string username, string password,
									GdaConnectionOptions options);

		[DllImport("gda-2")]
		public static extern IntPtr gda_client_open_connection_from_string (IntPtr client,
										    string provider,
										    string cnc_string,
										    GdaConnectionOptions options);

		[DllImport("gda-2")]
		public static extern bool gda_connection_is_open (IntPtr cnc);
		
		[DllImport("gda-2")]
		public static extern bool gda_connection_close (IntPtr cnc);

		[DllImport("gda-2")]
		public static extern string gda_connection_get_server_version (IntPtr cnc);
		
		[DllImport("gda-2")]
		public static extern string gda_connection_get_database (IntPtr cnc);

		[DllImport("gda-2")]
		public static extern string gda_connection_get_dsn (IntPtr cnc);

		[DllImport("gda-2")]
		public static extern string gda_connection_get_cnc_string (IntPtr cnc);

		[DllImport("gda-2")]
		public static extern string gda_connection_get_provider (IntPtr cnc);

		[DllImport("gda-2")]
		public static extern string gda_connection_get_username (IntPtr cnc);

		[DllImport("gda-2")]
		public static extern string gda_connection_get_password (IntPtr cnc);

		[DllImport("gda-2")]
		public static extern bool gda_connection_change_database (IntPtr cnc, string name);
		
		[DllImport("gda-2")]
		public static extern IntPtr gda_transaction_new (string name);

		[DllImport("gda-2")]
		public static extern IntPtr gda_transaction_get_name (IntPtr xaction);

		[DllImport("gda-2")]
		public static extern IntPtr gda_transaction_set_name (IntPtr xaction, string name);

		[DllImport("gda-2")]
		public static extern GdaTransactionIsolation gda_transaction_get_isolation_level (IntPtr xaction);

		[DllImport("gda-2")]
		public static extern void gda_transaction_set_isolation_level (IntPtr xaction,
									       GdaTransactionIsolation level);
		
		[DllImport("gda-2")]
		public static extern bool gda_connection_begin_transaction (IntPtr cnc, IntPtr xaction);

		[DllImport("gda-2")]
		public static extern bool gda_connection_commit_transaction (IntPtr cnc, IntPtr xaction);

		[DllImport("gda-2")]
		public static extern bool gda_connection_rollback_transaction (IntPtr cnc, IntPtr xaction);

		[DllImport("gda-2")]
		public static extern IntPtr gda_connection_execute_command (IntPtr cnc, IntPtr cmd, IntPtr parameterList);
		
		[DllImport("gda-2")]
		public static extern int gda_connection_execute_non_query (IntPtr cnc, IntPtr command, IntPtr parameterList);

		[DllImport("gda-2")]
		public static extern IntPtr gda_connection_execute_single_command (IntPtr cnc, IntPtr command, IntPtr parameterList);

		[DllImport("gda-2")]
		public static extern IntPtr gda_connection_get_errors (IntPtr cnc);

		[DllImport("gda-2")]
		public static extern IntPtr gda_command_new (string text, GdaCommandType type, GdaCommandOptions options);

		[DllImport("gda-2")]
		public static extern void gda_command_set_text (IntPtr cmd, string text);

		[DllImport("gda-2")]
		public static extern void gda_command_set_command_type (IntPtr cmd, GdaCommandType type);

		[DllImport("gda-2")]
		public static extern string gda_error_get_description (IntPtr error);

		[DllImport("gda-2")]
		public static extern long gda_error_get_number (IntPtr error);

		[DllImport("gda-2")]
		public static extern string gda_error_get_source (IntPtr error);
		
		[DllImport("gda-2")]
		public static extern string gda_error_get_sqlstate (IntPtr error);
		
	}
}