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
|
/*
+----------------------------------------------------------------------+
| PHP version 4.0 |
+----------------------------------------------------------------------+
| Copyright (c) 1997, 1998, 1999, 2000 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 2.02 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
| http://www.php.net/license/2_02.txt. |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Contributed by ECL IP'S Software & Services |
| http://www.eclips-software.com |
| mailto://idev@eclips-software.com |
| Author: David Hnot <henot@php.net> |
+----------------------------------------------------------------------+
*/
/* $Id: ii.c,v 1.10 2000/09/29 09:29:02 henot Exp $ */
#include "php.h"
#include "php_globals.h"
#include "php_ini.h"
#include "php_ii.h"
#include "ii.h"
#include "ext/standard/php_string.h"
#if HAVE_II
ZEND_DECLARE_MODULE_GLOBALS(ii)
/* True globals, no need for thread safety */
static int le_ii_link,le_ii_plink;
#define SAFE_STRING(s) ((s)?(s):"")
/* Every user visible function must have an entry in ii_functions[].
*/
function_entry ii_functions[] = {
PHP_FE(ingres_connect, NULL)
PHP_FE(ingres_pconnect, NULL)
PHP_FE(ingres_close, NULL)
PHP_FE(ingres_query, NULL)
PHP_FE(ingres_num_rows, NULL)
PHP_FE(ingres_num_fields, NULL)
PHP_FE(ingres_field_name, NULL)
PHP_FE(ingres_field_type, NULL)
PHP_FE(ingres_field_nullable, NULL)
PHP_FE(ingres_field_length, NULL)
PHP_FE(ingres_field_precision, NULL)
PHP_FE(ingres_field_scale, NULL)
PHP_FE(ingres_fetch_array, NULL)
PHP_FE(ingres_fetch_row, NULL)
PHP_FE(ingres_fetch_object, NULL)
PHP_FE(ingres_rollback, NULL)
PHP_FE(ingres_commit, NULL)
PHP_FE(ingres_autocommit, NULL)
{NULL, NULL, NULL} /* Must be the last line in ii_functions[] */
};
zend_module_entry ingres_ii_module_entry = {
"ingres_ii",
ii_functions,
PHP_MINIT(ii),
PHP_MSHUTDOWN(ii),
PHP_RINIT(ii),
PHP_RSHUTDOWN(ii),
PHP_MINFO(ii),
STANDARD_MODULE_PROPERTIES
};
#ifdef COMPILE_DL_INGRES_II
ZEND_GET_MODULE(ingres_ii)
#endif
/* php.ini entries
*/
PHP_INI_BEGIN()
STD_PHP_INI_BOOLEAN("ingres.allow_persistent", "1", PHP_INI_SYSTEM, OnUpdateInt, allow_persistent, zend_ii_globals, ii_globals)
STD_PHP_INI_ENTRY_EX("ingres.max_persistent", "-1", PHP_INI_SYSTEM, OnUpdateInt, max_persistent, zend_ii_globals, ii_globals, display_link_numbers)
STD_PHP_INI_ENTRY_EX("ingres.max_links", "-1", PHP_INI_SYSTEM, OnUpdateInt, max_links, zend_ii_globals, ii_globals, display_link_numbers)
STD_PHP_INI_ENTRY("ingres.default_database", NULL, PHP_INI_ALL, OnUpdateString, default_database, zend_ii_globals, ii_globals)
STD_PHP_INI_ENTRY("ingres.default_user", NULL, PHP_INI_ALL, OnUpdateString, default_user, zend_ii_globals, ii_globals)
STD_PHP_INI_ENTRY("ingres.default_password", NULL, PHP_INI_ALL, OnUpdateString, default_password, zend_ii_globals, ii_globals)
PHP_INI_END()
/* closes statement in given link
*/
static int _close_statement(II_LINK *link)
{
IIAPI_CLOSEPARM closeParm;
closeParm.cl_genParm.gp_callback = NULL;
closeParm.cl_genParm.gp_closure = NULL;
closeParm.cl_stmtHandle = link->stmtHandle;
IIapi_close(&closeParm);
ii_sync(&(closeParm.cl_genParm));
if(ii_success(&(closeParm.cl_genParm))==II_FAIL) {
return 1;
}
link->stmtHandle = NULL;
link->fieldCount = 0;
link->descriptor = NULL;
return 0;
}
/* rolls back transaction in given link
after closing the active transaction (if any)
*/
static int _rollback_transaction(II_LINK *link)
{
IIAPI_ROLLBACKPARM rollbackParm;
if(link->stmtHandle && _close_statement(link)) {
php_error(E_WARNING,"Ingres II: Unable to close statement !!");
return 1;
}
rollbackParm.rb_genParm.gp_callback = NULL;
rollbackParm.rb_genParm.gp_closure = NULL;
rollbackParm.rb_tranHandle = link->tranHandle;
rollbackParm.rb_savePointHandle = NULL;
IIapi_rollback(&rollbackParm);
ii_sync(&(rollbackParm.rb_genParm));
if(ii_success(&(rollbackParm.rb_genParm))==II_FAIL) {
return 1;
}
link->tranHandle = NULL;
return 0;
}
/* closes the given link, actually disconnecting from server
and releasing associated resources after rolling back the
active transaction (if any)
*/
static void _close_ii_link(II_LINK *link)
{
IIAPI_DISCONNPARM disconnParm;
IILS_FETCH();
if(link->tranHandle && _rollback_transaction(link)) {
php_error(E_WARNING,"Ingres II: Unable to rollback transaction !!");
}
disconnParm.dc_genParm.gp_callback = NULL;
disconnParm.dc_genParm.gp_closure = NULL;
disconnParm.dc_connHandle = link->connHandle;
IIapi_disconnect(&disconnParm);
free(link);
IIG(num_links)--;
}
/* closes the given persistent link, see _close_ii_link
*/
static void _close_ii_plink(II_LINK *link)
{
IILS_FETCH();
_close_ii_link(link);
IIG(num_persistent)--;
}
/* cleans up the given persistent link.
used when the request ends to 'refresh' the link for use
by the next request
*/
static void _clean_ii_plink(II_LINK *link)
{
IIAPI_AUTOPARM autoParm;
IILS_FETCH();
if(link->autocommit) {
if(link->stmtHandle && _close_statement(link)) {
php_error(E_WARNING,"Ingres II: Unable to close statement !!");
}
autoParm.ac_genParm.gp_callback = NULL;
autoParm.ac_genParm.gp_closure = NULL;
autoParm.ac_connHandle = link->connHandle;
autoParm.ac_tranHandle = link->tranHandle;
IIapi_autocommit(&autoParm);
ii_sync(&(autoParm.ac_genParm));
if(ii_success(&(autoParm.ac_genParm))==II_FAIL) {
php_error(E_WARNING,"Ingres II: Unable to disable autocommit");
}
link->autocommit = 0;
link->tranHandle = NULL;
}
if(link->tranHandle && _rollback_transaction(link)) {
php_error(E_WARNING,"Ingres II: Unable to rollback transaction !!");
}
}
/* sets the default link
*/
static void php_ii_set_default_link(int id)
{
IILS_FETCH();
if (IIG(default_link)!=-1) {
zend_list_delete(IIG(default_link));
}
IIG(default_link) = id;
zend_list_addref(id);
}
/* gets the default link
if none has been set, tries to open a new one with default
parameters
*/
static int php_ii_get_default_link(INTERNAL_FUNCTION_PARAMETERS IILS_DC)
{
if (IIG(default_link)==-1) { /* no link opened yet, implicitly open one */
ht = 0;
php_ii_do_connect(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);
}
return IIG(default_link);
}
/* Module initialization
*/
PHP_MINIT_FUNCTION(ii)
{
IIAPI_INITPARM initParm = {
-1, /* timeout in ms, -1 = no timeout */
IIAPI_VERSION_1, /* api version used */
0 /* status (output) */
};
IILS_FETCH();
REGISTER_INI_ENTRIES();
le_ii_link = register_list_destructors(_close_ii_link,NULL);
le_ii_plink = register_list_destructors(_clean_ii_plink,_close_ii_plink);
IIG(num_persistent) = 0;
/* Constants registration */
REGISTER_LONG_CONSTANT("INGRES_ASSOC", II_ASSOC, CONST_CS | CONST_PERSISTENT);
REGISTER_LONG_CONSTANT("INGRES_NUM", II_NUM, CONST_CS | CONST_PERSISTENT);
REGISTER_LONG_CONSTANT("INGRES_BOTH", II_BOTH, CONST_CS | CONST_PERSISTENT);
/* Ingres api initialization */
IIapi_initialize(&initParm);
if (initParm.in_status==IIAPI_ST_SUCCESS) {
return SUCCESS;
} else {
return FAILURE;
}
}
/* Module shutdown
*/
PHP_MSHUTDOWN_FUNCTION(ii)
{
IIAPI_TERMPARM termParm;
UNREGISTER_INI_ENTRIES();
/* Ingres api termination */
IIapi_terminate(&termParm);
if (termParm.tm_status==IIAPI_ST_SUCCESS) {
return SUCCESS;
} else {
return FAILURE;
}
}
/* New request initialization
*/
PHP_RINIT_FUNCTION(ii)
{
IILS_FETCH();
IIG(default_link) = -1;
IIG(num_links) = IIG(num_persistent);
return SUCCESS;
}
/* End of request
*/
PHP_RSHUTDOWN_FUNCTION(ii)
{
IILS_FETCH();
if (IIG(default_link)!=-1) {
zend_list_delete(IIG(default_link));
IIG(default_link) = -1;
}
return SUCCESS;
}
/* Informations reported to phpinfo()
*/
PHP_MINFO_FUNCTION(ii)
{
char buf[32];
IILS_FETCH();
php_info_print_table_start();
php_info_print_table_header(2, "Ingres II Support", "enabled");
sprintf(buf, "%ld", IIG(num_persistent));
php_info_print_table_row(2, "Active Persistent Links", buf);
sprintf(buf, "%ld", IIG(num_links));
php_info_print_table_row(2, "Active Links", buf);
php_info_print_table_end();
DISPLAY_INI_ENTRIES();
}
/* Waits for completion of the last Ingres api call
used because of the asynchronous design of this api
*/
static int ii_sync(IIAPI_GENPARM *genParm)
{
static IIAPI_WAITPARM waitParm = {
-1, /* no timeout, we don't want asynchronous queries */
0 /* wt_status (output) */
};
while( genParm->gp_completed == FALSE ) {
IIapi_wait(&waitParm);
}
if (waitParm.wt_status != IIAPI_ST_SUCCESS) {
php_error(E_WARNING,"Ingres II: Unexpected failure of IIapi_wait()");
return 0;
}
return 1;
}
/* Handles errors from Ingres api
*/
static int ii_success(IIAPI_GENPARM *genParm)
{
switch(genParm->gp_status) {
case IIAPI_ST_SUCCESS:
return II_OK;
case IIAPI_ST_NO_DATA:
return II_NO_DATA;
default:
if(genParm->gp_errorHandle == NULL) { /* no error message available */
php_error(E_WARNING,"Ingres II: Server or API error - no error message available");
} else {
IIAPI_GETEINFOPARM getEInfoParm;
getEInfoParm.ge_errorHandle = genParm->gp_errorHandle;
IIapi_getErrorInfo(&getEInfoParm);
php_error(E_WARNING,"Ingres II: Server or API error : %s", getEInfoParm.ge_message);
php_error(E_WARNING,"Ingres II: SQLSTATE : %s", getEInfoParm.ge_SQLSTATE);
}
return II_FAIL;
}
}
/* Actually handles connection creation, either persistent or not
*/
static void php_ii_do_connect(INTERNAL_FUNCTION_PARAMETERS,int persistent)
{
zval **database, **username, **password;
char *db, *user, *pass;
int argc;
char *hashed_details;
int hashed_details_length;
IIAPI_CONNPARM connParm;
II_LINK *link;
IILS_FETCH();
PLS_FETCH();
/* Setting db, user and pass according to sql_safe_mode, parameters and/or default values */
argc = ZEND_NUM_ARGS();
if (PG(sql_safe_mode)) {
if (argc>0) {
php_error(E_NOTICE,"SQL safe mode in effect - ignoring host/user/password information");
}
db = pass = NULL;
user=php_get_current_user();
hashed_details_length = strlen(user) + sizeof("ingres___")-1;
hashed_details = (char *) emalloc(hashed_details_length+1);
sprintf(hashed_details,"ingres__%s_",user);
} else {
db = IIG(default_database);
user = IIG(default_user);
pass = IIG(default_password);
if (argc > 3 || zend_get_parameters_ex(argc, &database, &username, &password) == FAILURE){
WRONG_PARAM_COUNT;
}
switch(argc) {
case 3:
convert_to_string_ex(password);
pass = (*password)->value.str.val;
/* Fall-through. */
case 2:
convert_to_string_ex(username);
user = (*username)->value.str.val;
/* Fall-through. */
case 1:
convert_to_string_ex(database);
db = (*database)->value.str.val;
/* Fall-through. */
case 0:
break;
}
hashed_details_length = sizeof("ingres___")-1 + strlen(SAFE_STRING(db))+strlen(SAFE_STRING(user))+strlen(SAFE_STRING(pass));
hashed_details = (char *) emalloc(hashed_details_length+1);
sprintf(hashed_details,"ingres_%s_%s_%s",SAFE_STRING(db), SAFE_STRING(user), SAFE_STRING(pass));
}
/* if asked for unauthorized persistency, issue a warning
and go for a non-persistent link */
if (persistent && !IIG(allow_persistent)) {
php_error(E_WARNING,"Ingres II: Persistent links disabled !");
persistent = 0;
}
if (persistent) {
list_entry *le;
/* is this link already in the persistent list ? */
if (zend_hash_find(&EG(persistent_list), hashed_details, hashed_details_length+1, (void **) &le)==FAILURE) { /* no, new persistent connection */
list_entry new_le;
if (IIG(max_links)!=-1 && IIG(num_links)>=IIG(max_links)) {
php_error(E_WARNING,"Ingres II: Too many open links (%d)",IIG(num_links));
efree(hashed_details);
RETURN_FALSE;
}
if (IIG(max_persistent)!=-1 && IIG(num_persistent)>=IIG(max_persistent)) {
php_error(E_WARNING,"Ingres II: Too many open persistent links (%d)",IIG(num_persistent));
efree(hashed_details);
RETURN_FALSE;
}
/* create the link */
connParm.co_genParm.gp_callback = NULL;
connParm.co_genParm.gp_closure = NULL;
connParm.co_target = db;
connParm.co_username = user;
connParm.co_password = pass;
connParm.co_timeout = -1; /* -1 is no timeout */
connParm.co_connHandle = NULL;
connParm.co_tranHandle = NULL;
IIapi_connect(&connParm);
if(!ii_sync(&(connParm.co_genParm)) || ii_success(&(connParm.co_genParm)) == II_FAIL) {
efree(hashed_details);
php_error(E_WARNING,"Ingres II: Unable to connect to database (%s)", db);
RETURN_FALSE;
}
link = (II_LINK *) malloc(sizeof(II_LINK));
link->connHandle = connParm.co_connHandle;
link->tranHandle = NULL;
link->stmtHandle = NULL;
link->fieldCount = 0;
link->descriptor = NULL;
link->autocommit = 0;
/* hash it up */
new_le.type = le_ii_plink;
new_le.ptr = link;
if (zend_hash_update(&EG(persistent_list), hashed_details, hashed_details_length+1, (void *) &new_le, sizeof(list_entry), NULL)==FAILURE) {
php_error(E_WARNING,"Ingres II: Unable to hash (%s)", hashed_details);
free(link);
efree(hashed_details);
RETURN_FALSE;
}
IIG(num_persistent)++;
IIG(num_links)++;
} else { /* already open persistent connection */
if (le->type != le_ii_plink) {
RETURN_FALSE;
}
/* here we should ensure that the link did not die */
/* unable to figure out the right way to do this
maybe does the api handle the reconnection transparently ? */
link = (II_LINK *) le->ptr;
}
ZEND_REGISTER_RESOURCE(return_value, link, le_ii_plink);
} else { /* non persistent */
list_entry *index_ptr,new_index_ptr;
/* first we check the hash for the hashed_details key. if it exists,
* it should point us to the right offset where the actual link sits.
* if it doesn't, open a new link, add it to the resource list,
* and add a pointer to it with hashed_details as the key.
*/
if (zend_hash_find(&EG(regular_list),hashed_details,hashed_details_length+1,(void **) &index_ptr)==SUCCESS) {
int type;
void *ptr;
if (index_ptr->type != le_index_ptr) {
RETURN_FALSE;
}
link = (II_LINK *) index_ptr->ptr;
ptr = zend_list_find((int) link,&type); /* check if the link is still there */
if (ptr && (type==le_ii_link || type==le_ii_plink)) {
zend_list_addref((int) link);
return_value->value.lval = (int) link;
php_ii_set_default_link((int) link);
return_value->type = IS_RESOURCE;
efree(hashed_details);
return;
} else {
zend_hash_del(&EG(regular_list),hashed_details,hashed_details_length+1);
}
}
if (IIG(max_links)!=-1 && IIG(num_links)>=IIG(max_links)) {
php_error(E_WARNING,"Ingres II: Too many open links (%d)",IIG(num_links));
efree(hashed_details);
RETURN_FALSE;
}
/* create the link */
connParm.co_genParm.gp_callback = NULL;
connParm.co_genParm.gp_closure = NULL;
connParm.co_target = db;
connParm.co_username = user;
connParm.co_password = pass;
connParm.co_timeout = -1; /* -1 is no timeout */
connParm.co_connHandle = NULL;
connParm.co_tranHandle = NULL;
IIapi_connect(&connParm);
if(!ii_sync(&(connParm.co_genParm)) || ii_success(&(connParm.co_genParm)) == II_FAIL) {
efree(hashed_details);
php_error(E_WARNING,"Ingres II: Unable to connect to database (%s)", db);
RETURN_FALSE;
}
link = (II_LINK *) malloc(sizeof(II_LINK));
link->connHandle = connParm.co_connHandle;
link->tranHandle = NULL;
link->stmtHandle = NULL;
link->fieldCount = 0;
link->descriptor = NULL;
link->autocommit = 0;
/* add it to the list */
ZEND_REGISTER_RESOURCE(return_value, link, le_ii_link);
/* add it to the hash */
new_index_ptr.ptr = (void *) return_value->value.lval;
new_index_ptr.type = le_index_ptr;
if (zend_hash_update(&EG(regular_list),hashed_details,hashed_details_length+1,(void *) &new_index_ptr, sizeof(list_entry), NULL)==FAILURE) {
php_error(E_WARNING,"Ingres II: Unable to hash (%s)", hashed_details);
free(link);
efree(hashed_details);
RETURN_FALSE;
}
IIG(num_links)++;
}
efree(hashed_details);
php_ii_set_default_link(return_value->value.lval);
}
/* {{{ proto resource ingres_connect([string database [, string username [, string password]]])
Open a connection to an Ingres II database the syntax of database is [node_id::]dbname[/svr_class] */
PHP_FUNCTION(ingres_connect)
{
php_ii_do_connect(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);
}
/* }}} */
/* {{{ proto resource ingres_pconnect([string database [, string username [, string password]]])
Open a persistent connection to an Ingres II database the syntax of database is [node_id::]dbname[/svr_class] */
PHP_FUNCTION(ingres_pconnect)
{
php_ii_do_connect(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1);
}
/* }}} */
/* {{{ proto bool ingres_close([resource link])
Close an Ingres II database connection */
PHP_FUNCTION(ingres_close)
{
zval **link;
int argc;
int link_id = -1;
II_LINK *ii_link;
IILS_FETCH();
argc = ZEND_NUM_ARGS();
if (argc > 1 || (argc && zend_get_parameters_ex(argc, &link) == FAILURE)){
WRONG_PARAM_COUNT;
}
if (argc == 0) {
link_id = IIG(default_link);
}
ZEND_FETCH_RESOURCE2(ii_link, II_LINK *, link, link_id, "Ingres II Link", le_ii_link, le_ii_plink);
zend_list_delete(link_id);
RETURN_TRUE;
}
/* }}} */
/* {{{ proto bool ingres_query(string query [, resource link])
Send a SQL query to Ingres II */
/* This should go into the documentation */
/* Unsupported query types:
- close
- commit
- connect
- disconnect
- get dbevent
- prepare to commit
- rollback
- savepoint
- set autocommit
- <all cursor related queries>
(look for dedicated functions instead) */
PHP_FUNCTION(ingres_query)
{
zval **query, **link;
int argc;
int link_id = -1;
II_LINK *ii_link;
IIAPI_QUERYPARM queryParm;
IIAPI_GETDESCRPARM getDescrParm;
IILS_FETCH();
argc = ZEND_NUM_ARGS();
if (argc < 1 || argc > 2 || zend_get_parameters_ex(argc, &query, &link) == FAILURE){
WRONG_PARAM_COUNT;
}
if (argc < 2) {
link_id = php_ii_get_default_link(INTERNAL_FUNCTION_PARAM_PASSTHRU IILS_CC);
}
ZEND_FETCH_RESOURCE2(ii_link, II_LINK *, link, link_id, "Ingres II Link", le_ii_link, le_ii_plink);
convert_to_string_ex(query);
/* if there's already an active statement, close it */
if(ii_link->stmtHandle && _close_statement(ii_link)) {
php_error(E_WARNING,"Ingres II: Unable to close statement !!");
RETURN_FALSE;
}
/* send the query */
queryParm.qy_genParm.gp_callback = NULL;
queryParm.qy_genParm.gp_closure = NULL;
queryParm.qy_connHandle = ii_link->connHandle;
queryParm.qy_tranHandle = ii_link->tranHandle;
queryParm.qy_stmtHandle = NULL;
queryParm.qy_queryType = IIAPI_QT_QUERY;
queryParm.qy_parameters = FALSE;
queryParm.qy_queryText = Z_STRVAL_PP(query);
IIapi_query(&queryParm);
ii_sync(&(queryParm.qy_genParm));
if(ii_success(&(queryParm.qy_genParm))==II_FAIL) {
RETURN_FALSE;
}
/* store transaction and statement handles */
ii_link->tranHandle = queryParm.qy_tranHandle;
ii_link->stmtHandle = queryParm.qy_stmtHandle;
/* get description of results */
getDescrParm.gd_genParm.gp_callback = NULL;
getDescrParm.gd_genParm.gp_closure = NULL;
getDescrParm.gd_stmtHandle = ii_link->stmtHandle;
IIapi_getDescriptor(&getDescrParm);
ii_sync(&(getDescrParm.gd_genParm));
if(ii_success(&(getDescrParm.gd_genParm))==II_FAIL) {
RETURN_FALSE;
}
/* store the results */
ii_link->fieldCount = getDescrParm.gd_descriptorCount;
ii_link->descriptor = getDescrParm.gd_descriptor;
RETURN_TRUE;
}
/* }}} */
/* {{{ proto int ingres_num_rows([resource link])
Return the number of rows affected/returned by the last query */
/* Warning : don't call ingres_num_rows() before ingres_fetch_xx(),
or ingres_fetch_xx() wouldn't find any data */
PHP_FUNCTION(ingres_num_rows)
{
zval **link;
int argc;
int link_id = -1;
II_LINK *ii_link;
IIAPI_GETQINFOPARM getQInfoParm;
IILS_FETCH();
argc = ZEND_NUM_ARGS();
if (argc > 1 || zend_get_parameters_ex(argc, &link) == FAILURE){
WRONG_PARAM_COUNT;
}
if (argc < 1) {
link_id = php_ii_get_default_link(INTERNAL_FUNCTION_PARAM_PASSTHRU IILS_CC);
}
ZEND_FETCH_RESOURCE2(ii_link, II_LINK *, link, link_id, "Ingres II Link", le_ii_link, le_ii_plink);
/* get number of affected rows */
getQInfoParm.gq_genParm.gp_callback = NULL;
getQInfoParm.gq_genParm.gp_closure = NULL;
getQInfoParm.gq_stmtHandle = ii_link->stmtHandle;
IIapi_getQueryInfo(&getQInfoParm);
ii_sync(&(getQInfoParm.gq_genParm));
if(ii_success(&(getQInfoParm.gq_genParm))==II_FAIL) {
RETURN_FALSE;
}
/* return the result */
if(getQInfoParm.gq_mask & IIAPI_GQ_ROW_COUNT) {
RETURN_LONG(getQInfoParm.gq_rowCount);
} else {
RETURN_LONG(0);
}
}
/* }}} */
/* {{{ proto int ingres_num_fields([resource link])
Return the number of fields returned by the last query */
PHP_FUNCTION(ingres_num_fields)
{
zval **link;
int argc;
int link_id = -1;
II_LINK *ii_link;
IILS_FETCH();
argc = ZEND_NUM_ARGS();
if (argc > 1 || zend_get_parameters_ex(argc, &link) == FAILURE){
WRONG_PARAM_COUNT;
}
if (argc < 1) {
link_id = php_ii_get_default_link(INTERNAL_FUNCTION_PARAM_PASSTHRU IILS_CC);
}
ZEND_FETCH_RESOURCE2(ii_link, II_LINK *, link, link_id, "Ingres II Link", le_ii_link, le_ii_plink);
RETURN_LONG(ii_link->fieldCount);
}
/* }}} */
#define II_FIELD_INFO_NAME 1
#define II_FIELD_INFO_TYPE 2
#define II_FIELD_INFO_NULLABLE 3
#define II_FIELD_INFO_LENGTH 4
#define II_FIELD_INFO_PRECISION 5
#define II_FIELD_INFO_SCALE 6
/* Return information about a field in a query result
*/
static void php_ii_field_info(INTERNAL_FUNCTION_PARAMETERS, int info_type)
{
zval **idx, **link;
int argc;
int link_id = -1;
char *name, *fun_name;
int index;
II_LINK *ii_link;
IILS_FETCH();
argc = ZEND_NUM_ARGS();
if (argc < 1 || argc > 2 || zend_get_parameters_ex(argc, &idx, &link) == FAILURE){
WRONG_PARAM_COUNT;
}
if (argc < 2) {
link_id = php_ii_get_default_link(INTERNAL_FUNCTION_PARAM_PASSTHRU IILS_CC);
}
ZEND_FETCH_RESOURCE2(ii_link, II_LINK *, link, link_id, "Ingres II Link", le_ii_link, le_ii_plink);
convert_to_long_ex(idx);
index = Z_LVAL_PP(idx);
if(index < 1 || index > ii_link->fieldCount) {
switch(info_type) {
case II_FIELD_INFO_NAME:
fun_name = "ii_field_name";
break;
case II_FIELD_INFO_TYPE:
fun_name = "ii_field_type";
break;
case II_FIELD_INFO_NULLABLE:
fun_name = "ii_field_nullable";
break;
case II_FIELD_INFO_LENGTH:
fun_name = "ii_field_length";
break;
case II_FIELD_INFO_PRECISION:
fun_name = "ii_field_precision";
break;
case II_FIELD_INFO_SCALE:
fun_name = "ii_field_scale";
break;
default:
break;
}
php_error(E_WARNING,"Ingres II: %s() called with wrong index (%d)",fun_name,index);
RETURN_FALSE;
}
switch (info_type) {
case II_FIELD_INFO_NAME:
name = php_ii_field_name(ii_link, index);
if(name == NULL) {
RETURN_FALSE;
}
RETURN_STRING(name, 1);
break;
case II_FIELD_INFO_TYPE:
switch((ii_link->descriptor[index - 1]).ds_dataType) {
case IIAPI_BYTE_TYPE: RETURN_STRING("IIAPI_BYTE_TYPE",1);
case IIAPI_CHA_TYPE: RETURN_STRING("IIAPI_CHA_TYPE",1);
case IIAPI_CHR_TYPE: RETURN_STRING("IIAPI_CHR_TYPE",1);
case IIAPI_DEC_TYPE: RETURN_STRING("IIAPI_DEC_TYPE",1);
case IIAPI_DTE_TYPE: RETURN_STRING("IIAPI_DTE_TYPE",1);
case IIAPI_FLT_TYPE: RETURN_STRING("IIAPI_FLT_TYPE",1);
case IIAPI_INT_TYPE: RETURN_STRING("IIAPI_INT_TYPE",1);
case IIAPI_LOGKEY_TYPE: RETURN_STRING("IIAPI_LOGKEY_TYPE",1);
case IIAPI_LBYTE_TYPE: RETURN_STRING("IIAPI_LBYTE_TYPE",1);
case IIAPI_LVCH_TYPE: RETURN_STRING("IIAPI_LVCH_TYPE",1);
case IIAPI_MNY_TYPE: RETURN_STRING("IIAPI_MNY_TYPE",1);
case IIAPI_TABKEY_TYPE: RETURN_STRING("IIAPI_TABKEY_TYPE",1);
case IIAPI_TXT_TYPE: RETURN_STRING("IIAPI_TXT_TYPE",1);
case IIAPI_VBYTE_TYPE: RETURN_STRING("IIAPI_VBYTE_TYPE",1);
case IIAPI_VCH_TYPE: RETURN_STRING("IIAPI_VCH_TYPE",1);
default:
php_error(E_WARNING,"Ingres II: Unknown Ingres data type");
RETURN_FALSE;
break;
}
break;
case II_FIELD_INFO_NULLABLE:
if((ii_link->descriptor[index - 1]).ds_nullable) {
RETURN_TRUE;
} else {
RETURN_FALSE;
}
break;
case II_FIELD_INFO_LENGTH:
RETURN_LONG((ii_link->descriptor[index - 1]).ds_length);
break;
case II_FIELD_INFO_PRECISION:
RETURN_LONG((ii_link->descriptor[index - 1]).ds_precision);
break;
case II_FIELD_INFO_SCALE:
RETURN_LONG((ii_link->descriptor[index - 1]).ds_scale);
break;
default:
RETURN_FALSE;
}
}
/* Return the name of a field in a query result
*/
static char *php_ii_field_name(II_LINK *ii_link, int index)
{
if(index < 1 || index > ii_link->fieldCount) {
php_error(E_WARNING,"Ingres II: php_ii_field_name() called with wrong index (%d)",index);
return NULL;
}
return (ii_link->descriptor[index - 1]).ds_columnName;
}
/* {{{ proto string ingres_field_name(int index [, resource link])
Return the name of a field in a query result index must be >0 and <= ingres_num_fields() */
PHP_FUNCTION(ingres_field_name)
{
php_ii_field_info(INTERNAL_FUNCTION_PARAM_PASSTHRU, II_FIELD_INFO_NAME);
}
/* }}} */
/* {{{ proto string ingres_field_type(int index [, resource link])
Return the type of a field in a query result index must be >0 and <= ingres_num_fields() */
PHP_FUNCTION(ingres_field_type)
{
php_ii_field_info(INTERNAL_FUNCTION_PARAM_PASSTHRU, II_FIELD_INFO_TYPE);
}
/* }}} */
/* {{{ proto string ingres_field_nullable(int index [, resource link])
Return true if the field is nullable and false otherwise index must be >0 and <= ingres_num_fields() */
PHP_FUNCTION(ingres_field_nullable)
{
php_ii_field_info(INTERNAL_FUNCTION_PARAM_PASSTHRU, II_FIELD_INFO_NULLABLE);
}
/* }}} */
/* {{{ proto string ingres_field_length(int index [, resource link])
Return the length of a field in a query result index must be >0 and <= ingres_num_fields() */
PHP_FUNCTION(ingres_field_length)
{
php_ii_field_info(INTERNAL_FUNCTION_PARAM_PASSTHRU, II_FIELD_INFO_LENGTH);
}
/* }}} */
/* {{{ proto string ingres_field_precision(int index [, resource link])
Return the precision of a field in a query result index must be >0 and <= ingres_num_fields() */
PHP_FUNCTION(ingres_field_precision)
{
php_ii_field_info(INTERNAL_FUNCTION_PARAM_PASSTHRU, II_FIELD_INFO_PRECISION);
}
/* }}} */
/* {{{ proto string ingres_field_scale(int index [, resource link])
Return the scale of a field in a query result index must be >0 and <= ingres_num_fields() */
PHP_FUNCTION(ingres_field_scale)
{
php_ii_field_info(INTERNAL_FUNCTION_PARAM_PASSTHRU, II_FIELD_INFO_SCALE);
}
/* }}} */
/* Convert complex Ingres data types to php-usable ones
*/
#define IIAPI_CONVERT(destType,destSize,precision) {\
convertParm.cv_srcDesc.ds_dataType = (ii_link->descriptor[i+k-2]).ds_dataType;\
convertParm.cv_srcDesc.ds_nullable = (ii_link->descriptor[i+k-2]).ds_nullable;\
convertParm.cv_srcDesc.ds_length = (ii_link->descriptor[i+k-2]).ds_length;\
convertParm.cv_srcDesc.ds_precision = (ii_link->descriptor[i+k-2]).ds_precision;\
convertParm.cv_srcDesc.ds_scale = (ii_link->descriptor[i+k-2]).ds_scale;\
convertParm.cv_srcDesc.ds_columnType = (ii_link->descriptor[i+k-2]).ds_columnType;\
convertParm.cv_srcDesc.ds_columnName = (ii_link->descriptor[i+k-2]).ds_columnName;\
convertParm.cv_srcValue.dv_null = columnData[k-1].dv_null;\
convertParm.cv_srcValue.dv_length = columnData[k-1].dv_length;\
convertParm.cv_srcValue.dv_value = columnData[k-1].dv_value;\
convertParm.cv_dstDesc.ds_dataType = destType;\
convertParm.cv_dstDesc.ds_nullable = FALSE;\
convertParm.cv_dstDesc.ds_length = destSize;\
convertParm.cv_dstDesc.ds_precision = precision;\
convertParm.cv_dstDesc.ds_scale = 0;\
convertParm.cv_dstDesc.ds_columnType = IIAPI_COL_TUPLE;\
convertParm.cv_dstDesc.ds_columnName = NULL;\
convertParm.cv_dstValue.dv_null = FALSE;\
convertParm.cv_dstValue.dv_length = convertParm.cv_dstDesc.ds_length;\
convertParm.cv_dstValue.dv_value = emalloc(convertParm.cv_dstDesc.ds_length+1);\
\
IIapi_convertData(&convertParm);\
\
if(ii_success(&(getColParm.gc_genParm))!=II_OK) {\
RETURN_FALSE;\
}\
\
columnData[k-1].dv_length = convertParm.cv_dstValue.dv_length;\
columnData[k-1].dv_value = convertParm.cv_dstValue.dv_value;\
efree(convertParm.cv_srcValue.dv_value);}
/* Fetch a row of result
*/
static void php_ii_fetch(INTERNAL_FUNCTION_PARAMETERS, II_LINK *ii_link, int result_type)
{
IIAPI_GETCOLPARM getColParm;
IIAPI_DATAVALUE *columnData;
IIAPI_CONVERTPARM convertParm;
int i,j,k;
int more;
double value_double;
long value_long;
char *value_char_p;
int len, should_copy, correct_length;
PLS_FETCH();
/* array initialization */
if (array_init(return_value)==FAILURE) {
RETURN_FALSE;
}
/* going through all fields */
for (i=1; i<=ii_link->fieldCount;) {
j = 1;
/* as long as there are no long byte or long varchar fields,
Ingres is able to fetch many fields at a time, so try to find
these types and stop if they're found.
variable j will get number of fields to fetch */
if ((ii_link->descriptor[i]).ds_dataType != IIAPI_LBYTE_TYPE &&
(ii_link->descriptor[i]).ds_dataType != IIAPI_LVCH_TYPE) {
while ((ii_link->descriptor[i+j-1]).ds_dataType != IIAPI_LBYTE_TYPE &&
(ii_link->descriptor[i+j-1]).ds_dataType != IIAPI_LVCH_TYPE &&
i+j <= ii_link->fieldCount) {
j++;
}
}
/* allocate memory for j fields */
columnData = (IIAPI_DATAVALUE *) emalloc(j*sizeof(IIAPI_DATAVALUE));
for(k=1; k<=j; k++) {
columnData[k-1].dv_value = (II_PTR) emalloc((ii_link->descriptor[i+k-2]).ds_length);
}
more = 1; /* this is for multi segment LBYTE and LVCH elements */
while (more) {
getColParm.gc_genParm.gp_callback = NULL;
getColParm.gc_genParm.gp_closure = NULL;
getColParm.gc_rowCount = 1;
getColParm.gc_columnCount = j;
getColParm.gc_columnData = columnData;
getColParm.gc_stmtHandle = ii_link->stmtHandle;
getColParm.gc_moreSegments = 0;
IIapi_getColumns(&getColParm);
ii_sync(&(getColParm.gc_genParm));
if(ii_success(&(getColParm.gc_genParm))!=II_OK) {
RETURN_FALSE;
}
more = getColParm.gc_moreSegments;
if(more){ /* more segments of LBYTE or LVCH element to come */
/* Multi segment LBYTE and LVCH elements not supported yet */
php_error(E_ERROR,"Ingres II: Multi segment LBYTE and LVCH elements not supported yet");
} else {
for(k=1; k<=j; k++) {
if(columnData[k-1].dv_null) { /* NULL value ? */
if(result_type & II_NUM) {
add_index_unset(return_value, i+k-1);
}
if(result_type & II_ASSOC) {
add_assoc_unset(return_value, php_ii_field_name(ii_link, i+k-1));
}
} else { /* non NULL value */
correct_length = 0;
switch((ii_link->descriptor[i+k-2]).ds_dataType) {
case IIAPI_DEC_TYPE: /* decimal (fixed point number) */
case IIAPI_MNY_TYPE: /* money */
/* convert to floating point number */
IIAPI_CONVERT(IIAPI_FLT_TYPE,sizeof(II_FLOAT8),53);
/* NO break */
case IIAPI_FLT_TYPE: /* floating point number */
switch(columnData[k-1].dv_length) {
case 4:
value_double = (double) *((II_FLOAT4 *) columnData[k-1].dv_value);
break;
case 8:
value_double = (double) *((II_FLOAT8 *) columnData[k-1].dv_value);
break;
default:
php_error(E_WARNING,"Ingres II: Invalid size for IIAPI_FLT_TYPE data (%d)",columnData[k-1].dv_length);
break;
}
if(result_type & II_NUM) {
add_index_double(return_value, i+k-1, value_double);
}
if(result_type & II_ASSOC) {
add_assoc_double(return_value, php_ii_field_name(ii_link, i+k-1), value_double);
}
break;
case IIAPI_INT_TYPE: /* integer */
switch(columnData[k-1].dv_length) {
case 1:
value_long = (long) *((II_INT1 *) columnData[k-1].dv_value);
break;
case 2:
value_long = (long) *((II_INT2 *) columnData[k-1].dv_value);
break;
case 4:
value_long = (long) *((II_INT4 *) columnData[k-1].dv_value);
break;
default:
php_error(E_WARNING,"Ingres II: Invalid size for IIAPI_INT_TYPE data (%d)",columnData[k-1].dv_length);
break;
}
if(result_type & II_NUM) {
add_index_long(return_value, i+k-1, value_long);
}
if(result_type & II_ASSOC) {
add_assoc_long(return_value, php_ii_field_name(ii_link, i+k-1), value_long);
}
break;
case IIAPI_TXT_TYPE: /* variable length character string */
case IIAPI_VBYTE_TYPE: /* variable length binary string */
case IIAPI_VCH_TYPE: /* variable length character string */
/* real length is stored in first 2 bytes of data, so adjust
length variable and data pointer */
columnData[k-1].dv_length = *((II_INT2 *) columnData[k-1].dv_value);
((II_INT2 *)columnData[k-1].dv_value)++;
correct_length = 1;
/* NO break */
case IIAPI_BYTE_TYPE: /* fixed length binary string */
case IIAPI_CHA_TYPE: /* fixed length character string */
case IIAPI_CHR_TYPE: /* fixed length character string */
case IIAPI_LOGKEY_TYPE: /* value unique to database */
case IIAPI_TABKEY_TYPE: /* value unique to table */
case IIAPI_DTE_TYPE: /* date */
/* eventualy convert date to string */
if((ii_link->descriptor[i+k-2]).ds_dataType==IIAPI_DTE_TYPE) {
IIAPI_CONVERT(IIAPI_CHA_TYPE,32,0);
}
/* use php_addslashes if asked to */
if(PG(magic_quotes_runtime)) {
value_char_p = php_addslashes((char *) columnData[k-1].dv_value,columnData[k-1].dv_length,&len,0);
should_copy = 0;
} else {
value_char_p = (char *) columnData[k-1].dv_value;
len = columnData[k-1].dv_length;
should_copy = 1;
}
if(result_type & II_NUM) {
add_index_stringl(return_value, i+k-1, value_char_p, len, should_copy);
}
if(result_type & II_ASSOC) {
add_assoc_stringl(return_value, php_ii_field_name(ii_link, i+k-1), value_char_p, len, should_copy);
}
/* eventualy restore data pointer state for
variable length data types */
if(correct_length) {
((II_INT2 *)columnData[k-1].dv_value)--;
}
break;
default:
php_error(E_WARNING,"Ingres II: Invalid SQL data type in fetched field (%d -- length : %d)",(ii_link->descriptor[i+k-2]).ds_dataType,columnData[k-1].dv_length);
break;
}
}
}
}
}
/* free the memory buffers */
for(k=1; k<=j; k++) {
efree(columnData[k-1].dv_value);
}
efree(columnData);
/* increase field pointer by number of fetched fields */
i+=j;
}
}
/* {{{ proto array ingres_fetch_array([int result_type [, resource link]])
Fetch a row of result into an array result_type can be II_NUM for enumerated array, II_ASSOC for associative array, or II_BOTH (default) */
PHP_FUNCTION(ingres_fetch_array)
{
zval **result_type, **link;
int argc;
int link_id = -1;
II_LINK *ii_link;
IILS_FETCH();
argc = ZEND_NUM_ARGS();
if (argc > 2 || zend_get_parameters_ex(argc, &result_type, &link) == FAILURE){
WRONG_PARAM_COUNT;
}
if (argc != 2) {
link_id = php_ii_get_default_link(INTERNAL_FUNCTION_PARAM_PASSTHRU IILS_CC);
}
if (argc != 0) {
convert_to_long_ex(result_type);
}
ZEND_FETCH_RESOURCE2(ii_link, II_LINK *, link, link_id, "Ingres II Link", le_ii_link, le_ii_plink);
php_ii_fetch(INTERNAL_FUNCTION_PARAM_PASSTHRU, ii_link,
(argc == 0 ? II_BOTH : Z_LVAL_PP(result_type)));
}
/* }}} */
/* {{{ proto array ingres_fetch_row([resource link])
Fetch a row of result into an enumerated array */
PHP_FUNCTION(ingres_fetch_row)
{
zval **link;
int argc;
int link_id = -1;
II_LINK *ii_link;
IILS_FETCH();
argc = ZEND_NUM_ARGS();
if (argc > 1 || zend_get_parameters_ex(argc, &link) == FAILURE){
WRONG_PARAM_COUNT;
}
if (argc != 1) {
link_id = php_ii_get_default_link(INTERNAL_FUNCTION_PARAM_PASSTHRU IILS_CC);
}
ZEND_FETCH_RESOURCE2(ii_link, II_LINK *, link, link_id, "Ingres II Link", le_ii_link, le_ii_plink);
php_ii_fetch(INTERNAL_FUNCTION_PARAM_PASSTHRU, ii_link, II_NUM);
}
/* }}} */
/* {{{ proto array ingres_fetch_object([int result_type [, resource link]])
Fetch a row of result into an object result_type can be II_NUM for enumerated object, II_ASSOC for associative object, or II_BOTH (default) */
PHP_FUNCTION(ingres_fetch_object)
{
zval **result_type, **link;
int argc;
int link_id = -1;
II_LINK *ii_link;
IILS_FETCH();
argc = ZEND_NUM_ARGS();
if (argc > 2 || zend_get_parameters_ex(argc, &result_type, &link) == FAILURE){
WRONG_PARAM_COUNT;
}
if (argc != 2) {
link_id = php_ii_get_default_link(INTERNAL_FUNCTION_PARAM_PASSTHRU IILS_CC);
}
if (argc != 0) {
convert_to_long_ex(result_type);
}
ZEND_FETCH_RESOURCE2(ii_link, II_LINK *, link, link_id, "Ingres II Link", le_ii_link, le_ii_plink);
php_ii_fetch(INTERNAL_FUNCTION_PARAM_PASSTHRU, ii_link,
(argc == 0 ? II_BOTH : Z_LVAL_PP(result_type)));
if(Z_TYPE_P(return_value)==IS_ARRAY) {
convert_to_object(return_value);
}
}
/* }}} */
/* {{{ proto bool ingres_rollback([resource link])
Roll back a transaction */
PHP_FUNCTION(ingres_rollback)
{
zval **link;
int argc;
int link_id = -1;
II_LINK *ii_link;
IILS_FETCH();
argc = ZEND_NUM_ARGS();
if (argc > 1 || (argc && zend_get_parameters_ex(argc, &link) == FAILURE)){
WRONG_PARAM_COUNT;
}
if (argc == 0) {
link_id = IIG(default_link);
}
ZEND_FETCH_RESOURCE2(ii_link, II_LINK *, link, link_id, "Ingres II Link", le_ii_link, le_ii_plink);
if(_rollback_transaction(ii_link)) {
RETURN_FALSE;
}
RETURN_TRUE;
}
/* }}} */
/* {{{ proto bool ingres_commit([resource link])
Commit a transaction */
PHP_FUNCTION(ingres_commit)
{
zval **link;
int argc;
int link_id = -1;
II_LINK *ii_link;
IIAPI_COMMITPARM commitParm;
IILS_FETCH();
argc = ZEND_NUM_ARGS();
if (argc > 1 || (argc && zend_get_parameters_ex(argc, &link) == FAILURE)){
WRONG_PARAM_COUNT;
}
if (argc == 0) {
link_id = IIG(default_link);
}
ZEND_FETCH_RESOURCE2(ii_link, II_LINK *, link, link_id, "Ingres II Link", le_ii_link, le_ii_plink);
if(ii_link->stmtHandle && _close_statement(ii_link)) {
php_error(E_WARNING,"Ingres II: Unable to close statement !!");
RETURN_FALSE;
}
commitParm.cm_genParm.gp_callback = NULL;
commitParm.cm_genParm.gp_closure = NULL;
commitParm.cm_tranHandle = ii_link->tranHandle;
IIapi_commit(&commitParm);
ii_sync(&(commitParm.cm_genParm));
if(ii_success(&(commitParm.cm_genParm))==II_FAIL) {
RETURN_FALSE;
}
ii_link->tranHandle = NULL;
RETURN_TRUE;
}
/* }}} */
/* {{{ proto bool ingres_autocommit([resource link])
Switch autocommit on or off */
PHP_FUNCTION(ingres_autocommit)
{
zval **link;
int argc;
int link_id = -1;
II_LINK *ii_link;
IIAPI_AUTOPARM autoParm;
IILS_FETCH();
argc = ZEND_NUM_ARGS();
if (argc > 1 || (argc && zend_get_parameters_ex(argc, &link) == FAILURE)){
WRONG_PARAM_COUNT;
}
if (argc == 0) {
link_id = IIG(default_link);
}
ZEND_FETCH_RESOURCE2(ii_link, II_LINK *, link, link_id, "Ingres II Link", le_ii_link, le_ii_plink);
autoParm.ac_genParm.gp_callback = NULL;
autoParm.ac_genParm.gp_closure = NULL;
autoParm.ac_connHandle = ii_link->connHandle;
autoParm.ac_tranHandle = ii_link->tranHandle;
IIapi_autocommit(&autoParm);
ii_sync(&(autoParm.ac_genParm));
if(ii_success(&(autoParm.ac_genParm))==II_FAIL) {
RETURN_FALSE;
}
ii_link->autocommit = (ii_link->autocommit ? 0 : 1);
ii_link->tranHandle = autoParm.ac_tranHandle;
RETURN_TRUE;
}
/* }}} */
#endif /* HAVE_II */
|