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 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517
|
/*
* PyGreSQL - a Python interface for the PostgreSQL database.
*
* The connection object - this file is part a of the C extension module.
*
* Copyright (c) 2020 by the PyGreSQL Development Team
*
* Please see the LICENSE.TXT file for specific restrictions.
*/
/* Deallocate connection object. */
static void
conn_dealloc(connObject *self)
{
if (self->cnx) {
Py_BEGIN_ALLOW_THREADS
PQfinish(self->cnx);
Py_END_ALLOW_THREADS
}
Py_XDECREF(self->cast_hook);
Py_XDECREF(self->notice_receiver);
PyObject_Del(self);
}
/* Get connection attributes. */
static PyObject *
conn_getattr(connObject *self, PyObject *nameobj)
{
const char *name = PyStr_AsString(nameobj);
/*
* Although we could check individually, there are only a few
* attributes that don't require a live connection and unless someone
* has an urgent need, this will have to do.
*/
/* first exception - close which returns a different error */
if (strcmp(name, "close") && !self->cnx) {
PyErr_SetString(PyExc_TypeError, "Connection is not valid");
return NULL;
}
/* list PostgreSQL connection fields */
/* postmaster host */
if (!strcmp(name, "host")) {
char *r = PQhost(self->cnx);
if (!r || r[0] == '/') /* Pg >= 9.6 can return a Unix socket path */
r = "localhost";
return PyStr_FromString(r);
}
/* postmaster port */
if (!strcmp(name, "port"))
return PyInt_FromLong(atol(PQport(self->cnx)));
/* selected database */
if (!strcmp(name, "db"))
return PyStr_FromString(PQdb(self->cnx));
/* selected options */
if (!strcmp(name, "options"))
return PyStr_FromString(PQoptions(self->cnx));
/* error (status) message */
if (!strcmp(name, "error"))
return PyStr_FromString(PQerrorMessage(self->cnx));
/* connection status : 1 - OK, 0 - BAD */
if (!strcmp(name, "status"))
return PyInt_FromLong(PQstatus(self->cnx) == CONNECTION_OK ? 1 : 0);
/* provided user name */
if (!strcmp(name, "user"))
return PyStr_FromString(PQuser(self->cnx));
/* protocol version */
if (!strcmp(name, "protocol_version"))
return PyInt_FromLong(PQprotocolVersion(self->cnx));
/* backend version */
if (!strcmp(name, "server_version"))
return PyInt_FromLong(PQserverVersion(self->cnx));
/* descriptor number of connection socket */
if (!strcmp(name, "socket")) {
return PyInt_FromLong(PQsocket(self->cnx));
}
/* PID of backend process */
if (!strcmp(name, "backend_pid")) {
return PyInt_FromLong(PQbackendPID(self->cnx));
}
/* whether the connection uses SSL */
if (!strcmp(name, "ssl_in_use")) {
#ifdef SSL_INFO
if (PQsslInUse(self->cnx)) {
Py_INCREF(Py_True); return Py_True;
}
else {
Py_INCREF(Py_False); return Py_False;
}
#else
set_error_msg(NotSupportedError, "SSL info functions not supported");
return NULL;
#endif
}
/* SSL attributes */
if (!strcmp(name, "ssl_attributes")) {
#ifdef SSL_INFO
return get_ssl_attributes(self->cnx);
#else
set_error_msg(NotSupportedError, "SSL info functions not supported");
return NULL;
#endif
}
return PyObject_GenericGetAttr((PyObject *) self, nameobj);
}
/* Check connection validity. */
static int
_check_cnx_obj(connObject *self)
{
if (!self || !self->valid || !self->cnx) {
set_error_msg(OperationalError, "Connection has been closed");
return 0;
}
return 1;
}
/* Create source object. */
static char conn_source__doc__[] =
"source() -- create a new source object for this connection";
static PyObject *
conn_source(connObject *self, PyObject *noargs)
{
sourceObject *source_obj;
/* checks validity */
if (!_check_cnx_obj(self)) {
return NULL;
}
/* allocates new query object */
if (!(source_obj = PyObject_New(sourceObject, &sourceType))) {
return NULL;
}
/* initializes internal parameters */
Py_XINCREF(self);
source_obj->pgcnx = self;
source_obj->result = NULL;
source_obj->valid = 1;
source_obj->arraysize = PG_ARRAYSIZE;
return (PyObject *) source_obj;
}
/* Base method for execution of both unprepared and prepared queries */
static PyObject *
_conn_query(connObject *self, PyObject *args, int prepared)
{
PyObject *query_str_obj, *param_obj = NULL;
PGresult* result;
queryObject* query_obj;
char *query;
int encoding, status, nparms = 0;
if (!self->cnx) {
PyErr_SetString(PyExc_TypeError, "Connection is not valid");
return NULL;
}
/* get query args */
if (!PyArg_ParseTuple(args, "O|O", &query_str_obj, ¶m_obj)) {
return NULL;
}
encoding = PQclientEncoding(self->cnx);
if (PyBytes_Check(query_str_obj)) {
query = PyBytes_AsString(query_str_obj);
query_str_obj = NULL;
}
else if (PyUnicode_Check(query_str_obj)) {
query_str_obj = get_encoded_string(query_str_obj, encoding);
if (!query_str_obj) return NULL; /* pass the UnicodeEncodeError */
query = PyBytes_AsString(query_str_obj);
}
else {
PyErr_SetString(PyExc_TypeError,
"Method query() expects a string as first argument");
return NULL;
}
/* If param_obj is passed, ensure it's a non-empty tuple. We want to treat
* an empty tuple the same as no argument since we'll get that when the
* caller passes no arguments to db.query(), and historic behaviour was
* to call PQexec() in that case, which can execute multiple commands. */
if (param_obj) {
param_obj = PySequence_Fast(
param_obj, "Method query() expects a sequence as second argument");
if (!param_obj) {
Py_XDECREF(query_str_obj);
return NULL;
}
nparms = (int) PySequence_Fast_GET_SIZE(param_obj);
/* if there's a single argument and it's a list or tuple, it
* contains the positional arguments. */
if (nparms == 1) {
PyObject *first_obj = PySequence_Fast_GET_ITEM(param_obj, 0);
if (PyList_Check(first_obj) || PyTuple_Check(first_obj)) {
Py_DECREF(param_obj);
param_obj = PySequence_Fast(first_obj, NULL);
nparms = (int) PySequence_Fast_GET_SIZE(param_obj);
}
}
}
/* gets result */
if (nparms) {
/* prepare arguments */
PyObject **str, **s;
const char **parms, **p;
register int i;
str = (PyObject **) PyMem_Malloc((size_t) nparms * sizeof(*str));
parms = (const char **) PyMem_Malloc((size_t) nparms * sizeof(*parms));
if (!str || !parms) {
PyMem_Free((void *) parms); PyMem_Free(str);
Py_XDECREF(query_str_obj); Py_XDECREF(param_obj);
return PyErr_NoMemory();
}
/* convert optional args to a list of strings -- this allows
* the caller to pass whatever they like, and prevents us
* from having to map types to OIDs */
for (i = 0, s = str, p = parms; i < nparms; ++i, ++p) {
PyObject *obj = PySequence_Fast_GET_ITEM(param_obj, i);
if (obj == Py_None) {
*p = NULL;
}
else if (PyBytes_Check(obj)) {
*p = PyBytes_AsString(obj);
}
else if (PyUnicode_Check(obj)) {
PyObject *str_obj = get_encoded_string(obj, encoding);
if (!str_obj) {
PyMem_Free((void *) parms);
while (s != str) { s--; Py_DECREF(*s); }
PyMem_Free(str);
Py_XDECREF(query_str_obj);
Py_XDECREF(param_obj);
/* pass the UnicodeEncodeError */
return NULL;
}
*s++ = str_obj;
*p = PyBytes_AsString(str_obj);
}
else {
PyObject *str_obj = PyObject_Str(obj);
if (!str_obj) {
PyMem_Free((void *) parms);
while (s != str) { s--; Py_DECREF(*s); }
PyMem_Free(str);
Py_XDECREF(query_str_obj);
Py_XDECREF(param_obj);
PyErr_SetString(
PyExc_TypeError,
"Query parameter has no string representation");
return NULL;
}
*s++ = str_obj;
*p = PyStr_AsString(str_obj);
}
}
Py_BEGIN_ALLOW_THREADS
result = prepared ?
PQexecPrepared(self->cnx, query, nparms,
parms, NULL, NULL, 0) :
PQexecParams(self->cnx, query, nparms,
NULL, parms, NULL, NULL, 0);
Py_END_ALLOW_THREADS
PyMem_Free((void *) parms);
while (s != str) { s--; Py_DECREF(*s); }
PyMem_Free(str);
}
else {
Py_BEGIN_ALLOW_THREADS
result = prepared ?
PQexecPrepared(self->cnx, query, 0,
NULL, NULL, NULL, 0) :
PQexec(self->cnx, query);
Py_END_ALLOW_THREADS
}
/* we don't need the query and its params any more */
Py_XDECREF(query_str_obj);
Py_XDECREF(param_obj);
/* checks result validity */
if (!result) {
PyErr_SetString(PyExc_ValueError, PQerrorMessage(self->cnx));
return NULL;
}
/* this may have changed the datestyle, so we reset the date format
in order to force fetching it newly when next time requested */
self->date_format = date_format; /* this is normally NULL */
/* checks result status */
if ((status = PQresultStatus(result)) != PGRES_TUPLES_OK) {
switch (status) {
case PGRES_EMPTY_QUERY:
PyErr_SetString(PyExc_ValueError, "Empty query");
break;
case PGRES_BAD_RESPONSE:
case PGRES_FATAL_ERROR:
case PGRES_NONFATAL_ERROR:
set_error(ProgrammingError, "Cannot execute query",
self->cnx, result);
break;
case PGRES_COMMAND_OK:
{ /* INSERT, UPDATE, DELETE */
Oid oid = PQoidValue(result);
if (oid == InvalidOid) { /* not a single insert */
char *ret = PQcmdTuples(result);
if (ret[0]) { /* return number of rows affected */
PyObject *obj = PyStr_FromString(ret);
PQclear(result);
return obj;
}
PQclear(result);
Py_INCREF(Py_None);
return Py_None;
}
/* for a single insert, return the oid */
PQclear(result);
return PyInt_FromLong(oid);
}
case PGRES_COPY_OUT: /* no data will be received */
case PGRES_COPY_IN:
PQclear(result);
Py_INCREF(Py_None);
return Py_None;
default:
set_error_msg(InternalError, "Unknown result status");
}
PQclear(result);
return NULL; /* error detected on query */
}
if (!(query_obj = PyObject_New(queryObject, &queryType)))
return PyErr_NoMemory();
/* stores result and returns object */
Py_XINCREF(self);
query_obj->pgcnx = self;
query_obj->result = result;
query_obj->encoding = encoding;
query_obj->current_row = 0;
query_obj->max_row = PQntuples(result);
query_obj->num_fields = PQnfields(result);
query_obj->col_types = get_col_types(result, query_obj->num_fields);
if (!query_obj->col_types) {
Py_DECREF(query_obj);
Py_DECREF(self);
return NULL;
}
return (PyObject *) query_obj;
}
/* Database query */
static char conn_query__doc__[] =
"query(sql, [arg]) -- create a new query object for this connection\n\n"
"You must pass the SQL (string) request and you can optionally pass\n"
"a tuple with positional parameters.\n";
static PyObject *
conn_query(connObject *self, PyObject *args)
{
return _conn_query(self, args, 0);
}
/* Execute prepared statement. */
static char conn_query_prepared__doc__[] =
"query_prepared(name, [arg]) -- execute a prepared statement\n\n"
"You must pass the name (string) of the prepared statement and you can\n"
"optionally pass a tuple with positional parameters.\n";
static PyObject *
conn_query_prepared(connObject *self, PyObject *args)
{
return _conn_query(self, args, 1);
}
/* Create prepared statement. */
static char conn_prepare__doc__[] =
"prepare(name, sql) -- create a prepared statement\n\n"
"You must pass the name (string) of the prepared statement and the\n"
"SQL (string) request for later execution.\n";
static PyObject *
conn_prepare(connObject *self, PyObject *args)
{
char *name, *query;
Py_ssize_t name_length, query_length;
PGresult *result;
if (!self->cnx) {
PyErr_SetString(PyExc_TypeError, "Connection is not valid");
return NULL;
}
/* reads args */
if (!PyArg_ParseTuple(args, "s#s#",
&name, &name_length, &query, &query_length))
{
PyErr_SetString(PyExc_TypeError,
"Method prepare() takes two string arguments");
return NULL;
}
/* create prepared statement */
Py_BEGIN_ALLOW_THREADS
result = PQprepare(self->cnx, name, query, 0, NULL);
Py_END_ALLOW_THREADS
if (result && PQresultStatus(result) == PGRES_COMMAND_OK) {
PQclear(result);
Py_INCREF(Py_None);
return Py_None; /* success */
}
set_error(ProgrammingError, "Cannot create prepared statement",
self->cnx, result);
if (result)
PQclear(result);
return NULL; /* error */
}
/* Describe prepared statement. */
static char conn_describe_prepared__doc__[] =
"describe_prepared(name) -- describe a prepared statement\n\n"
"You must pass the name (string) of the prepared statement.\n";
static PyObject *
conn_describe_prepared(connObject *self, PyObject *args)
{
char *name;
Py_ssize_t name_length;
PGresult *result;
if (!self->cnx) {
PyErr_SetString(PyExc_TypeError, "Connection is not valid");
return NULL;
}
/* reads args */
if (!PyArg_ParseTuple(args, "s#", &name, &name_length)) {
PyErr_SetString(PyExc_TypeError,
"Method prepare() takes a string argument");
return NULL;
}
/* describe prepared statement */
Py_BEGIN_ALLOW_THREADS
result = PQdescribePrepared(self->cnx, name);
Py_END_ALLOW_THREADS
if (result && PQresultStatus(result) == PGRES_COMMAND_OK) {
queryObject *query_obj = PyObject_New(queryObject, &queryType);
if (!query_obj)
return PyErr_NoMemory();
Py_XINCREF(self);
query_obj->pgcnx = self;
query_obj->result = result;
query_obj->encoding = PQclientEncoding(self->cnx);
query_obj->current_row = 0;
query_obj->max_row = PQntuples(result);
query_obj->num_fields = PQnfields(result);
query_obj->col_types = get_col_types(result, query_obj->num_fields);
return (PyObject *) query_obj;
}
set_error(ProgrammingError, "Cannot describe prepared statement",
self->cnx, result);
if (result)
PQclear(result);
return NULL; /* error */
}
#ifdef DIRECT_ACCESS
static char conn_putline__doc__[] =
"putline(line) -- send a line directly to the backend";
/* Direct access function: putline. */
static PyObject *
conn_putline(connObject *self, PyObject *args)
{
char *line;
Py_ssize_t line_length;
if (!self->cnx) {
PyErr_SetString(PyExc_TypeError, "Connection is not valid");
return NULL;
}
/* reads args */
if (!PyArg_ParseTuple(args, "s#", &line, &line_length)) {
PyErr_SetString(PyExc_TypeError,
"Method putline() takes a string argument");
return NULL;
}
/* sends line to backend */
if (PQputline(self->cnx, line)) {
PyErr_SetString(PyExc_IOError, PQerrorMessage(self->cnx));
return NULL;
}
Py_INCREF(Py_None);
return Py_None;
}
/* Direct access function: getline. */
static char conn_getline__doc__[] =
"getline() -- get a line directly from the backend";
static PyObject *
conn_getline(connObject *self, PyObject *noargs)
{
char line[MAX_BUFFER_SIZE];
PyObject *str = NULL; /* GCC */
if (!self->cnx) {
PyErr_SetString(PyExc_TypeError, "Connection is not valid");
return NULL;
}
/* gets line */
switch (PQgetline(self->cnx, line, MAX_BUFFER_SIZE)) {
case 0:
str = PyStr_FromString(line);
break;
case 1:
PyErr_SetString(PyExc_MemoryError, "Buffer overflow");
str = NULL;
break;
case EOF:
Py_INCREF(Py_None);
str = Py_None;
break;
}
return str;
}
/* Direct access function: end copy. */
static char conn_endcopy__doc__[] =
"endcopy() -- synchronize client and server";
static PyObject *
conn_endcopy(connObject *self, PyObject *noargs)
{
if (!self->cnx) {
PyErr_SetString(PyExc_TypeError, "Connection is not valid");
return NULL;
}
/* ends direct copy */
if (PQendcopy(self->cnx)) {
PyErr_SetString(PyExc_IOError, PQerrorMessage(self->cnx));
return NULL;
}
Py_INCREF(Py_None);
return Py_None;
}
#endif /* DIRECT_ACCESS */
/* Insert table */
static char conn_inserttable__doc__[] =
"inserttable(table, data) -- insert list into table\n\n"
"The fields in the list must be in the same order as in the table.\n";
static PyObject *
conn_inserttable(connObject *self, PyObject *args)
{
PGresult *result;
char *table, *buffer, *bufpt;
int encoding;
size_t bufsiz;
PyObject *list, *sublist, *item;
PyObject *(*getitem) (PyObject *, Py_ssize_t);
PyObject *(*getsubitem) (PyObject *, Py_ssize_t);
Py_ssize_t i, j, m, n;
if (!self->cnx) {
PyErr_SetString(PyExc_TypeError, "Connection is not valid");
return NULL;
}
/* gets arguments */
if (!PyArg_ParseTuple(args, "sO:filter", &table, &list)) {
PyErr_SetString(
PyExc_TypeError,
"Method inserttable() expects a string and a list as arguments");
return NULL;
}
/* checks list type */
if (PyList_Check(list)) {
m = PyList_Size(list);
getitem = PyList_GetItem;
}
else if (PyTuple_Check(list)) {
m = PyTuple_Size(list);
getitem = PyTuple_GetItem;
}
else {
PyErr_SetString(
PyExc_TypeError,
"Method inserttable() expects a list or a tuple"
" as second argument");
return NULL;
}
/* allocate buffer */
if (!(buffer = PyMem_Malloc(MAX_BUFFER_SIZE)))
return PyErr_NoMemory();
/* starts query */
sprintf(buffer, "copy %s from stdin", table);
Py_BEGIN_ALLOW_THREADS
result = PQexec(self->cnx, buffer);
Py_END_ALLOW_THREADS
if (!result) {
PyMem_Free(buffer);
PyErr_SetString(PyExc_ValueError, PQerrorMessage(self->cnx));
return NULL;
}
encoding = PQclientEncoding(self->cnx);
PQclear(result);
n = 0; /* not strictly necessary but avoids warning */
/* feed table */
for (i = 0; i < m; ++i) {
sublist = getitem(list, i);
if (PyTuple_Check(sublist)) {
j = PyTuple_Size(sublist);
getsubitem = PyTuple_GetItem;
}
else if (PyList_Check(sublist)) {
j = PyList_Size(sublist);
getsubitem = PyList_GetItem;
}
else {
PyErr_SetString(
PyExc_TypeError,
"The second argument must contain a tuple or a list");
return NULL;
}
if (i) {
if (j != n) {
PyMem_Free(buffer);
PyErr_SetString(
PyExc_TypeError,
"Arrays contained in second arg must have same size");
return NULL;
}
}
else {
n = j; /* never used before this assignment */
}
/* builds insert line */
bufpt = buffer;
bufsiz = MAX_BUFFER_SIZE - 1;
for (j = 0; j < n; ++j) {
if (j) {
*bufpt++ = '\t'; --bufsiz;
}
item = getsubitem(sublist, j);
/* convert item to string and append to buffer */
if (item == Py_None) {
if (bufsiz > 2) {
*bufpt++ = '\\'; *bufpt++ = 'N';
bufsiz -= 2;
}
else
bufsiz = 0;
}
else if (PyBytes_Check(item)) {
const char* t = PyBytes_AsString(item);
while (*t && bufsiz) {
if (*t == '\\' || *t == '\t' || *t == '\n') {
*bufpt++ = '\\'; --bufsiz;
if (!bufsiz) break;
}
*bufpt++ = *t++; --bufsiz;
}
}
else if (PyUnicode_Check(item)) {
PyObject *s = get_encoded_string(item, encoding);
if (!s) {
PyMem_Free(buffer);
return NULL; /* pass the UnicodeEncodeError */
}
else {
const char* t = PyBytes_AsString(s);
while (*t && bufsiz) {
if (*t == '\\' || *t == '\t' || *t == '\n') {
*bufpt++ = '\\'; --bufsiz;
if (!bufsiz) break;
}
*bufpt++ = *t++; --bufsiz;
}
Py_DECREF(s);
}
}
else if (PyInt_Check(item) || PyLong_Check(item)) {
PyObject* s = PyObject_Str(item);
const char* t = PyStr_AsString(s);
while (*t && bufsiz) {
*bufpt++ = *t++; --bufsiz;
}
Py_DECREF(s);
}
else {
PyObject* s = PyObject_Repr(item);
const char* t = PyStr_AsString(s);
while (*t && bufsiz) {
if (*t == '\\' || *t == '\t' || *t == '\n') {
*bufpt++ = '\\'; --bufsiz;
if (!bufsiz) break;
}
*bufpt++ = *t++; --bufsiz;
}
Py_DECREF(s);
}
if (bufsiz <= 0) {
PyMem_Free(buffer); return PyErr_NoMemory();
}
}
*bufpt++ = '\n'; *bufpt = '\0';
/* sends data */
if (PQputline(self->cnx, buffer)) {
PyErr_SetString(PyExc_IOError, PQerrorMessage(self->cnx));
PQendcopy(self->cnx);
PyMem_Free(buffer);
return NULL;
}
}
/* ends query */
if (PQputline(self->cnx, "\\.\n")) {
PyErr_SetString(PyExc_IOError, PQerrorMessage(self->cnx));
PQendcopy(self->cnx);
PyMem_Free(buffer);
return NULL;
}
if (PQendcopy(self->cnx)) {
PyErr_SetString(PyExc_IOError, PQerrorMessage(self->cnx));
PyMem_Free(buffer);
return NULL;
}
PyMem_Free(buffer);
/* no error : returns nothing */
Py_INCREF(Py_None);
return Py_None;
}
/* Get transaction state. */
static char conn_transaction__doc__[] =
"transaction() -- return the current transaction status";
static PyObject *
conn_transaction(connObject *self, PyObject *noargs)
{
if (!self->cnx) {
PyErr_SetString(PyExc_TypeError, "Connection is not valid");
return NULL;
}
return PyInt_FromLong(PQtransactionStatus(self->cnx));
}
/* Get parameter setting. */
static char conn_parameter__doc__[] =
"parameter(name) -- look up a current parameter setting";
static PyObject *
conn_parameter(connObject *self, PyObject *args)
{
const char *name;
if (!self->cnx) {
PyErr_SetString(PyExc_TypeError, "Connection is not valid");
return NULL;
}
/* get query args */
if (!PyArg_ParseTuple(args, "s", &name)) {
PyErr_SetString(PyExc_TypeError,
"Method parameter() takes a string as argument");
return NULL;
}
name = PQparameterStatus(self->cnx, name);
if (name)
return PyStr_FromString(name);
/* unknown parameter, return None */
Py_INCREF(Py_None);
return Py_None;
}
/* Get current date format. */
static char conn_date_format__doc__[] =
"date_format() -- return the current date format";
static PyObject *
conn_date_format(connObject *self, PyObject *noargs)
{
const char *fmt;
if (!self->cnx) {
PyErr_SetString(PyExc_TypeError, "Connection is not valid");
return NULL;
}
/* check if the date format is cached in the connection */
fmt = self->date_format;
if (!fmt) {
fmt = date_style_to_format(PQparameterStatus(self->cnx, "DateStyle"));
self->date_format = fmt; /* cache the result */
}
return PyStr_FromString(fmt);
}
#ifdef ESCAPING_FUNCS
/* Escape literal */
static char conn_escape_literal__doc__[] =
"escape_literal(str) -- escape a literal constant for use within SQL";
static PyObject *
conn_escape_literal(connObject *self, PyObject *string)
{
PyObject *tmp_obj = NULL, /* auxiliary string object */
*to_obj; /* string object to return */
char *from, /* our string argument as encoded string */
*to; /* the result as encoded string */
Py_ssize_t from_length; /* length of string */
size_t to_length; /* length of result */
int encoding = -1; /* client encoding */
if (PyBytes_Check(string)) {
PyBytes_AsStringAndSize(string, &from, &from_length);
}
else if (PyUnicode_Check(string)) {
encoding = PQclientEncoding(self->cnx);
tmp_obj = get_encoded_string(string, encoding);
if (!tmp_obj) return NULL; /* pass the UnicodeEncodeError */
PyBytes_AsStringAndSize(tmp_obj, &from, &from_length);
}
else {
PyErr_SetString(
PyExc_TypeError,
"Method escape_literal() expects a string as argument");
return NULL;
}
to = PQescapeLiteral(self->cnx, from, (size_t) from_length);
to_length = strlen(to);
Py_XDECREF(tmp_obj);
if (encoding == -1)
to_obj = PyBytes_FromStringAndSize(to, (Py_ssize_t) to_length);
else
to_obj = get_decoded_string(to, (Py_ssize_t) to_length, encoding);
if (to)
PQfreemem(to);
return to_obj;
}
/* Escape identifier */
static char conn_escape_identifier__doc__[] =
"escape_identifier(str) -- escape an identifier for use within SQL";
static PyObject *
conn_escape_identifier(connObject *self, PyObject *string)
{
PyObject *tmp_obj = NULL, /* auxiliary string object */
*to_obj; /* string object to return */
char *from, /* our string argument as encoded string */
*to; /* the result as encoded string */
Py_ssize_t from_length; /* length of string */
size_t to_length; /* length of result */
int encoding = -1; /* client encoding */
if (PyBytes_Check(string)) {
PyBytes_AsStringAndSize(string, &from, &from_length);
}
else if (PyUnicode_Check(string)) {
encoding = PQclientEncoding(self->cnx);
tmp_obj = get_encoded_string(string, encoding);
if (!tmp_obj) return NULL; /* pass the UnicodeEncodeError */
PyBytes_AsStringAndSize(tmp_obj, &from, &from_length);
}
else {
PyErr_SetString(
PyExc_TypeError,
"Method escape_identifier() expects a string as argument");
return NULL;
}
to = PQescapeIdentifier(self->cnx, from, (size_t) from_length);
to_length = strlen(to);
Py_XDECREF(tmp_obj);
if (encoding == -1)
to_obj = PyBytes_FromStringAndSize(to, (Py_ssize_t) to_length);
else
to_obj = get_decoded_string(to, (Py_ssize_t) to_length, encoding);
if (to)
PQfreemem(to);
return to_obj;
}
#endif /* ESCAPING_FUNCS */
/* Escape string */
static char conn_escape_string__doc__[] =
"escape_string(str) -- escape a string for use within SQL";
static PyObject *
conn_escape_string(connObject *self, PyObject *string)
{
PyObject *tmp_obj = NULL, /* auxiliary string object */
*to_obj; /* string object to return */
char *from, /* our string argument as encoded string */
*to; /* the result as encoded string */
Py_ssize_t from_length; /* length of string */
size_t to_length; /* length of result */
int encoding = -1; /* client encoding */
if (PyBytes_Check(string)) {
PyBytes_AsStringAndSize(string, &from, &from_length);
}
else if (PyUnicode_Check(string)) {
encoding = PQclientEncoding(self->cnx);
tmp_obj = get_encoded_string(string, encoding);
if (!tmp_obj) return NULL; /* pass the UnicodeEncodeError */
PyBytes_AsStringAndSize(tmp_obj, &from, &from_length);
}
else {
PyErr_SetString(
PyExc_TypeError,
"Method escape_string() expects a string as argument");
return NULL;
}
to_length = 2 * (size_t) from_length + 1;
if ((Py_ssize_t) to_length < from_length) { /* overflow */
to_length = (size_t) from_length;
from_length = (from_length - 1)/2;
}
to = (char *) PyMem_Malloc(to_length);
to_length = PQescapeStringConn(self->cnx,
to, from, (size_t) from_length, NULL);
Py_XDECREF(tmp_obj);
if (encoding == -1)
to_obj = PyBytes_FromStringAndSize(to, (Py_ssize_t) to_length);
else
to_obj = get_decoded_string(to, (Py_ssize_t) to_length, encoding);
PyMem_Free(to);
return to_obj;
}
/* Escape bytea */
static char conn_escape_bytea__doc__[] =
"escape_bytea(data) -- escape binary data for use within SQL as type bytea";
static PyObject *
conn_escape_bytea(connObject *self, PyObject *data)
{
PyObject *tmp_obj = NULL, /* auxiliary string object */
*to_obj; /* string object to return */
char *from, /* our string argument as encoded string */
*to; /* the result as encoded string */
Py_ssize_t from_length; /* length of string */
size_t to_length; /* length of result */
int encoding = -1; /* client encoding */
if (PyBytes_Check(data)) {
PyBytes_AsStringAndSize(data, &from, &from_length);
}
else if (PyUnicode_Check(data)) {
encoding = PQclientEncoding(self->cnx);
tmp_obj = get_encoded_string(data, encoding);
if (!tmp_obj) return NULL; /* pass the UnicodeEncodeError */
PyBytes_AsStringAndSize(tmp_obj, &from, &from_length);
}
else {
PyErr_SetString(
PyExc_TypeError,
"Method escape_bytea() expects a string as argument");
return NULL;
}
to = (char *) PQescapeByteaConn(self->cnx,
(unsigned char *) from, (size_t) from_length, &to_length);
Py_XDECREF(tmp_obj);
if (encoding == -1)
to_obj = PyBytes_FromStringAndSize(to, (Py_ssize_t) to_length - 1);
else
to_obj = get_decoded_string(to, (Py_ssize_t) to_length - 1, encoding);
if (to)
PQfreemem(to);
return to_obj;
}
#ifdef LARGE_OBJECTS
/* Constructor for large objects (internal use only) */
static largeObject *
large_new(connObject *pgcnx, Oid oid)
{
largeObject *large_obj;
if (!(large_obj = PyObject_New(largeObject, &largeType))) {
return NULL;
}
Py_XINCREF(pgcnx);
large_obj->pgcnx = pgcnx;
large_obj->lo_fd = -1;
large_obj->lo_oid = oid;
return large_obj;
}
/* Create large object. */
static char conn_locreate__doc__[] =
"locreate(mode) -- create a new large object in the database";
static PyObject *
conn_locreate(connObject *self, PyObject *args)
{
int mode;
Oid lo_oid;
/* checks validity */
if (!_check_cnx_obj(self)) {
return NULL;
}
/* gets arguments */
if (!PyArg_ParseTuple(args, "i", &mode)) {
PyErr_SetString(PyExc_TypeError,
"Method locreate() takes an integer argument");
return NULL;
}
/* creates large object */
lo_oid = lo_creat(self->cnx, mode);
if (lo_oid == 0) {
set_error_msg(OperationalError, "Can't create large object");
return NULL;
}
return (PyObject *) large_new(self, lo_oid);
}
/* Init from already known oid. */
static char conn_getlo__doc__[] =
"getlo(oid) -- create a large object instance for the specified oid";
static PyObject *
conn_getlo(connObject *self, PyObject *args)
{
int oid;
Oid lo_oid;
/* checks validity */
if (!_check_cnx_obj(self)) {
return NULL;
}
/* gets arguments */
if (!PyArg_ParseTuple(args, "i", &oid)) {
PyErr_SetString(PyExc_TypeError,
"Method getlo() takes an integer argument");
return NULL;
}
lo_oid = (Oid) oid;
if (lo_oid == 0) {
PyErr_SetString(PyExc_ValueError, "The object oid can't be null");
return NULL;
}
/* creates object */
return (PyObject *) large_new(self, lo_oid);
}
/* Import unix file. */
static char conn_loimport__doc__[] =
"loimport(name) -- create a new large object from specified file";
static PyObject *
conn_loimport(connObject *self, PyObject *args)
{
char *name;
Oid lo_oid;
/* checks validity */
if (!_check_cnx_obj(self)) {
return NULL;
}
/* gets arguments */
if (!PyArg_ParseTuple(args, "s", &name)) {
PyErr_SetString(PyExc_TypeError,
"Method loimport() takes a string argument");
return NULL;
}
/* imports file and checks result */
lo_oid = lo_import(self->cnx, name);
if (lo_oid == 0) {
set_error_msg(OperationalError, "Can't create large object");
return NULL;
}
return (PyObject *) large_new(self, lo_oid);
}
#endif /* LARGE_OBJECTS */
/* Reset connection. */
static char conn_reset__doc__[] =
"reset() -- reset connection with current parameters\n\n"
"All derived queries and large objects derived from this connection\n"
"will not be usable after this call.\n";
static PyObject *
conn_reset(connObject *self, PyObject *noargs)
{
if (!self->cnx) {
PyErr_SetString(PyExc_TypeError, "Connection is not valid");
return NULL;
}
/* resets the connection */
PQreset(self->cnx);
Py_INCREF(Py_None);
return Py_None;
}
/* Cancel current command. */
static char conn_cancel__doc__[] =
"cancel() -- abandon processing of the current command";
static PyObject *
conn_cancel(connObject *self, PyObject *noargs)
{
if (!self->cnx) {
PyErr_SetString(PyExc_TypeError, "Connection is not valid");
return NULL;
}
/* request that the server abandon processing of the current command */
return PyInt_FromLong((long) PQrequestCancel(self->cnx));
}
/* Get connection socket. */
static char conn_fileno__doc__[] =
"fileno() -- return database connection socket file handle";
static PyObject *
conn_fileno(connObject *self, PyObject *noargs)
{
if (!self->cnx) {
PyErr_SetString(PyExc_TypeError, "Connection is not valid");
return NULL;
}
return PyInt_FromLong((long) PQsocket(self->cnx));
}
/* Set external typecast callback function. */
static char conn_set_cast_hook__doc__[] =
"set_cast_hook(func) -- set a fallback typecast function";
static PyObject *
conn_set_cast_hook(connObject *self, PyObject *func)
{
PyObject *ret = NULL;
if (func == Py_None) {
Py_XDECREF(self->cast_hook);
self->cast_hook = NULL;
Py_INCREF(Py_None); ret = Py_None;
}
else if (PyCallable_Check(func)) {
Py_XINCREF(func); Py_XDECREF(self->cast_hook);
self->cast_hook = func;
Py_INCREF(Py_None); ret = Py_None;
}
else {
PyErr_SetString(PyExc_TypeError,
"Method set_cast_hook() expects"
" a callable or None as argument");
}
return ret;
}
/* Get notice receiver callback function. */
static char conn_get_cast_hook__doc__[] =
"get_cast_hook() -- get the fallback typecast function";
static PyObject *
conn_get_cast_hook(connObject *self, PyObject *noargs)
{
PyObject *ret = self->cast_hook;;
if (!ret)
ret = Py_None;
Py_INCREF(ret);
return ret;
}
/* Set notice receiver callback function. */
static char conn_set_notice_receiver__doc__[] =
"set_notice_receiver(func) -- set the current notice receiver";
static PyObject *
conn_set_notice_receiver(connObject *self, PyObject *func)
{
PyObject *ret = NULL;
if (func == Py_None) {
Py_XDECREF(self->notice_receiver);
self->notice_receiver = NULL;
Py_INCREF(Py_None); ret = Py_None;
}
else if (PyCallable_Check(func)) {
Py_XINCREF(func); Py_XDECREF(self->notice_receiver);
self->notice_receiver = func;
PQsetNoticeReceiver(self->cnx, notice_receiver, self);
Py_INCREF(Py_None); ret = Py_None;
}
else {
PyErr_SetString(PyExc_TypeError,
"Method set_notice_receiver() expects"
" a callable or None as argument");
}
return ret;
}
/* Get notice receiver callback function. */
static char conn_get_notice_receiver__doc__[] =
"get_notice_receiver() -- get the current notice receiver";
static PyObject *
conn_get_notice_receiver(connObject *self, PyObject *noargs)
{
PyObject *ret = self->notice_receiver;
if (!ret)
ret = Py_None;
Py_INCREF(ret);
return ret;
}
/* Close without deleting. */
static char conn_close__doc__[] =
"close() -- close connection\n\n"
"All instances of the connection object and derived objects\n"
"(queries and large objects) can no longer be used after this call.\n";
static PyObject *
conn_close(connObject *self, PyObject *noargs)
{
/* connection object cannot already be closed */
if (!self->cnx) {
set_error_msg(InternalError, "Connection already closed");
return NULL;
}
Py_BEGIN_ALLOW_THREADS
PQfinish(self->cnx);
Py_END_ALLOW_THREADS
self->cnx = NULL;
Py_INCREF(Py_None);
return Py_None;
}
/* Get asynchronous notify. */
static char conn_get_notify__doc__[] =
"getnotify() -- get database notify for this connection";
static PyObject *
conn_get_notify(connObject *self, PyObject *noargs)
{
PGnotify *notify;
if (!self->cnx) {
PyErr_SetString(PyExc_TypeError, "Connection is not valid");
return NULL;
}
/* checks for NOTIFY messages */
PQconsumeInput(self->cnx);
if (!(notify = PQnotifies(self->cnx))) {
Py_INCREF(Py_None);
return Py_None;
}
else {
PyObject *notify_result, *tmp;
if (!(tmp = PyStr_FromString(notify->relname))) {
return NULL;
}
if (!(notify_result = PyTuple_New(3))) {
return NULL;
}
PyTuple_SET_ITEM(notify_result, 0, tmp);
if (!(tmp = PyInt_FromLong(notify->be_pid))) {
Py_DECREF(notify_result);
return NULL;
}
PyTuple_SET_ITEM(notify_result, 1, tmp);
/* extra exists even in old versions that did not support it */
if (!(tmp = PyStr_FromString(notify->extra))) {
Py_DECREF(notify_result);
return NULL;
}
PyTuple_SET_ITEM(notify_result, 2, tmp);
PQfreemem(notify);
return notify_result;
}
}
/* Get the list of connection attributes. */
static PyObject *
conn_dir(connObject *self, PyObject *noargs)
{
PyObject *attrs;
attrs = PyObject_Dir(PyObject_Type((PyObject *) self));
PyObject_CallMethod(
attrs, "extend", "[sssssssssssss]",
"host", "port", "db", "options", "error", "status", "user",
"protocol_version", "server_version", "socket", "backend_pid",
"ssl_in_use", "ssl_attributes");
return attrs;
}
/* Connection object methods */
static struct PyMethodDef conn_methods[] = {
{"__dir__", (PyCFunction) conn_dir, METH_NOARGS, NULL},
{"source", (PyCFunction) conn_source,
METH_NOARGS, conn_source__doc__},
{"query", (PyCFunction) conn_query,
METH_VARARGS, conn_query__doc__},
{"query_prepared", (PyCFunction) conn_query_prepared,
METH_VARARGS, conn_query_prepared__doc__},
{"prepare", (PyCFunction) conn_prepare,
METH_VARARGS, conn_prepare__doc__},
{"describe_prepared", (PyCFunction) conn_describe_prepared,
METH_VARARGS, conn_describe_prepared__doc__},
{"reset", (PyCFunction) conn_reset,
METH_NOARGS, conn_reset__doc__},
{"cancel", (PyCFunction) conn_cancel,
METH_NOARGS, conn_cancel__doc__},
{"close", (PyCFunction) conn_close,
METH_NOARGS, conn_close__doc__},
{"fileno", (PyCFunction) conn_fileno,
METH_NOARGS, conn_fileno__doc__},
{"get_cast_hook", (PyCFunction) conn_get_cast_hook,
METH_NOARGS, conn_get_cast_hook__doc__},
{"set_cast_hook", (PyCFunction) conn_set_cast_hook,
METH_O, conn_set_cast_hook__doc__},
{"get_notice_receiver", (PyCFunction) conn_get_notice_receiver,
METH_NOARGS, conn_get_notice_receiver__doc__},
{"set_notice_receiver", (PyCFunction) conn_set_notice_receiver,
METH_O, conn_set_notice_receiver__doc__},
{"getnotify", (PyCFunction) conn_get_notify,
METH_NOARGS, conn_get_notify__doc__},
{"inserttable", (PyCFunction) conn_inserttable,
METH_VARARGS, conn_inserttable__doc__},
{"transaction", (PyCFunction) conn_transaction,
METH_NOARGS, conn_transaction__doc__},
{"parameter", (PyCFunction) conn_parameter,
METH_VARARGS, conn_parameter__doc__},
{"date_format", (PyCFunction) conn_date_format,
METH_NOARGS, conn_date_format__doc__},
#ifdef ESCAPING_FUNCS
{"escape_literal", (PyCFunction) conn_escape_literal,
METH_O, conn_escape_literal__doc__},
{"escape_identifier", (PyCFunction) conn_escape_identifier,
METH_O, conn_escape_identifier__doc__},
#endif /* ESCAPING_FUNCS */
{"escape_string", (PyCFunction) conn_escape_string,
METH_O, conn_escape_string__doc__},
{"escape_bytea", (PyCFunction) conn_escape_bytea,
METH_O, conn_escape_bytea__doc__},
#ifdef DIRECT_ACCESS
{"putline", (PyCFunction) conn_putline,
METH_VARARGS, conn_putline__doc__},
{"getline", (PyCFunction) conn_getline,
METH_NOARGS, conn_getline__doc__},
{"endcopy", (PyCFunction) conn_endcopy,
METH_NOARGS, conn_endcopy__doc__},
#endif /* DIRECT_ACCESS */
#ifdef LARGE_OBJECTS
{"locreate", (PyCFunction) conn_locreate,
METH_VARARGS, conn_locreate__doc__},
{"getlo", (PyCFunction) conn_getlo,
METH_VARARGS, conn_getlo__doc__},
{"loimport", (PyCFunction) conn_loimport,
METH_VARARGS, conn_loimport__doc__},
#endif /* LARGE_OBJECTS */
{NULL, NULL} /* sentinel */
};
static char conn__doc__[] = "PostgreSQL connection object";
/* Connection type definition */
static PyTypeObject connType = {
PyVarObject_HEAD_INIT(NULL, 0)
"pg.Connection", /* tp_name */
sizeof(connObject), /* tp_basicsize */
0, /* tp_itemsize */
(destructor) conn_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
(getattrofunc) conn_getattr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT, /* tp_flags */
conn__doc__, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
conn_methods, /* tp_methods */
};
|