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 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909
|
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- EN-Revision: 1.42 Maintainer: cucinato Status: ready -->
<reference id="ref.oci8">
<title>Funzioni Oracle 8</title>
<titleabbrev>OCI8</titleabbrev>
<partintro>
<para>
Queste funzioni permettono di accedere ai database Oracle8 e Oracle7.
Usano la Call-Interface di Oracle8 (OCI8). Occorre avere installate le librerie client
di Oracle8 per utilizzare questa estensione.
</para>
<para>
Questa estensione è più flessibile della estensione standard di Oracle.
Supporta il binding di variabili PHP locali e globali
ai segnaposto Oracle, ha pieno supporto di LOB, FILE e ROWID
e permette di utilizzare variabili di definizione personalizzabili.
</para>
<para>
Prima di usare questa estensione, occorre sicerarsi di aver impostato
le variabili d'ambiente per l'utente Oracle, come pure
per l'utente del server web. Le variabili che potrebbero necessitare l'impostazione sono
le seguenti:
<itemizedlist>
<listitem>
<simpara>
ORACLE_HOME
</simpara>
</listitem>
<listitem>
<simpara>
ORACLE_SID
</simpara>
</listitem>
<listitem>
<simpara>
LD_PRELOAD
</simpara>
</listitem>
<listitem>
<simpara>
LD_LIBRARY_PATH
</simpara>
</listitem>
<listitem>
<simpara>
NLS_LANG
</simpara>
</listitem>
<listitem>
<simpara>
ORA_NLS33
</simpara>
</listitem>
</itemizedlist>
</para>
<para>
Dopo aver impostato le variabili d'ambiente per l'utente del server web,
occorre sicerarsi di aver aggiunto anche l'utente stesso (nobody, www) al gruppo
oracle.
</para>
<note>
<title>Se il server web non parte o va in blocco</title>
<para>
Controllare che apache sia linkato con la libreria pthread:
</para>
<para>
<informalexample>
<screen>
<![CDATA[
# ldd /www/apache/bin/httpd
libpthread.so.0 => /lib/libpthread.so.0 (0x4001c000)
libm.so.6 => /lib/libm.so.6 (0x4002f000)
libcrypt.so.1 => /lib/libcrypt.so.1 (0x4004c000)
libdl.so.2 => /lib/libdl.so.2 (0x4007a000)
libc.so.6 => /lib/libc.so.6 (0x4007e000)
/lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)
]]>
</screen>
</informalexample>
</para>
<para>
Se la libpthread non compare nell'elenco, occorre reinstallare Apache:
</para>
<para>
<informalexample>
<screen>
<![CDATA[
# cd /usr/src/apache_1.3.xx
# make clean
# LIBS=-lpthread ./config.status
# make
# make install
]]>
</screen>
</informalexample>
</para>
</note>
<para>
<example>
<title>Trucchi OCI</title>
<programlisting role="php">
<![CDATA[
<?php
// by sergo@bacup.ru
// Usare l'opzione OCI_DEFAULT nel comando execute per ritardare l'esicuzione
OCIExecute($stmt, OCI_DEFAULT);
// per ricevere i dati utilizzare (dopo il fetch):
$result = OCIResult($stmt, $n);
if (is_object ($result)) $result = $result->load();
// come comandi INSERT o UPDATE usare:
$sql = "insert into table (field1, field2) values (field1 = 'value',
field2 = empty_clob()) returning field2 into :field2";
OCIParse($conn, $sql);
$clob = OCINewDescriptor($conn, OCI_D_LOB);
OCIBindByName ($stmt, ":field2", &$clob, -1, OCI_B_CLOB);
OCIExecute($stmt, OCI_DEFAULT);
$clob->save ("some text");
OCICommit($conn);
?>
]]>
</programlisting>
</example>
</para>
<para>
You can easily access stored procedures in the same way as you
would from the commands line.
<example>
<title>Using Stored Procedures</title>
<programlisting role="php">
<![CDATA[
<?php
// by webmaster@remoterealty.com
$sth = OCIParse ( $dbh, "begin sp_newaddress( :address_id, '$firstname',
'$lastname', '$company', '$address1', '$address2', '$city', '$state',
'$postalcode', '$country', :error_code );end;" );
// Questo codice richiama la stord procedure sp_newaddress, dove :address_id
// una variabile in/out e :error_code una variabile out.
// Quindi si effettua il binding:
OCIBindByName ( $sth, ":address_id", $addr_id, 10 );
OCIBindByName ( $sth, ":error_code", $errorcode, 10 );
OCIExecute ( $sth );
?>
]]>
</programlisting>
</example>
</para>
</partintro>
<refentry id="function.ocidefinebyname">
<refnamediv>
<refname>OCIDefineByName</refname>
<refpurpose>
Utilizza una variabile PHP per la fase di definizione in un comando SELECT
</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</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> copia i valori delle SQL-Columns
nelle variabili PHP. Attenzione: Oracle usa
nomi di colonna MAIUSCOLI, mentre nella SELECT si possono anche
scrivere minuscoli. <function>OCIDefineByName</function> vuole
il parametro <parameter>Column-Name</parameter> in caratteri maiuscoli. Se si
definisce una variabile che non esiste nel comando SELECT, non
viene dato alcun errore!
</para>
<para>
Se occorre definire un tipo di dati astratto (LOB/ROWID/BFILE)
lo si deve prima allocare usando la funzione
<function>OCINewDescriptor</function>. Vedere anche la
funzione <function>OCIBindByName</function>.
</para>
<example>
<title>OCIDefineByName</title>
<programlisting>
<![CDATA[
<?php
/* OCIDefineByPos example thies@thieso.net (980219) */
$conn = OCILogon("scott","tiger");
$stmt = OCIParse($conn,"select empno, ename from emp");
/* il define DEVE essere eseguito PRIMA di 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>
Lega una variabile PHP ad un segnaposto Oracle
</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</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> collega la variabile PHP
<parameter>variable</parameter> al segnaposto Oracle
<parameter>ph_name</parameter>. L'utilizzo in modalità
input o output sarà determinato a run-time, e lo spazio di memoria
necessario sarà allocato. Il parametro
<parameter>length</parameter> imposta la lunghezza massima
del collegamento. Se si imposta <parameter>length</parameter> a -1
<function>OCIBindByName</function> userà l'attuale lunghezza di
<parameter>variable</parameter> per impostare la lunghezza massima.
</para>
<para>
Se si deve collegare un Datatype astratto (LOB/ROWID/BFILE)
occorre innanzitutto allocarlo usando la funzione
<function>OCINewDescriptor</function>. Il parametro
<parameter>length</parameter> non è usato con i Datatypes astratti
e dovrebbe essere impostato a -1. La veriabile <parameter>type</parameter>
informa oracle sul tipo di descrittore che si vuole usare. I valori possibili
sono: OCI_B_FILE (Binary-File), OCI_B_CFILE
(Character-File), OCI_B_CLOB (Character-LOB), OCI_B_BLOB
(Binary-LOB) e OCI_B_ROWID (ROWID).
</para>
<example>
<title>OCIDefineByName</title>
<programlisting>
<![CDATA[
<?php
/* OCIBindByPos example thies@thieso.net (980221)
inserisce 3 tuple in emp, e usa ROWID per aggiornare le
tuple subito dopo l'inserimento.
*/
$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>
<warning>
<para>
It is a bad idea to use magic quotes and
<function>OciBindByName</function> simultaneously as no quoting
is needed on quoted variables and any quotes magically applied
will be written into your database as
<function>OciBindByName</function> is not able to distinguish
magically added quotings from those added by intention.
</para>
</warning>
</refsect1>
</refentry>
<refentry id="function.ocilogon">
<refnamediv>
<refname>OCILogon</refname>
<refpurpose>Stabilisce una connessione a Oracle</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</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> restituisce un identificatore di connessione
necessario per la maggior parte delle altre chiamate OCI. Il terzo parametro opzionale
pu` contenere il nome della istanza Oracle locale o il nome
della voce in tnsnames.ora a cui ci si vuole connettere.
Se il terzo parametro opzionale non è specificato, PHP usa la
variabile d'ambiente ORACLE_SID (istanza di Oracle) o TWO_TASK
(in tnsnames.ora) per determinare a quale database collegarsi.
</para>
<para>Le connessioni sono condivise a livello di pagina quando si usa
<function>OCILogon</function>. Questo significa che i commit e i
rollback avvengono su tutte le transazioni aperte nella pagina, anche se sono
state create connessioni multiple.
</para>
<para>
Questo esempio dimostra come le connessioni sono condivise.
<example>
<title>OCILogon</title>
<programlisting>
<![CDATA[
<?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." committed\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>
Vedere anche <function>OCIPLogon</function> e
<function>OCINLogon</function>.</simpara>
</refsect1>
</refentry>
<refentry id="function.ociplogon">
<refnamediv>
<refname>OCIPLogon</refname>
<refpurpose>Stabilisce una connessione permanente a Oracle.
Restituisce una nuova sessione.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</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 connessione persistente
a un database Oracle 8 e si autentica. Il terzo parametro opzionale
può contenere il nome della istanza Oracle locale o il nome
della voce in tnsnames.ora a cui ci si vuole connettere.
Se il terzo parametro opzionale non ì specificato, PHP usa la
variabile d'ambiente ORACLE_SID (istanza di Oracle) o TWO_TASK
(in tnsnames.ora) per determinare a quale database collegarsi.
</para>
<simpara>
Vedere anche <function>OCILogon</function> e
<function>OCINLogon</function>.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocinlogon">
<refnamediv>
<refname>OCINLogon</refname>
<refpurpose>Stabilisce, forzandola, una nuova connessione a Oracle.
Restituisce una nuova sessione.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</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 nuova connessione
a un database Oracle 8 e si autentica. Il terzo parametro opzionale
può contenere il nome della istanza Oracle locale o il nome
della voce in tnsnames.ora a cui ci si vuole connettere.
Se il terzo parametro opzionale non è specificato, PHP usa la
variabile d'ambiente ORACLE_SID (istanza di Oracle) o TWO_TASK
(in tnsnames.ora) per determinare a quale database collegarsi.
</para>
<para>
<function>OCINLogon</function> forza una nuova connessione.
Si deve usare quando si ha necessità di isolare un insieme di transazioni. Di
default, le connessioni sono condivise a livello di pagina se si usa
<function>OCILogon</function> o a livello di processo del web server
se si usa <function>OCIPLogon</function>. Se ci sono connessioni
multiple aperte con <function>OCINLogon</function>, tutti i
commit e rollback avverranno solo sulla connessione specificata.
</para>
<para>
Questo esempio dimostra come le connessioni sono isolate.
<example>
<title>OCINLogon</title>
<programlisting>
<![CDATA[
<?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." committed\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>
Vedere anche <function>OCILogon</function> e
<function>OCIPLogon</function>.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocilogoff">
<refnamediv>
<refname>OCILogOff</refname>
<refpurpose>Disconnette da Oracle</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>int</type><methodname>OCILogOff</methodname>
<methodparam><type>int</type><parameter>connection</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCILogOff</function> chiude una connessione Oracle.
</para>
</refsect1>
</refentry>
<refentry id="function.ociexecute">
<refnamediv>
<refname>OCIExecute</refname>
<refpurpose>Esegue un comando SQL</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</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> esegue un comando precedentemente
analizzato. (vedere <function>OCIParse</function>). Il parametro opzionale
<parameter>mode</parameter> permette di specificare la modalità
di esecuzione (il default è OCI_COMMIT_ON_SUCCESS). Se non si
desidera che i comandi eseguano un commit automatico, usare OCI_DEFAULT nella
variabile <parameter>mode</parameter>.
</para>
<para>
&return.success;
</para>
</refsect1>
</refentry>
<refentry id="function.ocicommit">
<refnamediv>
<refname>OCICommit</refname>
<refpurpose>Esegue le transazioni in sospeso</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>int</type><methodname>OCICommit</methodname>
<methodparam><type>int</type><parameter>connection</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCICommit</function> esegue tutte le transazioni in sospeso
sulla connessione Oracle <parameter>connection</parameter>.
</para>
</refsect1>
</refentry>
<refentry id="function.ocirollback">
<refnamediv>
<refname>OCIRollback</refname>
<refpurpose>Annulla le transazioni in sospeso</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>int</type><methodname>OCIRollback</methodname>
<methodparam><type>int</type><parameter>connection</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIRollback</function> annulla tutte le transazioni in sospeso
sulla connessione Oracle <parameter>connection</parameter>.
</para>
</refsect1>
</refentry>
<refentry id="function.ocinewdescriptor">
<refnamediv>
<refname>OCINewDescriptor</refname>
<refpurpose>
Inizializza un nuovo descrittore LOB/FILE vuoto (LOB ì il default)
</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</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> Alloca memoria per accogliere
descrittori o locatori LOB. I valori validi per il parametro
<parameter>type</parameter> sono OCI_D_FILE, OCI_D_LOB, OCI_D_ROWID.
Per i descrittori LOB, i metodi load, save, e savefile sono
associati al descrittore, per i BFILE esiste solo il
metodo load. Vedere i suggerimenti nel secondo esempio.
</para>
<example>
<title>OCINewDescriptor</title>
<programlisting>
<![CDATA[
<?php
/* Questo codice deve essere richiamato da un form HTML.
* Richiede che $user, $password, $table, $where, e $commitsize
* siano passati dalla form. Il codice quindi cancella
* le tuple selezionate usando ROWID ed esegue un commit ogni
* $commitsize righe. (Usare con attenzione, non si pu fare 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>
<![CDATA[
<?php
/* Questo codice dimostra l'upload di file verso campi LOB.
* Il form usato per questo esempio del tipo seguente:
* <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 contiene il nome del file temporaneo
$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, OCI_DEFAULT);
if($lob->savefile($lob_upload)){
OCICommit($conn);
echo "Blob successfully uploaded\n";
}else{
echo "Couldn't upload Blob\n";
}
OCIFreeDesc($lob);
OCIFreeStatement($stmt);
OCILogoff($conn);
}
?>
]]>
</programlisting>
</example>
<example>
<title>OCINewDescriptor</title>
<programlisting>
<![CDATA[
<?php
/* Chiamatai di una stored procedure PL/SQLs che contiene clobs come parametri
* di input (PHP 4 >= 4.0.6).
* La signature della stored prodedure PL/SQL d'esempio :
*
* PROCEDURE save_data
* Argument Name Type In/Out Default?
* ------------------------------ ----------------------- ------ --------
* KEY NUMBER(38) IN
* DATA CLOB IN
*
*/
$conn = OCILogon($user, $password);
$stmt = OCIParse($conn, "begin save_data(:key, :data); end;");
$clob = OCINewDescriptor($conn, OCI_D_LOB);
OCIBindByName($stmt, ':key', $key);
OCIBindByName($stmt, ':data', $clob, -1, OCI_B_CLOB);
$clob->WriteTemporary($data);
OCIExecute($stmt, OCI_DEFAULT);
OCICommit($conn);
$clob->close();
$clob->free();
OCIFreeStatement($stmt);
?>
]]>
</programlisting>
</example>
</refsect1>
</refentry>
<refentry id="function.ocirowcount">
<refnamediv>
<refname>OCIRowCount</refname>
<refpurpose>Restituisce il numero di tuple modificate</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>int</type><methodname>OCIRowCount</methodname>
<methodparam><type>int</type><parameter>statement</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIRowCounts</function> restituisce il numero di tuple modificate,
ad esempio, da un comando update. Questa funzione non riporta il numero
di tuple restituite da una select!</para>
<para>
<example>
<title>OCIRowCount</title>
<programlisting>
<![CDATA[
<?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>
Restituisce il numero di campi che risultano da un comando SQL
</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>int</type><methodname>OCINumCols</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCINumCols</function> restituisce il numero di campi contenuti in
un'istruzione SQL
</para>
<example>
<title>OCINumCols</title>
<programlisting>
<![CDATA[
<?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>Restituisce il valore di campo della tupla estratta</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</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> restituisce i dati del campo
<parameter>column</parameter> nella tupla corrente (vedere
<function>OCIFetch</function>).<function>OCIResult</function> restituirà
tutto come stringa, eccetto i tipi astratti (ROWIDs,
LOBs e FILEs).
</para>
</refsect1>
</refentry>
<refentry id="function.ocifetch">
<refnamediv>
<refname>OCIFetch</refname>
<refpurpose>Estrae la prossima tupla opnendola nel buffer di risultato.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>int</type><methodname>OCIFetch</methodname>
<methodparam><type>int</type><parameter>statement</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIFetch</function> estrae la prossima tupla (nelle istruzioni SELECT)
ponendola nel buffer interno di risultato.
</para>
</refsect1>
</refentry>
<refentry id="function.ocifetchinto">
<refnamediv>
<refname>OCIFetchInto</refname>
<refpurpose>Estrae la prossima tupla ponendola in un array</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</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> estrae la prossima tupla (nelle istruzioni
SELECT) ponendola nell'array <parameter>result</parameter>.
<function>OCIFetchInto</function> sovrascriverà il preceente
contenuto di <parameter>result</parameter>. Di default
<parameter>result</parameter> conterrà un array (primo indice = 1) di tutti i campi
che non sono &null;.
</para>
<para>
Il parametro <parameter>mode</parameter> permette di cambiare il comportamento
predefinito. E' possibile specificare più di un'opzione sommandole
(es. OCI_ASSOC+OCI_RETURN_NULLS). Le opzioni valide
sono:
<simplelist>
<member>
<literal>OCI_ASSOC</literal> Restituisce un array associativo.
</member>
<member>
<literal>OCI_NUM</literal> Restituisce un array indicizzato
(primo indice = 1). (DEFAULT)
</member>
<member>
<literal>OCI_RETURN_NULLS</literal> Restituisce anche i campi &null;.
</member>
<member>
<literal>OCI_RETURN_LOBS</literal> Restituisce il valore di un LOB
invece del descrittore.
</member>
</simplelist>
</para>
</refsect1>
</refentry>
<refentry id="function.ocifetchstatement">
<refnamediv>
<refname>OCIFetchStatement</refname>
<refpurpose>Estrae tutte le tuple in un array.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</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> estrae tutte le tuple da un risultato
ponendole in un array definito dall'utente.
<function>OCIFetchStatement</function> restituisce il numero di tuple
estratte.
</para>
<example>
<title>OCIFetchStatement</title>
<programlisting>
<![CDATA[
<?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>verifica se un campo di risultato è &null;</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</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> restituisce &true; se il campo
<parameter>col</parameter> nel risultato dell'istruzione
<parameter>stmt</parameter> è &null;. Si può usare il
numero del campo (primo campo=1) o il nome del campo per il
parametro <parameter>col</parameter>.
</para>
</refsect1>
</refentry>
<refentry id="function.ocicolumnname">
<refnamediv>
<refname>OCIColumnName</refname>
<refpurpose>Restituisce il nome di un campo.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</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> restituisce il nome del campo
corrispondente alla posizione (1 = primo campo) specificata.
</simpara>
<para>
<example>
<title>OCIColumnName</title>
<programlisting>
<![CDATA[
<?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>
Vedere anche <function>OCINumCols</function>,
<function>OCIColumnType</function>,
e <function>OCIColumnSize</function>.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocicolumnsize">
<refnamediv>
<refname>OCIColumnSize</refname>
<refpurpose>restituisce la dimensione del campo</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</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> restituisce la dimensione del campo
come riportata da Oracle. Si può usare il
numero del campo (primo campo=1) o il nome del campo per
il parametro <parameter>col</parameter>.
</para>
<para>
<example>
<title>OCIColumnSize</title>
<programlisting>
<![CDATA[
<?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>
Vedere anche <function>OCINumCols</function>,
<function>OCIColumnName</function>, e
<function>OCIColumnSize</function>.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocicolumntype">
<refnamediv>
<refname>OCIColumnType</refname>
<refpurpose>Restituisce il tipo di dati di un campo.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</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> restituisce il tipo del campo
corrispondente alla posizione (1 = primo campo)
specificata.
</simpara>
<para>
<example>
<title>OCIColumnType</title>
<programlisting>
<![CDATA[
<?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>
Vedere anche <function>OCINumCols</function>,
<function>OCIColumnName</function>,
e <function>OCIColumnSize</function>.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ociserverversion">
<refnamediv>
<refname>OCIServerVersion</refname>
<refpurpose>Restituisce una stringa contenente informazioni sulla versione
del server. </refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>string</type><methodname>OCIServerVersion</methodname>
<methodparam><type>int</type><parameter>conn</parameter></methodparam>
</methodsynopsis>
<para>
<example>
<title>OCIServerVersion</title>
<programlisting>
<![CDATA[
<?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>Restituisce il tipo di un'istruzione OCI.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>string</type><methodname>OCIStatementType</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIStatementType</function> restituisce uno dei seguenti
valori:
<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>
<![CDATA[
<?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>
restituisce un nuovo cursore (Statement-Handle) - usare questa per collegare un ref-cursors
</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>int</type><methodname>OCINewCursor</methodname>
<methodparam><type>int</type><parameter>conn</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCINewCursor</function> alloca un nuovo identificatore di istruzione sulla connessione
specificata.
</para>
<para>
<example>
<title>Using a REF CURSOR from a stored procedure</title>
<programlisting>
<![CDATA[
<?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);
}
OCIFreeStatement($stmt);
OCIFreeCursor($curs);
OCILogoff($conn);
?>
]]>
</programlisting>
</example>
</para>
<para>
<example>
<title>Using a REF CURSOR in a select statement</title>
<programlisting>
<![CDATA[
<?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 tutte le risorse associate ad un'istruzione.
</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>int</type><methodname>OCIFreeStatement</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIFreeStatement</function> restituisce &true; in caso di successo, &false;
altrimenti.
</para>
</refsect1>
</refentry>
<refentry id="function.ocifreecursor">
<refnamediv>
<refname>OCIFreeCursor</refname>
<refpurpose>
Libera tutte le risorse associate ad un cursore.
</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>int</type><methodname>OCIFreeCursor</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIFreeCursor</function> restituisce &true; in caso di successo, &false;
altrimenti.
</para>
</refsect1>
</refentry>
<refentry id="function.ocifreedesc">
<refnamediv>
<refname>OCIFreeDesc</refname>
<refpurpose>Cancella un descrittore di oggetto binario (LOB).</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>int</type><methodname>OCIFreeDesc</methodname>
<methodparam><type>object</type><parameter>lob</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIFreeDesc</function> restituisce &true; in caso di successo,
&false; altrimenti.
</para>
</refsect1>
</refentry>
<refentry id="function.ociparse">
<refnamediv>
<refname>OCIParse</refname>
<refpurpose>Analizza una query e restituisce un'istruzione.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>int</type><methodname>OCIParse</methodname>
<methodparam><type>int</type><parameter>conn</parameter></methodparam>
<methodparam><type>string</type><parameter>query</parameter></methodparam>
</methodsynopsis>
<simpara>
<function>OCIParse</function> analizza la
<parameter>query</parameter> rispetto alla connessione <parameter>conn</parameter>.
Restituisce un identificatore di istruzione se la query è valida,
&false; altrimenti. La <parameter>query</parameter> può essere qualsiasi
comando SQL o blocco di codice PL/SQL.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocierror">
<refnamediv>
<refname>OCIError</refname>
<refpurpose>Restituisce l'ultimo errore di stmt|conn|global.
Se non c'è stato errire, restituisce &false;.
</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</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> restituisce l'ultimo errore. Se
il parametro opzionale <parameter>stmt|conn|global</parameter> non è
specificato, viene restituito l'ultimo errore generato. Se non ci sono
errori, <function>OCIError</function> restituisce
&false;. <function>OCIError</function> restituisce l'errore in un
array associativo. In questo array, <parameter>code</parameter>
dà il codice d'errora oracle e <parameter>message</parameter>
dà la stringa d'errore.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ociinternaldebug">
<refnamediv>
<refname>OCIInternalDebug</refname>
<refpurpose>
Abilita o disabilita la visualizzazione del debug interno. Di default è
disabilitata
</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>void</type><methodname>OCIInternalDebug</methodname>
<methodparam><type>int</type><parameter>onoff</parameter></methodparam>
</methodsynopsis>
<simpara>
<function>OCIInternalDebug</function> abilita la visualizzazione del debug interno.
Impostare <parameter>onoff</parameter> a 0 per spegnere
il debug, 1 per accenderlo.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocicancel">
<refnamediv>
<refname>OCICancel</refname>
<refpurpose>Interrompe la lettura del cursore</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>int</type><methodname>OCICancel</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
</methodsynopsis>
<simpara>
Se non si vogliono leggere altri dati da un cursore, chiamare
<function>OCICancel</function>.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocisetprefetch">
<refnamediv>
<refname>OCISetPrefetch</refname>
<refpurpose>imposta il numero di tuple da precaricare</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>int</type><methodname>OCISetPrefetch</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
<methodparam><type>int</type><parameter>rows</parameter></methodparam>
</methodsynopsis>
<simpara>
Imposta il nomero di tuple da precaricare. Il valore di default è 1.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ociwritelobtofile">
<refnamediv>
<refname>OCIWriteLobToFile</refname>
<refpurpose>Coming soon.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>void</type><methodname>OCIWriteLobToFile</methodname>
<methodparam><type>object</type><parameter>lob</parameter></methodparam>
<methodparam choice="opt"><type>string</type><parameter>filename</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>start</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>lenght</parameter></methodparam>
</methodsynopsis>
<simpara>
Coming soon.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocisavelobfile">
<refnamediv>
<refname>OCISaveLobFile</refname>
<refpurpose>Coming soon.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>string</type><methodname>OCISaveLobFile</methodname>
<methodparam><type>object</type><parameter>lob</parameter></methodparam>
</methodsynopsis>
<simpara>
Coming soon.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocisavelob">
<refnamediv>
<refname>OCISaveLob</refname>
<refpurpose>Coming soon.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>string</type><methodname>OCISaveLob</methodname>
<methodparam><type>object</type><parameter>lob</parameter></methodparam>
</methodsynopsis>
<simpara>
Coming soon.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ociloadlob">
<refnamediv>
<refname>OCILoadLob</refname>
<refpurpose>Coming soon.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>string</type><methodname>OCILoadLob</methodname>
<methodparam><type>object</type><parameter>lob</parameter></methodparam>
</methodsynopsis>
<simpara>
Coming soon.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocicolumnscale">
<refnamediv>
<refname>OCIColumnScale</refname>
<refpurpose>Coming soon.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>int</type><methodname>OCIColumnScale</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
<methodparam><type>int</type><parameter>col</parameter></methodparam>
</methodsynopsis>
<simpara>
Coming soon.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocicolumnprecision">
<refnamediv>
<refname>OCIColumnPrecision</refname>
<refpurpose>Coming soon.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>int</type><methodname>OCIColumnPrecision</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
<methodparam><type>int</type><parameter>col</parameter></methodparam>
</methodsynopsis>
<simpara>
Coming soon.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocicolumntyperaw">
<refnamediv>
<refname>OCIColumnTypeRaw</refname>
<refpurpose>Coming soon.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>mixed</type><methodname>OCIColumnTypeRaw</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
<methodparam><type>int</type><parameter>col</parameter></methodparam>
</methodsynopsis>
<simpara>
Coming soon.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocinewcollection">
<refnamediv>
<refname>OCINewCollection</refname>
<refpurpose>Coming soon.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>string</type><methodname>OCINewCollection</methodname>
<methodparam><type>int</type><parameter>conn</parameter></methodparam>
<methodparam><type>string</type><parameter>tdo</parameter></methodparam>
<methodparam choice="opt"><type>string</type><parameter>shema</parameter></methodparam>
</methodsynopsis>
<simpara>
Coming soon.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocifreecollection">
<refnamediv>
<refname>OCIFreeCollection</refname>
<refpurpose>Coming soon.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>string</type><methodname>OCIFreeCollection</methodname>
<methodparam><type>object</type><parameter>lob</parameter></methodparam>
</methodsynopsis>
<simpara>
Coming soon.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocicollassign">
<refnamediv>
<refname>OCICollAssign</refname>
<refpurpose>Coming soon.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>string</type><methodname>OCICollAssign</methodname>
<methodparam><type>object</type><parameter>collection</parameter></methodparam>
<methodparam><type>object</type><parameter>object</parameter></methodparam>
</methodsynopsis>
<simpara>
Coming soon.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocicollappend">
<refnamediv>
<refname>OCICollAppend</refname>
<refpurpose>Coming soon.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>string</type><methodname>OCICollAppend</methodname>
<methodparam><type>object</type><parameter>collection</parameter></methodparam>
<methodparam><type>object</type><parameter>object</parameter></methodparam>
</methodsynopsis>
<simpara>
Coming soon.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocicollassignelem">
<refnamediv>
<refname>OCICollAssignElem</refname>
<refpurpose>Coming soon.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>string</type><methodname>OCICollAssignElem</methodname>
<methodparam><type>object</type><parameter>collection</parameter></methodparam>
<methodparam><type>string</type><parameter>ndx</parameter></methodparam>
<methodparam><type>string</type><parameter>val</parameter></methodparam>
</methodsynopsis>
<simpara>
Coming soon.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocicollgetelem">
<refnamediv>
<refname>OCICollGetElem</refname>
<refpurpose>Coming soon.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>string</type><methodname>OCICollGetElem</methodname>
<methodparam><type>object</type><parameter>collection</parameter></methodparam>
<methodparam><type>string</type><parameter>ndx</parameter></methodparam>
</methodsynopsis>
<simpara>
Coming soon.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocicollmax">
<refnamediv>
<refname>OCICollMax</refname>
<refpurpose>Coming soon.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>string</type><methodname>OCICollMax</methodname>
<methodparam><type>object</type><parameter>collection</parameter></methodparam>
</methodsynopsis>
<simpara>
Coming soon.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocicollsize">
<refnamediv>
<refname>OCICollSize</refname>
<refpurpose>Coming soon.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>string</type><methodname>OCICollSize</methodname>
<methodparam><type>object</type><parameter>collection</parameter></methodparam>
</methodsynopsis>
<simpara>
Coming soon.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocicolltrim">
<refnamediv>
<refname>OCICollTrim</refname>
<refpurpose>Coming soon.</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>string</type><methodname>OCICollTrim</methodname>
<methodparam><type>object</type><parameter>collection</parameter></methodparam>
<methodparam><type>int</type><parameter>num</parameter></methodparam>
</methodsynopsis>
<simpara>
Coming soon.
</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:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
|