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
|
<?xml version="1.0" encoding="iso-8859-1"?>
<reference id="ref.oci8">
<title>Funciones de Oracle 8</title>
<titleabbrev>OCI8</titleabbrev>
<partintro>
<simpara>
Estas funciones permiten acceder a bases de datos Oracle8 y Oracle7. Estas
usan la Oracle8 Call-Interface (OCI8). Necesitar las libreras clientes de Oracle8
para usar esta extensin.
</simpara>
<simpara>
Esta extensin es ms flexible que las estndar de Oracle.
Soporta el enlace de variables locales y globales de PHP con
placeholders de Oracle, tiene soporte completo para LOB, FILE y ROWID
y le permiten usar las variables definidas por el usuario.
</simpara>
</partintro>
<!--
OCIBindByName
OCIDefineByName
OCIColumnIsNULL
OCIColumnName
OCIColumnSize
OCIColumnType
OCIExecute
OCIFetch
OCIFetchInto
OCIFetchStatement
OCIInternalDebug
OCILogoff
OCILogon
OCIPLogon
OCINLogon
OCIError
OCICommit
OCIRollback
OCINewCursor
OCINewDescriptor
OCIRowCount
OCINumCols
OCIParse
OCIResult
OCIServerVersion
OCIStatementType
OCIFreeStatement
OCIFreeCursor
-->
<refentry id="function.ocidefinebyname">
<refnamediv>
<refname>OCIDefineByName</refname>
<refpurpose>
Usa una variable de PHP para el define-step durante una sentencia SELECT
</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>int</type><methodname>OCIDefineByName</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
<methodparam><type>string</type><parameter>Column-Name</parameter></methodparam>
<methodparam><type>mixed &</type><parameter>variable</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>type</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIDefineByName</function> busca el valor de las Columnas-SQL
dentro de variables PHP definidas por el usuario. Cuidado que Oracle nombra todas
las columnas en MAYUSCULAS, mientras que en su select puede usar tambin minsculas
write lower-case. <function>OCIDefineByName</function> espera que
<parameter>Column-Name</parameter> est en maysculas. Si define una variable
que no existe en la sentecia SELECT, no se producir ningn error.
</para>
<para>
Si necesita definir un tipo de dato abstracto (LOB/ROWID/BFILE) tendr que alojarlo
primero usando la funcin <function>OCINewDescriptor</function> function. Vea tambin
la funcin <function>OCIBindByName</function>.
</para>
<example>
<title>OCIDefineByName</title>
<programlisting>
<?php
/* OCIDefineByPos example thies@digicol.de (980219) */
$conn = OCILogon("scott","tiger");
$stmt = OCIParse($conn,"select empno, ename from emp");
/* la definicin DEBE hacerse ANTES del ociexecute! */
OCIDefineByName($stmt,"EMPNO",&$empno);
OCIDefineByName($stmt,"ENAME",&$ename);
OCIExecute($stmt);
while (OCIFetch($stmt)) {
echo "empno:".$empno."\n";
echo "ename:".$ename."\n";
}
OCIFreeStatement($stmt);
OCILogoff($conn);
?>
</programlisting>
</example>
</refsect1>
</refentry>
<refentry id="function.ocibindbyname">
<refnamediv>
<refname>OCIBindByName</refname>
<refpurpose>Enlaza una variable PHP a un Placeholder de Oracle</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>int</type><methodname>OCIBindByName</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
<methodparam><type>string</type><parameter>ph_name</parameter></methodparam>
<methodparam><type>mixed &</type><parameter>variable</parameter></methodparam>
<methodparam><type>int</type><parameter>length</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>type</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIBindByName</function> enlaza la variable PHP
<parameter>variable</parameter> a un placeholder de Oracle
<parameter>ph_name</parameter>. Si esta ser usada para entrada o salida
se determinar en tiempo de ejecucin, y sera resevado el espacio necesario de
almacenamiento. El parmetro <parameter>length</parameter> establece el tamao mximo
del enlace. Si establece <parameter>length</parameter> a -1
<function>OCIBindByName</function> usar el tamao de la
<parameter>variable</parameter> para establecer el tamao mximo.
</para>
<para>
Si necesita enlazar tipos de datos abstractos (LOB/ROWID/BFILE) necesitar primero
reservar la memoria con la funcin <function>OCINewDescriptor</function>.
<parameter>length</parameter> no se usa para tipos de datos abstractos y
debera establecerse a -1. La variable <parameter>type</parameter> le informa a
Oracle, que tipo de descriptor queremos usar. Los valores posibles son:
OCI_B_FILE (Binary-File), OCI_B_CFILE (Character-File),
OCI_B_CLOB (Character-LOB), OCI_B_BLOB (Binary-LOB) and OCI_B_ROWID (ROWID).
</para>
<example>
<title>OCIDefineByName</title>
<programlisting>
<?php
/* OCIBindByPos example thies@digicol.de (980221)
inserts 3 resords into emp, and uses the ROWID for updating the
records just after the insert.
*/
$conn = OCILogon("scott","tiger");
$stmt = OCIParse($conn,"insert into emp (empno, ename) ".
"values (:empno,:ename) ".
"returning ROWID into :rid");
$data = array(1111 => "Larry", 2222 => "Bill", 3333 => "Jim");
$rowid = OCINewDescriptor($conn,OCI_D_ROWID);
OCIBindByName($stmt,":empno",&$empno,32);
OCIBindByName($stmt,":ename",&$ename,32);
OCIBindByName($stmt,":rid",&$rowid,-1,OCI_B_ROWID);
$update = OCIParse($conn,"update emp set sal = :sal where ROWID = :rid");
OCIBindByName($update,":rid",&$rowid,-1,OCI_B_ROWID);
OCIBindByName($update,":sal",&$sal,32);
$sal = 10000;
while (list($empno,$ename) = each($data)) {
OCIExecute($stmt);
OCIExecute($update);
}
$rowid->free();
OCIFreeStatement($update);
OCIFreeStatement($stmt);
$stmt = OCIParse($conn,"select * from emp where empno in (1111,2222,3333)");
OCIExecute($stmt);
while (OCIFetchInto($stmt,&$arr,OCI_ASSOC)) {
var_dump($arr);
}
OCIFreeStatement($stmt);
/* delete our "junk" from the emp table.... */
$stmt = OCIParse($conn,"delete from emp where empno in (1111,2222,3333)");
OCIExecute($stmt);
OCIFreeStatement($stmt);
OCILogoff($conn);
?>
</programlisting>
</example>
</refsect1>
</refentry>
<refentry id="function.ocilogon">
<refnamediv>
<refname>OCILogon</refname>
<refpurpose>Establece la conexin con Oracle</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>int</type><methodname>OCILogon</methodname>
<methodparam><type>string</type><parameter>username</parameter></methodparam>
<methodparam><type>string</type><parameter>password</parameter></methodparam>
<methodparam choice="opt"><type>string</type><parameter>db</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCILogon</function> devuelve el identificador de conexin
necesario en la mayoria de las funciones OCI. El tercer parmetro, que
es opcional, puede contener el nombre de la instancia a Oracle o el nombre
dado en el fichero tnsnames.ora de la base de datos a la que nos queremos
conectar. Si este parmetro no se especifica, PHP usa la variable de entorno
ORACLE_SID (Oracle instance) o TWO_TASK (tnsnames.ora) para determinar la base
de datos con la que queremos conectar.
</para>
<para>Las conexiones son compartidas a nivel de pgina cuando usemos
<function>OCILogon</function>. Lo cual significa que los "commits" y
"rollbacks" son aplicadas a todas las transacciones abiertas en la pgina, incluso
si usted ha creado conexiones mltiples.
</para>
<para>
Este ejemplo demuestra como son compartidas las conexiones.
<example>
<title>OCILogon</title>
<programlisting>
<?php
print "<HTML><PRE>";
$db = "";
$c1 = ocilogon("scott","tiger",$db);
$c2 = ocilogon("scott","tiger",$db);
function create_table($conn)
{ $stmt = ociparse($conn,"create table scott.hallo (test varchar2(64))");
ociexecute($stmt);
echo $conn." created table\n\n";
}
function drop_table($conn)
{ $stmt = ociparse($conn,"drop table scott.hallo");
ociexecute($stmt);
echo $conn." dropped table\n\n";
}
function insert_data($conn)
{ $stmt = ociparse($conn,"insert into scott.hallo
values('$conn' || ' ' || to_char(sysdate,'DD-MON-YY HH24:MI:SS'))");
ociexecute($stmt,OCI_DEFAULT);
echo $conn." inserted hallo\n\n";
}
function delete_data($conn)
{ $stmt = ociparse($conn,"delete from scott.hallo");
ociexecute($stmt,OCI_DEFAULT);
echo $conn." deleted hallo\n\n";
}
function commit($conn)
{ ocicommit($conn);
echo $conn." commited\n\n";
}
function rollback($conn)
{ ocirollback($conn);
echo $conn." rollback\n\n";
}
function select_data($conn)
{ $stmt = ociparse($conn,"select * from scott.hallo");
ociexecute($stmt,OCI_DEFAULT);
echo $conn."----selecting\n\n";
while (ocifetch($stmt))
echo $conn." <".ociresult($stmt,"TEST").">\n\n";
echo $conn."----done\n\n";
}
create_table($c1);
insert_data($c1); // Insert a row using c1
insert_data($c2); // Insert a row using c2
select_data($c1); // Results of both inserts are returned
select_data($c2);
rollback($c1); // Rollback using c1
select_data($c1); // Both inserts have been rolled back
select_data($c2);
insert_data($c2); // Insert a row using c2
commit($c2); // commit using c2
select_data($c1); // result of c2 insert is returned
delete_data($c1); // delete all rows in table using c1
select_data($c1); // no rows returned
select_data($c2); // no rows returned
commit($c1); // commit using c1
select_data($c1); // no rows returned
select_data($c2); // no rows returned
drop_table($c1);
print "</PRE></HTML>";
?></programlisting></example></para>
<simpara>
See also <function>OCIPLogon</function> and
<function>OCINLogon</function>.</simpara>
</refsect1>
</refentry>
<refentry id="function.ociplogon">
<refnamediv>
<refname>OCIPLogon</refname>
<refpurpose>Conecta con una base de datos Oracle usando una conexin persistente.
Devuelve una nueva sesin.</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>int</type><methodname>OCIPLogon</methodname>
<methodparam><type>string</type><parameter>username</parameter></methodparam>
<methodparam><type>string</type><parameter>password</parameter></methodparam>
<methodparam choice="opt"><type>string</type><parameter>db</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIPLogon</function> crea una conexin persistente con
una base de datos Oracle 8. El tercer parmetro, que es opcional, puede
contener el nombre de la instancia a Oracle o el nombre dado en el fichero
tnsnames.ora de la base de datos a la que nos queremos conectar.
Si este parmetro no se especifica, PHP usa la variable de entorno
ORACLE_SID (Oracle instance) o TWO_TASK (tnsnames.ora) para determinar la base
de datos con la que queremos conectar.
</para>
<simpara>
Vea tambin <function>OCILogon</function> y
<function>OCINLogon</function>.</simpara>
</refsect1></refentry>
<refentry id="function.ocinlogon">
<refnamediv>
<refname>OCINLogon</refname>
<refpurpose>Conecta con una base de datos Oracle usando una nueva conexin.
Devuelve una nueva sesin.</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>int</type><methodname>OCINLogon</methodname>
<methodparam><type>string</type><parameter>username</parameter></methodparam>
<methodparam><type>string</type><parameter>password</parameter></methodparam>
<methodparam choice="opt"><type>string</type><parameter>db</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCINLogon</function> crea una nueva conexin con una
base de datos Oracle 8. El tercer parmetro, que es opcional, puede
contener el nombre de la instancia a Oracle o el nombre dado en el fichero
tnsnames.ora de la base de datos a la que nos queremos conectar.
Si este parmetro no se especifica, PHP usa la variable de entorno
ORACLE_SID (Oracle instance) o TWO_TASK (tnsnames.ora) para determinar la base
de datos con la que queremos conectar.
</para>
<para>
<function>OCINLogon</function> fuerza una nueva conexin. Se debe usar si
necesita aislar un conjunto de transacciones. Por defecto, las conexiones
son compartidas a nivel de pgina si usa <function>OCILogon</function> o
a nivel del proceso del servidor web si usa <function>OCIPLogon</function>.
Si posee mltiples conexiones abiertas usando <function>OCINLogon</function>,
todos los "commits" y "rollbacks" se aplican slo a la conexion especificada.
</para>
<para>
Este ejemplo demuestra como las conexiones estn separadas.
<example>
<title>OCINLogon</title>
<programlisting>
<?php
print "<HTML><PRE>";
$db = "";
$c1 = ocilogon("scott","tiger",$db);
$c2 = ocinlogon("scott","tiger",$db);
function create_table($conn)
{ $stmt = ociparse($conn,"create table scott.hallo (test
varchar2(64))");
ociexecute($stmt);
echo $conn." created table\n\n";
}
function drop_table($conn)
{ $stmt = ociparse($conn,"drop table scott.hallo");
ociexecute($stmt);
echo $conn." dropped table\n\n";
}
function insert_data($conn)
{ $stmt = ociparse($conn,"insert into scott.hallo
values('$conn' || ' ' || to_char(sysdate,'DD-MON-YY HH24:MI:SS'))");
ociexecute($stmt,OCI_DEFAULT);
echo $conn." inserted hallo\n\n";
}
function delete_data($conn)
{ $stmt = ociparse($conn,"delete from scott.hallo");
ociexecute($stmt,OCI_DEFAULT);
echo $conn." deleted hallo\n\n";
}
function commit($conn)
{ ocicommit($conn);
echo $conn." commited\n\n";
}
function rollback($conn)
{ ocirollback($conn);
echo $conn." rollback\n\n";
}
function select_data($conn)
{ $stmt = ociparse($conn,"select * from scott.hallo");
ociexecute($stmt,OCI_DEFAULT);
echo $conn."----selecting\n\n";
while (ocifetch($stmt))
echo $conn." <".ociresult($stmt,"TEST").">\n\n";
echo $conn."----done\n\n";
}
create_table($c1);
insert_data($c1);
select_data($c1);
select_data($c2);
rollback($c1);
select_data($c1);
select_data($c2);
insert_data($c2);
commit($c2);
select_data($c1);
delete_data($c1);
select_data($c1);
select_data($c2);
commit($c1);
select_data($c1);
select_data($c2);
drop_table($c1);
print "</PRE></HTML>";
?></programlisting></example></para>
<simpara>
See also <function>OCILogon</function> and
<function>OCIPLogon</function>.</simpara>
</refsect1></refentry>
<refentry id="function.ocilogoff">
<refnamediv>
<refname>OCILogOff</refname>
<refpurpose>Termina la conexion con Oracle</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>int</type><methodname>OCILogOff</methodname>
<methodparam><type>int</type><parameter>connection</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCILogOff</function> cierra una conexin con Oracle.
</para>
</refsect1>
</refentry>
<refentry id="function.ociexecute">
<refnamediv>
<refname>OCIExecute</refname>
<refpurpose>Ejecuta una sentencia</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>int</type><methodname>OCIExecute</methodname>
<methodparam><type>int</type><parameter>statement</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>mode</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIExecute</function> ejecuta una sentencia previamente analizada.
(see <function>OCIParse</function>). El parmetro opcional <parameter>mode</parameter>
le permite especificar el modo de ejecucin (default is OCI_COMMIT_ON_SUCCESS).
Si no desea que las sentencias se confirmen automaticamente, especifique OCI_DEFAULT como
su modo.
</para>
</refsect1>
</refentry>
<refentry id="function.ocicommit">
<refnamediv>
<refname>OCICommit</refname>
<refpurpose>Confirma transacciones pendientes</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>int</type><methodname>OCICommit</methodname>
<methodparam><type>int</type><parameter>connection</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCICommit</function> confirma todas las sentencias pendientes para la conexin
con Oracle <parameter>connection</parameter>.
</para>
</refsect1>
</refentry>
<refentry id="function.ocirollback">
<refnamediv>
<refname>OCIRollback</refname>
<refpurpose>Restablece todas las transaciones sin confirmar</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>int</type><methodname>OCIRollback</methodname>
<methodparam><type>int</type><parameter>connection</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIRollback</function> restablece todas las transacciones sin confirmar
para la conexin Oracle <parameter>connection</parameter>.
</para>
</refsect1>
</refentry>
<refentry id="function.ocinewdescriptor">
<refnamediv>
<refname>OCINewDescriptor</refname>
<refpurpose>Inicializa un nuevo descriptor vaco LOB/FILE (LOB por defecto)</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>string</type><methodname>OCINewDescriptor</methodname>
<methodparam><type>int</type><parameter>connection</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>type</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCINewDescriptor</function> Reserva espacio para mantener descriptores o
localizadores LOB. Los valores vlidos para el tipo
<parameter>type</parameter> son OCI_D_FILE, OCI_D_LOB, OCI_D_ROWID.
Para descriptores LOB, los mtodos load, save, y savefile estn asociados
con el descriptor, para BFILE slo el mtodo load existe.
Vea el segundo ejemplo.
</para>
<example>
<title>OCINewDescriptor</title>
<programlisting>
<?php
/* This script is designed to be called from a HTML form.
* It expects $user, $password, $table, $where, and $commitsize
* to be passed in from the form. The script then deletes
* the selected rows using the ROWID and commits after each
* set of $commitsize rows. (Use with care, there is no rollback)
*/
$conn = OCILogon($user, $password);
$stmt = OCIParse($conn,"select rowid from $table $where");
$rowid = OCINewDescriptor($conn,OCI_D_ROWID);
OCIDefineByName($stmt,"ROWID",&$rowid);
OCIExecute($stmt);
while ( OCIFetch($stmt) ) {
$nrows = OCIRowCount($stmt);
$delete = OCIParse($conn,"delete from $table where ROWID = :rid");
OCIBindByName($delete,":rid",&$rowid,-1,OCI_B_ROWID);
OCIExecute($delete);
print "$nrows\n";
if ( ($nrows % $commitsize) == 0 ) {
OCICommit($conn);
}
}
$nrows = OCIRowCount($stmt);
print "$nrows deleted...\n";
OCIFreeStatement($stmt);
OCILogoff($conn);
?>
</programlisting>
<programlisting>
<?php
/* This script demonstrates file upload to LOB columns
* The formfield used for this example looks like this
* <form action="upload.php3" method="post" enctype="multipart/form-data">
* <input type="file" name="lob_upload">
* ...
*/
if(!isset($lob_upload) || $lob_upload == 'none'){
?>
<form action="upload.php3" method="post" enctype="multipart/form-data">
Upload file: <input type="file" name="lob_upload"><br>
<input type="submit" value="Upload"> - <input type="reset">
</form>
<?php
} else {
// $lob_upload contains the temporary filename of the uploaded file
$conn = OCILogon($user, $password);
$lob = OCINewDescriptor($conn, OCI_D_LOB);
$stmt = OCIParse($conn,"insert into $table (id, the_blob)
values(my_seq.NEXTVAL, EMPTY_BLOB()) returning the_blob into :the_blob");
OCIBindByName($stmt, ':the_blob', &$lob, -1, OCI_B_BLOB);
OCIExecute($stmt);
if($lob->savefile($lob_upload)){
OCICommit($conn);
echo "Blob successfully uploaded\n";
}else{
echo "Couldn't upload Blob\n";
}
OCIFreeDescriptor($lob);
OCIFreeStatement($stmt);
OCILogoff($conn);
}
?>
</programlisting>
</example>
</refsect1>
</refentry>
<refentry id="function.ocirowcount">
<refnamediv>
<refname>OCIRowCount</refname>
<refpurpose>Obtiene el nmero de filas afectadas</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>int</type><methodname>OCIRowCount</methodname>
<methodparam><type>int</type><parameter>statement</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIRowCount</function> devuelve el nmero de filas afectadas, por ej. en
sentencias de actualizacin. !Esta funcin no indicar el nmero de de filas que
devuelve una sentencia SELECT!</para>
<para>
<example>
<title>OCIRowCount</title>
<programlisting>
<?php
print "<HTML><PRE>";
$conn = OCILogon("scott","tiger");
$stmt = OCIParse($conn,"create table emp2 as select * from emp");
OCIExecute($stmt);
print OCIRowCount($stmt) . " rows inserted.<BR>";
OCIFreeStatement($stmt);
$stmt = OCIParse($conn,"delete from emp2");
OCIExecute($stmt);
print OCIRowCount($stmt) . " rows deleted.<BR>";
OCICommit($conn);
OCIFreeStatement($stmt);
$stmt = OCIParse($conn,"drop table emp2");
OCIExecute($stmt);
OCIFreeStatement($stmt);
OCILogOff($conn);
print "</PRE></HTML>";
?> </programlisting></example></para>
</refsect1>
</refentry>
<refentry id="function.ocinumcols">
<refnamediv>
<refname>OCINumCols</refname>
<refpurpose>Devuelve el nmero de columnas resultantes en una sentencia</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>int</type><methodname>OCINumCols</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCINumCols</function> devuelve el nmero de columnas en una sentencia
</para>
<example>
<title>OCINumCols</title>
<programlisting>
<?php
print "<HTML><PRE>\n";
$conn = OCILogon("scott", "tiger");
$stmt = OCIParse($conn,"select * from emp");
OCIExecute($stmt);
while ( OCIFetch($stmt) ) {
print "\n";
$ncols = OCINumCols($stmt);
for ( $i = 1; $i <= $ncols; $i++ ) {
$column_name = OCIColumnName($stmt,$i);
$column_value = OCIResult($stmt,$i);
print $column_name . ': ' . $column_value . "\n";
}
print "\n";
}
OCIFreeStatement($stmt);
OCILogoff($conn);
print "</PRE>";
print "</HTML>\n";
?>
</programlisting>
</example>
</refsect1>
</refentry>
<refentry id="function.ociresult">
<refnamediv>
<refname>OCIResult</refname>
<refpurpose>Devuelve el valor de una columna en la fila buscada</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>mixed</type><methodname>OCIResult</methodname>
<methodparam><type>int</type><parameter>statement</parameter></methodparam>
<methodparam><type>mixed</type><parameter>column</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIResult</function> devuelve el valor de la columna
<parameter>column</parameter> de la fila actual (vea
<function>OCIFetch</function>).<function>OCIResult</function> devolver
todo como una cadena excepto para los tipo de datos abstractos
(ROWIDs, LOBs and FILEs).
</para>
</refsect1>
</refentry>
<refentry id="function.ocifetch">
<refnamediv>
<refname>OCIFetch</refname>
<refpurpose>Busca la siguiente fila en el result-buffer</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>int</type><methodname>OCIFetch</methodname>
<methodparam><type>int</type><parameter>statement</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIFetch</function> Busca la siguiente fila (para sentencias SELECT)
dentro del result-buffer interno.
</para>
</refsect1>
</refentry>
<refentry id="function.ocifetchinto">
<refnamediv>
<refname>OCIFetchInto</refname>
<refpurpose>Busca la siguiente fila dentro del result-array</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>int</type><methodname>OCIFetchInto</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
<methodparam><type>array &</type><parameter>result</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>mode</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIFetchInto</function> busca la siguiente fila (for SELECT statements)
dentro del array <parameter>result</parameter>. <function>OCIFetchInto</function>
sobreescribir el contenido previo de <parameter>result</parameter>. Por defecto
<parameter>result</parameter> contendr un array basado en todas las columnas que
no son &null;.
</para>
<para>
El parmetro <parameter>mode</parameter> le permite cambiar el comportamineto por
defecto. Puede especificar ms de una flag simplemente aadiendolas
(ej. OCI_ASSOC+OCI_RETURN_NULLS). Las flags son:
<simplelist>
<member><literal>OCI_ASSOC</literal> Devuelve un array asociativo.</member>
<member><literal>OCI_NUM</literal> Devuelve un array numerado empezando en 1.
(POR DEFECTO)</member>
<member><literal>OCI_RETURN_NULLS</literal> Devuelve columnas vacias.</member>
<member><literal>OCI_RETURN_LOBS</literal> Devuelve el valor de un LOB en vez de
el descriptor.</member>
</simplelist>
</para>
<para>
</para>
</refsect1>
</refentry>
<refentry id="function.ocifetchstatement">
<refnamediv>
<refname>OCIFetchStatement</refname>
<refpurpose>Busca todas la filas de un resultset dentro de un array.</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>int</type><methodname>OCIFetchStatement</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
<methodparam><type>array &</type><parameter>variable</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIFetchStatement</function> busca todas las filas de un resultset
dentro de un array definido por el usuario. <function>OCIFetchStatement</function>
devuelve el numero de filas buscadas.
</para>
<example>
<title>OCIFetchStatement</title>
<programlisting>
<?php
/* OCIFetchStatement example mbritton@verinet.com (990624) */
$conn = OCILogon("scott","tiger");
$stmt = OCIParse($conn,"select * from emp");
OCIExecute($stmt);
$nrows = OCIFetchStatement($stmt,$results);
if ( $nrows > 0 ) {
print "<TABLE BORDER=\"1\">\n";
print "<TR>\n";
while ( list( $key, $val ) = each( $results ) ) {
print "<TH>$key</TH>\n";
}
print "</TR>\n";
for ( $i = 0; $i < $nrows; $i++ ) {
reset($results);
print "<TR>\n";
while ( $column = each($results) ) {
$data = $column['value'];
print "<TD>$data[$i]</TD>\n";
}
print "</TR>\n";
}
print "</TABLE>\n";
} else {
echo "No data found<BR>\n";
}
print "$nrows Records Selected<BR>\n";
OCIFreeStatement($stmt);
OCILogoff($conn);
?></programlisting></example>
</refsect1>
</refentry>
<refentry id="function.ocicolumnisnull">
<refnamediv>
<refname>OCIColumnIsNULL</refname>
<refpurpose>comprueba si una una columna es &null;</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>int</type><methodname>OCIColumnIsNULL</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
<methodparam><type>mixed</type><parameter>column</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIColumnIsNULL</function> devuelve vedadero si la columna devuelta
<parameter>column</parameter> en el resultset de la sentencia <parameter>stmt</parameter>
es &null;. Puede usar el nmero de la columna (1-Based) o el nombre de la columa
indicado por el parmetro <parameter>col</parameter>.
</para>
</refsect1>
</refentry>
<refentry id="function.ocicolumnsize">
<refnamediv>
<refname>OCIColumnSize</refname>
<refpurpose>devuelve el tamao de la columna</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>int</type><methodname>OCIColumnSize</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
<methodparam><type>mixed</type><parameter>column</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIColumnSize</function> devuelve el tamao de la columna indicada por Oracle
Puede utilizar el nmero de la columna (1-Based) o el nombre indicado en el parmetro
<parameter>col</parameter>.
</para>
<para>
<example>
<title>OCIColumnSize</title>
<programlisting>
<?php
print "<HTML><PRE>\n";
$conn = OCILogon("scott", "tiger");
$stmt = OCIParse($conn,"select * from emp");
OCIExecute($stmt);
print "<TABLE BORDER=\"1\">";
print "<TR>";
print "<TH>Name</TH>";
print "<TH>Type</TH>";
print "<TH>Length</TH>";
print "</TR>";
$ncols = OCINumCols($stmt);
for ( $i = 1; $i <= $ncols; $i++ ) {
$column_name = OCIColumnName($stmt,$i);
$column_type = OCIColumnType($stmt,$i);
$column_size = OCIColumnSize($stmt,$i);
print "<TR>";
print "<TD>$column_name</TD>";
print "<TD>$column_type</TD>";
print "<TD>$column_size</TD>";
print "</TR>";
}
print "</TABLE>";
OCIFreeStatement($stmt);
OCILogoff($conn);
print "</PRE>";
print "</HTML>\n";
?>
</programlisting>
</example>
</para>
<simpara>
Vea tambin <function>OCINumCols</function>, <function>OCIColumnName</function>,
y <function>OCIColumnSize</function>.</simpara>
</refsect1>
</refentry>
<refentry id="function.ociserverversion">
<refnamediv>
<refname>OCIServerVersion</refname>
<refpurpose>Devuelve una cadena conteniendo informacin a cerca de la version del servidor.
</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>string</type><methodname>OCIServerVersion</methodname>
<methodparam><type>int</type><parameter>conn</parameter></methodparam>
</methodsynopsis>
<para>
<example>
<title>OCIServerVersion</title>
<programlisting>
<?php
$conn = OCILogon("scott","tiger");
print "Server Version: " . OCIServerVersion($conn);
OCILogOff($conn);
?></programlisting></example></para>
</refsect1>
</refentry>
<refentry id="function.ocistatementtype">
<refnamediv>
<refname>OCIStatementType</refname>
<refpurpose>Devuelve el tipo de una sentencia OCI.</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>string</type><methodname>OCIStatementType</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIStatementType</function> devuelve uno de los siguiente valores:
<orderedlist>
<listitem><simpara> "SELECT"</simpara></listitem>
<listitem><simpara> "UPDATE"</simpara></listitem>
<listitem><simpara> "DELETE"</simpara></listitem>
<listitem><simpara> "INSERT"</simpara></listitem>
<listitem><simpara> "CREATE"</simpara></listitem>
<listitem><simpara> "DROP"</simpara></listitem>
<listitem><simpara> "ALTER"</simpara></listitem>
<listitem><simpara> "BEGIN"</simpara></listitem>
<listitem><simpara> "DECLARE"</simpara></listitem>
<listitem><simpara> "UNKNOWN"</simpara></listitem>
</orderedlist></para>
<para>
<example>
<title>Code examples</title>
<programlisting>
<?php
print "<HTML><PRE>";
$conn = OCILogon("scott","tiger");
$sql = "delete from emp where deptno = 10";
$stmt = OCIParse($conn,$sql);
if ( OCIStatementType($stmt) == "DELETE" ) {
die "You are not allowed to delete from this table<BR>";
}
OCILogoff($conn);
print "</PRE></HTML>";
?>
</programlisting></example></para>
</refsect1>
</refentry>
<refentry id="function.ocinewcursor">
<refnamediv>
<refname>OCINewCursor</refname>
<refpurpose>devuelve un cursor nuevo (Statement-Handle) - use esto para enlazar
ref-cursors!</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>int</type><methodname>OCINewCursor</methodname>
<methodparam><type>int</type><parameter>conn</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCINewCursor</function> allocates a new statement handle on the specified
connection.
</para>
<para>
<example>
<title>Usando un REF CURSOR de un procedimiento almacenado</title>
<programlisting>
<?php
// suppose your stored procedure info.output returns a ref cursor in :data
$conn = OCILogon("scott","tiger");
$curs = OCINewCursor($conn);
$stmt = OCIParse($conn,"begin info.output(:data); end;");
ocibindbyname($stmt,"data",&$curs,-1,OCI_B_CURSOR);
ociexecute($stmt);
ociexecute($curs);
while (OCIFetchInto($curs,&$data)) {
var_dump($data);
}
OCIFreeCursor($stmt);
OCIFreeStatement($curs);
OCILogoff($conn);
?>
</programlisting>
</example>
</para>
<para>
<example>
<title>Usando un REF CURSOR en una sentencia select</title>
<programlisting>
<?php
print "<HTML><BODY>";
$conn = OCILogon("scott","tiger");
$count_cursor = "CURSOR(select count(empno) num_emps from emp " .
"where emp.deptno = dept.deptno) as EMPCNT from dept";
$stmt = OCIParse($conn,"select deptno,dname,$count_cursor");
ociexecute($stmt);
print "<TABLE BORDER=\"1\">";
print "<TR>";
print "<TH>DEPT NAME</TH>";
print "<TH>DEPT #</TH>";
print "<TH># EMPLOYEES</TH>";
print "</TR>";
while (OCIFetchInto($stmt,&$data,OCI_ASSOC)) {
print "<TR>";
$dname = $data["DNAME"];
$deptno = $data["DEPTNO"];
print "<TD>$dname</TD>";
print "<TD>$deptno</TD>";
ociexecute($data[ "EMPCNT" ]);
while (OCIFetchInto($data[ "EMPCNT" ],&$subdata,OCI_ASSOC)) {
$num_emps = $subdata["NUM_EMPS"];
print "<TD>$num_emps</TD>";
}
print "</TR>";
}
print "</TABLE>";
print "</BODY></HTML>";
OCIFreeStatement($stmt);
OCILogoff($conn);
?>
</programlisting>
</example>
</para>
</refsect1>
</refentry>
<refentry id="function.ocifreestatement">
<refnamediv>
<refname>OCIFreeStatement</refname>
<refpurpose>Libera todos los recursos asociados con una sentencia.</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>int</type><methodname>OCIFreeStatement</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIFreeStatement</function> devuelve cierto si la operacion se lleva a cabo,
o falso en caso contrario.
</para>
</refsect1>
</refentry>
<refentry id="function.ocifreecursor">
<refnamediv>
<refname>OCIFreeCursor</refname>
<refpurpose>Libera todos los recursos asociados con cursor.</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>int</type><methodname>OCIFreeCursor</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIFreeCursor</function> devuelve cierto si la operacion se lleva a cabo,
o falso en caso contrario.
</para>
</refsect1>
</refentry>
<refentry id="function.ocicolumnname">
<refnamediv>
<refname>OCIColumnName</refname>
<refpurpose>Devuelve el nombre de una columna.</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>string</type><methodname>OCIColumnName</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
<methodparam><type>int</type><parameter>col</parameter></methodparam>
</methodsynopsis>
<simpara>
<function>OCIColumnName</function> Devuelve el nombre de la columna
correspondiente al nmero de la columna (1-based) que es pasado.
</simpara>
<para>
<example>
<title>OCIColumnName</title>
<programlisting>
<?php
print "<HTML><PRE>\n";
$conn = OCILogon("scott", "tiger");
$stmt = OCIParse($conn,"select * from emp");
OCIExecute($stmt);
print "<TABLE BORDER=\"1\">";
print "<TR>";
print "<TH>Name</TH>";
print "<TH>Type</TH>";
print "<TH>Length</TH>";
print "</TR>";
$ncols = OCINumCols($stmt);
for ( $i = 1; $i <= $ncols; $i++ ) {
$column_name = OCIColumnName($stmt,$i);
$column_type = OCIColumnType($stmt,$i);
$column_size = OCIColumnSize($stmt,$i);
print "<TR>";
print "<TD>$column_name</TD>";
print "<TD>$column_type</TD>";
print "<TD>$column_size</TD>";
print "</TR>";
}
OCIFreeStatement($stmt);
OCILogoff($conn);
print "</PRE>";
print "</HTML>\n";
?>
</programlisting>
</example>
</para>
<simpara>
Vea tambin <function>OCINumCols</function>, <function>OCIColumnType</function>,
y <function>OCIColumnSize</function>.</simpara>
</refsect1>
</refentry>
<refentry id="function.ocicolumntype">
<refnamediv>
<refname>OCIColumnType</refname>
<refpurpose>Devuelve el tipo de dato de una columna.</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>mixed</type><methodname>OCIColumnType</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
<methodparam><type>int</type><parameter>col</parameter></methodparam>
</methodsynopsis>
<simpara>
<function>OCIColumnType</function> devuelve el tipo de dato de una columna
correspondiente al nmero de la columna (1-based) que es pasado.</simpara>
<para>
<example>
<title>OCIColumnType</title>
<programlisting>
<?php
print "<HTML><PRE>\n";
$conn = OCILogon("scott", "tiger");
$stmt = OCIParse($conn,"select * from emp");
OCIExecute($stmt);
print "<TABLE BORDER=\"1\">";
print "<TR>";
print "<TH>Name</TH>";
print "<TH>Type</TH>";
print "<TH>Length</TH>";
print "</TR>";
$ncols = OCINumCols($stmt);
for ( $i = 1; $i <= $ncols; $i++ ) {
$column_name = OCIColumnName($stmt,$i);
$column_type = OCIColumnType($stmt,$i);
$column_size = OCIColumnSize($stmt,$i);
print "<TR>";
print "<TD>$column_name</TD>";
print "<TD>$column_type</TD>";
print "<TD>$column_size</TD>";
print "</TR>";
}
OCIFreeStatement($stmt);
OCILogoff($conn);
print "</PRE>";
print "</HTML>\n";
?>
</programlisting>
</example>
</para>
<simpara>
Vea tambin <function>OCINumCols</function>, <function>OCIColumnName</function>,
y <function>OCIColumnSize</function>.</simpara>
</refsect1>
</refentry>
<refentry id="function.ociparse">
<refnamediv>
<refname>OCIParse</refname>
<refpurpose>Analiza una consulta y devuelve una sentencia</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>int</type><methodname>OCIParse</methodname>
<methodparam><type>int</type><parameter>conn</parameter></methodparam>
<methodparam><type>strint</type><parameter>query</parameter></methodparam>
</methodsynopsis>
<simpara>
<function>OCIParse</function> analiza la <parameter>query</parameter>
usando <parameter>conn</parameter>. Devuelve el identificador de la sentencia
si la consulta es vlida, y falso si no lo es. La
<parameter>query</parameter> puede ser cualquier sentencia SQL vlida.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocierror">
<refnamediv>
<refname>OCIError</refname>
<refpurpose>Devuelve el ltimo error de stmt|conn|global.
Si no ocurre ningn error devuelve falso.
</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>array</type><methodname>OCIError</methodname>
<methodparam choice="opt"><type>int</type><parameter>stmt|conn|global</parameter></methodparam>
</methodsynopsis>
<simpara>
<function>OCIError</function> devuelve el ltimo error encontrado. Si
el parmetro opcional <parameter>stmt|conn|global</parameter> no es usado,
es devuelto el ltimo error encontrado. Si no se encuentra ningn error,
<function>OCIError</function> devuelve falso.
<function>OCIError</function> devuelve el error como un array asociativo.
En este array, <parameter>code</parameter> consiste en el cdigo de error de Oracle
y <parameter>message</parameter> en la cadena de descripcin del error.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ociinternaldebug">
<refnamediv>
<refname>OCIInternalDebug</refname>
<refpurpose>
Habilita o deshabilita la salida del depurador interno. Por defecto este est
deshabiltado
</refpurpose>
</refnamediv>
<refsect1>
<title>Descripcin</title>
<methodsynopsis>
<type>void</type><methodname>OCIInternalDebug</methodname>
<methodparam><type>int</type><parameter>onoff</parameter></methodparam>
</methodsynopsis>
<simpara>
<function>OCIInternalDebug</function> habilita la salida del depurador interno.
Asigne 0 a <parameter>onoff</parameter> para deshabilitar la salida y 1
para habilitarla.</simpara>
</refsect1>
</refentry>
</reference>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->
|