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

ReadPostgresData.cs « Test « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c1fc05b0a194b28d3c8dc794867db317b01434c1 (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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
//
// ReadPostgresData.cs
//
// Uses the PostgresLibrary to retrieve a recordset.
// This is not meant to be used in Production, but as a
// learning aid in coding class System.Data.SqlClient.SqlDataReader.
//
// Bits of code were borrowed from libgda.
//
// Author:
//	Daniel Morgan <danmorg@sc.rr.com>
//
// (C) 2002 Daniel Morgan
//

using System;
using System.Data;
using System.Runtime.InteropServices;
using System.Diagnostics;

namespace LearnToCreateSqlDataReader
{
	sealed public class PostgresHelper {

		public static object OidTypeToSystem (int oid, string value) {
			object obj = null;

			Console.WriteLine("===== oid: " + oid + " value: " + value);

			switch(oid) {
			case 1043: // varchar
				Console.WriteLine("oid 1023 varchar ==> String found");
				obj = (object) String.Copy(value); // String
				break;
			case 25: // text
				Console.WriteLine("oid 25 text ==> String found");
				obj = (object) String.Copy(value); // String
				break;
			case 18: // char
				Console.WriteLine("oid 18 char ==> String found");
				obj = (object) String.Copy(value); // String
				break;
			case 16: // bool
				Console.WriteLine("oid 16 bool ==> Boolean found");
				obj = (object) Boolean.Parse(value);
				break;
			case 21: // int2
				Console.WriteLine("oid 21 int2 ==> Int16 found");
				obj = (object) Int16.Parse(value);
				break;
			case 23: // int4
				Console.WriteLine("oid 23 int4 ==> Int32 found");
				obj = (object) Int32.Parse(value);
				break;
			case 20: // int8
				Console.WriteLine("oid 20 int8 ==> Int64 found");
				obj = (object) Int64.Parse(value);
				break;
			default:
				Console.WriteLine("OidTypeToSystem Not Done Yet: oid: " +
					oid + " Value: " + value);
				break;

			}

			return obj;
		}

		public static Type OidToType (int oid) {
			Type typ = null;

			switch(oid) {
			case 1043: // varchar
			case 25: // text
			case 18: // char
				typ = typeof(String);
				break;
			case 16: // bool
				typ = typeof(Boolean);
				break;
			case 21: // int2
				typ = typeof(Int16);
				break;
			case 23: // int4
				typ = typeof(Int32);
				break;
			case 20: // int8
				typ = typeof(Int64);
				break;
			default:
				throw new NotImplementedException(
					"PGNI2: PostgreSQL oid type " + oid +
					" not mapped to .NET System Type.");
			}
			return typ;
		}

	}

	sealed public class PostgresLibrary {

		public enum ConnStatusType {
			CONNECTION_OK,
			CONNECTION_BAD,
			CONNECTION_STARTED,
			CONNECTION_MADE,
			CONNECTION_AWAITING_RESPONSE,
			CONNECTION_AUTH_OK,			 
			CONNECTION_SETENV		
		} 

		public enum PostgresPollingStatusType {
			PGRES_POLLING_FAILED = 0,
			PGRES_POLLING_READING,
			PGRES_POLLING_WRITING,
			PGRES_POLLING_OK,
			PGRES_POLLING_ACTIVE
		}

		public enum ExecStatusType {
			PGRES_EMPTY_QUERY = 0,
			PGRES_COMMAND_OK,			
			PGRES_TUPLES_OK,			
			PGRES_COPY_OUT,				
			PGRES_COPY_IN,				
			PGRES_BAD_RESPONSE,			
			PGRES_NONFATAL_ERROR,
			PGRES_FATAL_ERROR
		}


		[DllImport("pq")]
		public static extern string PQerrorMessage (IntPtr conn);
		// char *PQerrorMessage(const PGconn *conn);

		[DllImport("pq")]
		public static extern IntPtr PQconnectdb(String conninfo);
		// PGconn *PQconnectdb(const char *conninfo)

		[DllImport("pq")]
		public static extern void PQfinish(IntPtr conn);
		// void PQfinish(PGconn *conn)
		
		[DllImport("pq")]
		public static extern IntPtr PQexec(IntPtr conn,
			String query);
		// PGresult *PQexec(PGconn *conn,	const char *query);

		[DllImport("pq")]
		public static extern int PQntuples (IntPtr res);
		// int PQntuples(const PGresult *res);

		[DllImport("pq")]
		public static extern int PQnfields (IntPtr res);
		// int PQnfields(const PGresult *res);

		[DllImport("pq")]
		public static extern ConnStatusType PQstatus (IntPtr conn);
		// ConnStatusType PQstatus(const PGconn *conn);
		[DllImport("pq")]
		public static extern ExecStatusType PQresultStatus (IntPtr res);
		// ExecStatusType PQresultStatus(const PGresult *res);

		[DllImport("pq")]
		public static extern string PQresStatus (ExecStatusType status);
		// char *PQresStatus(ExecStatusType status);

		[DllImport("pq")]
		public static extern string PQresultErrorMessage (IntPtr res);
		// char *PQresultErrorMessage(const PGresult *res);

		[DllImport("pq")]
		public static extern int PQbinaryTuples (IntPtr res);
		// int PQbinaryTuples(const PGresult *res);

		[DllImport("pq")]
		public static extern string PQfname (IntPtr res,
			int field_num);
		// char *PQfname(const PGresult *res,
		//      int field_num);

		[DllImport("pq")]
		public static extern int PQfnumber (IntPtr res,
			string field_name);
		// int PQfnumber(const PGresult *res, 
		//      const char *field_name);


		[DllImport("pq")]
		public static extern int PQfmod (IntPtr res, int field_num);
		// int PQfmod(const PGresult *res, int field_num);

		[DllImport("pq")]
		public static extern int PQftype (IntPtr res,
			int field_num);
		// Oid PQftype(const PGresult *res,
		//      int field_num);

		[DllImport("pq")]
		public static extern int PQfsize (IntPtr res,
			int field_num);
		// int PQfsize(const PGresult *res,
		//      int field_num);

		[DllImport("pq")]
		public static extern string PQcmdStatus (IntPtr res);
		// char *PQcmdStatus(PGresult *res);

		[DllImport("pq")]
		public static extern string PQoidStatus (IntPtr res);
		// char *PQoidStatus(const PGresult *res);

		[DllImport("pq")]
		public static extern int PQoidValue (IntPtr res);
		// Oid PQoidValue(const PGresult *res);

		[DllImport("pq")]
		public static extern string PQcmdTuples (IntPtr res);
		// char *PQcmdTuples(PGresult *res);

		[DllImport("pq")]
		public static extern string PQgetvalue (IntPtr res,
			int tup_num, int field_num);
		// char *PQgetvalue(const PGresult *res,
		//      int tup_num, int field_num);

		[DllImport("pq")]
		public static extern int PQgetlength (IntPtr res,
			int tup_num, int field_num);
		// int PQgetlength(const PGresult *res,
		//      int tup_num, int field_num);

		[DllImport("pq")]
		public static extern int PQgetisnull (IntPtr res,
			int tup_num, int field_num);
		// int PQgetisnull(const PGresult *res,
		//      int tup_num, int field_num);

		[DllImport("pq")]
		public static extern void PQclear (IntPtr res);
		// void PQclear(PGresult *res);


	}

	public class ReadPostgresData
	{

		static void Test(String sConnInfo) {
			String errorMessage;

			IntPtr pgConn;
			PostgresLibrary.ConnStatusType connStatus;

			String sQuery;
			IntPtr pgResult;
			
			sQuery = 
				"select tid, tdesc, aint4, abpchar " +
				"from sometable ";
		
			pgConn = PostgresLibrary.PQconnectdb (sConnInfo);

			connStatus = PostgresLibrary.PQstatus (pgConn);
			if(connStatus == 
				PostgresLibrary.
				ConnStatusType.CONNECTION_OK) {

				Console.WriteLine("CONNECTION_OK");

				Console.WriteLine("SQL: " + sQuery);
				pgResult = PostgresLibrary.PQexec(pgConn, sQuery);

				PostgresLibrary.ExecStatusType execStatus;
			
				execStatus = PostgresLibrary.
					PQresultStatus (pgResult);

				if(execStatus == 
					PostgresLibrary.
					ExecStatusType.PGRES_TUPLES_OK) 
				{
					Console.WriteLine("PGRES_TUPLES_OK");
					
					int nRows = PostgresLibrary.
						PQntuples(pgResult);
					Console.WriteLine("Rows: " + nRows);

					int nFields = PostgresLibrary.
						PQnfields(pgResult);
					Console.WriteLine("Columns: " + nFields);


					String fieldName;
					
					// get meta data fromm result set (schema)
					// for each column (field)
					for(int fieldIndex = 0; 
						fieldIndex < nFields; 
						fieldIndex ++) {

						// get column name
						fieldName = PostgresLibrary.
							PQfname(pgResult, fieldIndex);

						Console.WriteLine("Field " + 
							fieldIndex + ": " +
							fieldName);

						int oid;
						// get PostgreSQL data type (OID)
						oid = PostgresLibrary.
							PQftype(pgResult, fieldIndex);

						Console.WriteLine("Data Type oid: " + oid);

						int definedSize;
						// get defined size of column
						definedSize = PostgresLibrary.
							PQfsize(pgResult, fieldIndex);

						Console.WriteLine("definedSize: " +
							definedSize);
					}

					// for each row and column, get the data value
					for(int row = 0; 
						row < nRows; 
						row++) {

						for(int col = 0; 
							col < nFields; 
							col++) {

							String value;
							// get data value
							value = PostgresLibrary.
									PQgetvalue(
										pgResult,
										row, col);

							Console.WriteLine("Row: " + row +
									" Col: " + col);
							Console.WriteLine("Value: " +
									value);

							int columnIsNull;
							// is column NULL?
							columnIsNull = PostgresLibrary.
								PQgetisnull(pgResult,
									row, col);

							Console.WriteLine("Data is " + 
								(columnIsNull == 0 ? "NOT NULL" : "NULL"));


							int actualLength;
							// get Actual Length
							actualLength = PostgresLibrary.
								PQgetlength(pgResult,
									row, col);

							Console.WriteLine("Actual Length: " +
								actualLength);
						}
					}

					// close result set
					PostgresLibrary.PQclear (pgResult);
				}
				else {
					// display execution error				
					errorMessage = PostgresLibrary.
						PQresStatus(execStatus);

					errorMessage += " " + PostgresLibrary.
						PQresultErrorMessage(pgResult);

					Console.WriteLine(errorMessage);
				}

				// close database conneciton
				PostgresLibrary.PQfinish(pgConn);

			}
			else {
				errorMessage = PostgresLibrary.
					PQerrorMessage (pgConn);
				errorMessage += ": Could not connect to database.";
				Console.WriteLine(errorMessage);
			}	
			
		}

		public static object ExecuteScalar(string sConnInfo, string sQuery) {
			object obj = null; // return

			int nRow;
			int nCol;

			String errorMessage;

			IntPtr pgConn;
			PostgresLibrary.ConnStatusType connStatus;

			IntPtr pgResult;
					
			pgConn = PostgresLibrary.PQconnectdb (sConnInfo);

			connStatus = PostgresLibrary.PQstatus (pgConn);
			if(connStatus == 
				PostgresLibrary.
				ConnStatusType.CONNECTION_OK) {

				Console.WriteLine("CONNECTION_OK");

				pgResult = PostgresLibrary.PQexec(pgConn, sQuery);

				PostgresLibrary.ExecStatusType execStatus;

				execStatus = PostgresLibrary.
					PQresultStatus (pgResult);

				if(execStatus == 
					PostgresLibrary.
					ExecStatusType.PGRES_TUPLES_OK) {

					Console.WriteLine("PGRES_TUPLES_OK");
					
					int nRows = PostgresLibrary.
						PQntuples(pgResult);
					Console.WriteLine("Rows: " + nRows);

					int nFields = PostgresLibrary.
						PQnfields(pgResult);
					Console.WriteLine("Columns: " + nFields);
					if(nRows > 0 && nFields > 0) {
						nRow = 0;
						nCol = 0;

						// get column name
						String fieldName;
						fieldName = PostgresLibrary.
							PQfname(pgResult, nCol);

						Console.WriteLine("Field " + 
							nCol + ": " +
							fieldName);

						int oid;
						
						// get PostgreSQL data type (OID)
						oid = PostgresLibrary.
							PQftype(pgResult, nCol);

						Console.WriteLine("Data Type oid: " + oid);

						int definedSize;
						// get defined size of column
						definedSize = PostgresLibrary.
							PQfsize(pgResult, nCol);

						Console.WriteLine("DefinedSize: " + 
							definedSize);

						String value;
						// get data value
						value = PostgresLibrary.
							PQgetvalue(
							pgResult,
							nRow, nCol);
                                                
						Console.WriteLine("Row: " + nRow +
							" Col: " + nCol);
						Console.WriteLine("Value: " + value);

						int columnIsNull;
						// is column NULL?
						columnIsNull = PostgresLibrary.
							PQgetisnull(pgResult,
							nRow, nCol);
							
		// isNull = *thevalue != '\0' ? FALSE : PQgetisnull (pg_res, rownum, i);

						Console.WriteLine("Data is " + 
							(columnIsNull == 0 ? "NOT NULL" : "NULL"));

						int actualLength;
						// get Actual Length
						actualLength = PostgresLibrary.
							PQgetlength(pgResult,
							nRow, nCol);

						Console.WriteLine("Actual Length: " +
							actualLength);
						
						obj = PostgresHelper.
							OidTypeToSystem (oid, value);
					}

					// close result set
					PostgresLibrary.PQclear (pgResult);
				}
				else {
					// display execution error				
					errorMessage = PostgresLibrary.
						PQresStatus(execStatus);

					errorMessage += " " + PostgresLibrary.
						PQresultErrorMessage(pgResult);

					Console.WriteLine(errorMessage);
				}

				// close database conneciton
				PostgresLibrary.PQfinish(pgConn);

			}
			else {
				errorMessage = PostgresLibrary.
					PQerrorMessage (pgConn);
				errorMessage += ": Could not connect to database.";
				Console.WriteLine(errorMessage);
			}
			
			return obj;
		}

		static void TestExecuteScalar(String connString) {
			String selectStatement;

			try {
				selectStatement = 
					"select count(*) " +
					"from sometable";

				Int64 myCount = (Int64) ExecuteScalar(connString,
					selectStatement);
				Console.WriteLine("Count: " + myCount);

				selectStatement = 
					"select max(tdesc) " +
					"from sometable";			
				string myMax = (string) ExecuteScalar(connString,
					selectStatement);
				Console.WriteLine("Max: " + myMax);
			}
			catch(Exception e) {
				Console.WriteLine(e);
			}                        
			
		}

		[STAThread]
		static void Main(string[] args)
		{
			// PostgreSQL DBMS Connection String
			// Notice how the parameters are separated with spaces
			// An OLE-DB Connection String uses semicolons to
			// separate parameters.
			String sConnInfo = 
				"host=localhost " +
				"dbname=test " + 
				"user=postgres";

			Test(sConnInfo);

			TestExecuteScalar(sConnInfo);

			Type t;
			int oid;

			oid = 1043;
			t = PostgresHelper.OidToType(oid); // varchar ==> String
			Console.WriteLine("OidToType varchar oid: " + oid +
				" ==> t: " + t.ToString());

			oid = 23;
			t = PostgresHelper.OidToType(oid);  // int4 ==> Int32
			Console.WriteLine("OidToType int4 oid: " + oid +
				" ==> t: " + t.ToString());

		}
	}
}