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
|
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.13 $ -->
<reference id="ref.oci8">
<title>오라클 8 함수</title>
<titleabbrev>OCI8</titleabbrev>
<partintro>
<para>
이 함수들을 통해 오라클 8과 오라클 7 데이터베이스를 연동하여 사용한다.
Oracle8 Call-Interface (OCI8)를 사용하며, 이 함수들을 사용하려면
오라클8 클라이언트 라이브러리(Oracle8 client libraries)가 필요하다.
</para>
<para>
이 함수는 표준 오라클 함수보다 유연하다.
PHP의 전역 변수와 지역 변수들의 오라클 위치보유자(Oracle placeholder)
로의 연계(binding), full LOB, FILE, ROWID를 지원하며,
user-supplied define variable을 사용할 수 있도록 해 준다.
</para>
<para>
이 함수를 사용하기 전에 오라클 계정과 웹 데몬 계정에
유효한 오라클 환경변수를 적용했는지 확인해야한다.
적용시킬 환경변수:
<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>
웹서버 계정으로 위 환경변수를 적용한후에,
웹서버 계정(nobody, www)을 오라클 그룹에 추가했는지 확인해야 한다.
</para>
<note>
<title>웹서버가 시작하지 않거나 시작시 제대로 작동하지 않으면</title>
<para>
아파치가 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>
libpthread가 보이지 않으면 아파치를 다시 설치해야한다 :
</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>OCI Hints</title>
<programlisting role="php">
<![CDATA[
<?php
// by sergo@bacup.ru
// Use option: OCI_DEFAULT for execute command to delay execution
OCIExecute($stmt, OCI_DEFAULT);
// for retrieve data use (after fetch):
$result = OCIResult($stmt, $n);
if (is_object ($result)) $result = $result->load();
// For INSERT or UPDATE statement use:
$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>
커맨드 라인(command-line)에서의 사용 방식과 동일하게
내장 프로시저(stored procedures)를 사용할 수 있다.
<example>
<title>내장 프로시저(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;" );
// This calls stored procedure sp_newaddress, with :address_id being an
// in/out variable and :error_code being an out variable.
// Then you do the 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>
한 SELECT 구문사용시 정의단계(define-step)를 위한 PHP 변수를 할당한다.
</refpurpose>
</refnamediv>
<refsect1>
<title>Description</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>함수는
페치(fetch)한 컬럼을 사용자정의 PHP변수 에 할당한다.
물론, 오라클 유저는 select 구문에서 소문자 컬럼명을 쓸수 있지만,
<function>OCIDefineByName</function>함수의
<parameter>Column-Name</parameter>인수는 반드시 대문자로 적어야 한다.
select 구문에서 존재하지도 않는 변수를 선언해도, 에러는 발생하지않을것이다!
</para>
<para>
추상 데이터타입(LOB/ROWID/BFILE)을 다룰 때는
<function>OCINewDescriptor</function>함수를 사용하여
그 컬럼에 대한 변수영역을 미리 할당해야 한다.
<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");
/* the define MUST be done BEFORE 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>
오라클 위치보유자(Placeholder)를 PHP 변수에 연계(bind)시킨다.
</refpurpose>
</refnamediv>
<refsect1>
<title>Description</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>함수는 PHP 변수
<parameter>variable</parameter>에 오라클 위치보유자(Oracle placeholder)인
<parameter>ph_name</parameter>변수에 연계시킨다.
용도가 입력인지 출력인지는 실시간으로 결정될것이고,
충분한 저장 공간이 할당될 필요가 있다. <parameter>length</parameter>인수
는 연계를 위한 최대 용량을 세팅한다. <parameter>length</parameter>인수를
-1로 세팅하면 <function>OCIBindByName</function>함수는
연계를 위한 최대 용량을 <parameter>variable</parameter>의
현재 용량으로 사용할것이다.
</para>
<para>
추상형 데이터타입(LOB/ROWID/BFILE)을 연계 할 필요가 있다면
우선은 <function>OCINewDescriptor</function>함수를 사용해서
변수를 할당해야 한다.
<parameter>length</parameter>인수는 추상형 데이터타입
을 위해 사용되지 않는다. 이때 이 값은 -1이 되어야 한다.
<parameter>type</parameter>변수는 오라클에서 현재 어떤 종류의
descriptor가 사용되는지 알려준다. 가능한 값은 다음과 같다:
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>
<![CDATA[
<?php
/* OCIBindByPos example thies@thieso.net (980221)
inserts 3 records 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>
<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>오라클 데이터베이스에 접속한다.</refpurpose>
</refnamediv>
<refsect1>
<title>Description</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>함수는 다른 OCI 함수 호출에 필요한 접속 변수를
넘겨준다. 세번째 인수는 로컬 오라클 인스턴스명이나
tnsnames.ora 설정파일에 설정된 엔트리(entry)명이 될 수 있다.
세번째 인수를 생략할 경우, PHP는 접속할 데이터베이스를 결정하기 위해서
환경변수 ORACLE_SID(Oracle instance) 또는 TWO_TASK(tnsnames.ora)를
이용한다.
</para>
<para><function>OCILogon</function> 함수를 사용할때마다 각 접속은
페이지 레벨에서 분배되어진다. 즉, 페이지 안에서 열린 모든
트랜잭션에 커밋(commits)과 롤백(rollbacks)이 적용되어진다는 것을
의미한다. 두개이상의 접속을 만들지라도.
</para>
<para>
아래 예제는 접속이 어떻게 분배되는가를 보여준다.
<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>
See also <function>OCIPLogon</function> and
<function>OCINLogon</function>.</simpara>
</refsect1>
</refentry>
<refentry id="function.ociplogon">
<refnamediv>
<refname>OCIPLogon</refname>
<refpurpose>오라클 데이터베이스에 접속하고 영속적 DB 접속
(persistant connection) 을 이용해서 로그온한다.
또다른 새로운 세션(session)을 넘겨준다.</refpurpose>
</refnamediv>
<refsect1>
<title>Description</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> 오라클8 DB에 영속적인 접속을 형성하고,
로그온 한다. 세번째 인수는 로컬 오라클 인스턴스(local Oracle instanace)의
이름, 또는 tnsnames.ora설정파일의 엔트리(entry) 이름이 될수 있다.
세번째 인수가 생략되면, PHP는 접속할 오라클 데이터베이스를 결정하기 위해
환경변수 ORACLE_SID (Oracle instance)나 TWO_TASK(tnsnames.ora)를
이용한다.
</para>
<simpara>
See also <function>OCILogon</function> and
<function>OCINLogon</function>.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocinlogon">
<refnamediv>
<refname>OCINLogon</refname>
<refpurpose>오라클 데이터베이스에 접속하고 새로운 접속을 이용해서
로그온한다. 새로운 세션(session)을 넘겨준다. </refpurpose>
</refnamediv>
<refsect1>
<title>Description</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> 오라클8 DB에 새로운 접속을 형성하고,
로그온 한다. 세번째 인수는 로컬 오라클 인스턴스명이나
tnsnames.ora 설정파일의 엔트리(entry)명이 될수 있다.
세번째 인수가 생략되면, PHP는 접속할 오라클 데이터베이스를 결정하기 위해
환경변수 ORACLE_SID(Oracle instance)나 TWO_TASK(tnsnames.ora)를
이용한다.
</para>
<para>
<function>OCINLogon</function>함수는 새로운 접속을 강제로 형성한다.
각 트랜잭션들을 분리할 필요가 있을때 사용해야 할것이다.
기본적으로, <function>OCILogon</function>함수를 사용하면 접속은
페이지 레벨에서 분배되어지고, <function>OCIPLogon</function>함수는
웹서버 프로세스 레벨에서 분배되어진다.
<function>OCINLogon</function>함수로 두개 이상의 접속을 연다면,
모든 커밋(commits)과 롤백(rollbacks)은 특정 접속에만 적용되어진다.
</para>
<para>
이 예제는 접속이 어떻게 분리되는지 보여준다.
<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>
See also <function>OCILogon</function> and
<function>OCIPLogon</function>.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocilogoff">
<refnamediv>
<refname>OCILogOff</refname>
<refpurpose>오라클로부터 접속을 해제한다.</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>int</type><methodname>OCILogOff</methodname>
<methodparam><type>int</type><parameter>connection</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCILogOff</function> 오라클 접속을 해제한다.
</para>
</refsect1>
</refentry>
<refentry id="function.ociexecute">
<refnamediv>
<refname>OCIExecute</refname>
<refpurpose>SQL 구문(Statement)을 수행한다.</refpurpose>
</refnamediv>
<refsect1>
<title>Description</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>함수는 미리 해석된 구문(statement)을
실행한다. (<function>OCIParse</function>함수를 보라.) 선택적인
인수 <parameter>mode</parameter>에 execution-mode(디폴트는
OCI_COMMIT_ON_SUCCESS)를 지정할 수 있다. 각 구문이 자동적으로
커밋(commit)되지 않기를 원하면 OCI_DEFAULT로 설정하면 된다.
</para>
</refsect1>
</refentry>
<refentry id="function.ocicommit">
<refnamediv>
<refname>OCICommit</refname>
<refpurpose>미결정된 트랜잭션을 커밋시킨다.</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>int</type><methodname>OCICommit</methodname>
<methodparam><type>int</type><parameter>connection</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCICommit</function>함수는 오라클 접속 인수인
<parameter>connection</parameter>에 대해서
미결정된 모든 구문(outstanding statements)을 커밋한다.
</para>
</refsect1>
</refentry>
<refentry id="function.ocirollback">
<refnamediv>
<refname>OCIRollback</refname>
<refpurpose>미결정된 트랜잭션을 롤백한다.</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>int</type><methodname>OCIRollback</methodname>
<methodparam><type>int</type><parameter>connection</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIRollback</function>함수는 오라클 접속 인수
<parameter>connection</parameter>에 대해서
미결정된 모든 구문(outstanding statements)을 롤백 처리한다.
</para>
</refsect1>
</refentry>
<refentry id="function.ocinewdescriptor">
<refnamediv>
<refname>OCINewDescriptor</refname>
<refpurpose>
LOB/FILE의 비어있는 새로운 descriptor를 초기화한다 (LOB 이 기본값이다)
</refpurpose>
</refnamediv>
<refsect1>
<title>Description</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>함수는 descpriptor나
LOB locator를 위한 저장공간을 할당한다.
유효한 <parameter>type</parameter>인수값은 OCI_D_FILE, OCI_D_LOB,
OCI_D_ROWID 이다.
LOB descriptor은 load, save, savefile 메쏘드를 사용할수 있고,
BFILE은 load 메쏘드만 사용가능하다.
See the second example usage hints.
</para>
<example>
<title>OCINewDescriptor</title>
<programlisting>
<![CDATA[
<?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>
<![CDATA[
<?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";
}
OCIFreeDesc($lob);
OCIFreeStatement($stmt);
OCILogoff($conn);
}
?>
]]>
</programlisting>
</example>
<example>
<title>OCINewDescriptor</title>
<programlisting>
<![CDATA[
<?php
/* Calling PL/SQL stored procedures which contain clobs as input
* parameters (PHP 4 >= 4.0.6).
* Example PL/SQL stored procedure signature is:
*
* 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>적용되어진 열의 갯수를 가져온다</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>int</type><methodname>OCIRowCount</methodname>
<methodparam><type>int</type><parameter>statement</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIRowCount</function>함수는 update같은 구문에 의해 적용되어진
열의 갯수를 리턴한다. 이 함수는 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>
구문 결과값의 컬럼의 갯수를 리턴한다
</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>int</type><methodname>OCINumCols</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCINumCols</function>함수는 구문에서 컬럼의 갯수를 리턴한다.
</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>페치된 열의 컬럼 값을 리턴한다</refpurpose>
</refnamediv>
<refsect1>
<title>Description</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>함수는 현재 열의 컬럼
<parameter>column</parameter>에 대한 데이터를 리턴한다
(<function>OCIFetch</function>함수를 보라).
<function>OCIResult</function>함수는 추상형데이터타입(ROWID, LOB, FILE)을
제외한 문자열로서 모든 것을 리턴할 것이다.
</para>
</refsect1>
</refentry>
<refentry id="function.ocifetch">
<refnamediv>
<refname>OCIFetch</refname>
<refpurpose>결과 버퍼(result-buffer)로 다음 열을 페치한다</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>int</type><methodname>OCIFetch</methodname>
<methodparam><type>int</type><parameter>statement</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIFetch</function>함수는 다음 열(SELECT 구문을 위해)을
내부 결과 버퍼(internal result-buffer)에 페치한다.
</para>
</refsect1>
</refentry>
<refentry id="function.ocifetchinto">
<refnamediv>
<refname>OCIFetchInto</refname>
<refpurpose>결과 배열(result-array)에 다음 열을 페치한다</refpurpose>
</refnamediv>
<refsect1>
<title>Description</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>함수는 다음열(SELECT 구문을 위해)을
<parameter>result</parameter>배열에 페치한다.
<function>OCIFetchInto</function>함수는 <parameter>result</parameter>
변수의 이전값을 덮어 쓸것이다.
기본적으로 <parameter>result</parameter>변수는 &null;이 아닌 모든 컬럼의
일차원 배열을 포함할것이다.
</para>
<para>
<parameter>mode</parameter>인수는 이 함수의 기본값을 변화시킨다.
한개 이상의 플래그를 추가할수있다(OCI_ASSOC+OCI_RETURN_NULLS와 같이).
알려진 플래그는 다음과 같다:
<simplelist>
<member>
<literal>OCI_ASSOC</literal> 연관배열(associative array)을 리턴한다.
</member>
<member>
<literal>OCI_NUM</literal> 키값이 0부터 시작하는 배열을 리턴한다.
(디폴트)
</member>
<member>
<literal>OCI_RETURN_NULLS</literal> 빈 컬럼도 리턴한다.
</member>
<member>
<literal>OCI_RETURN_LOBS</literal>descriptor 대신에 LOB의 값을 리턴한다.
</member>
</simplelist>
</para>
</refsect1>
</refentry>
<refentry id="function.ocifetchstatement">
<refnamediv>
<refname>OCIFetchStatement</refname>
<refpurpose>배열에 모든 열의 결과 값을 페치한다.</refpurpose>
</refnamediv>
<refsect1>
<title>Description</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>함수는 사용자 정의 배열로
결과값의 모든 열을 페치한다.
<function>OCIFetchStatement</function>함수는 페치된 열의 갯수를
리턴한다.
</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>결과 컬럼이 널(&null;)인지 테스트한다</refpurpose>
</refnamediv>
<refsect1>
<title>Description</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>함수는
구문 <parameter>stmt</parameter>의 결과값에서
리턴된 컬럼 <parameter>column</parameter> 값이 널(&null;)이면
&true;를 리턴한다. <parameter>col</parameter> 인수를 위해
컬럼 숫자(column-number(1-Based))나 컬럼 이름(column-name)을
사용할 수 있다.
</para>
</refsect1>
</refentry>
<refentry id="function.ocicolumnname">
<refnamediv>
<refname>OCIColumnName</refname>
<refpurpose>컬럼의 이름을 리턴한다.</refpurpose>
</refnamediv>
<refsect1>
<title>Description</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> 함수는 컬럼 숫자(1-based)에
부합되는 컬럼 이름을 리턴한다.
</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>
See also <function>OCINumCols</function>,
<function>OCIColumnType</function>,
and <function>OCIColumnSize</function>.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocicolumnsize">
<refnamediv>
<refname>OCIColumnSize</refname>
<refpurpose>결과 컬럼 사이즈를 리턴한다</refpurpose>
</refnamediv>
<refsect1>
<title>Description</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>함수는 오라클에 의해 주어진
컬럼의 사이즈를 리턴한다. <parameter>col</parameter> 인수에는
컬럼 숫자(column-number (1-Based))나 컬럼 이름을 사용할 수 있다.
</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>
See also <function>OCINumCols</function>,
<function>OCIColumnName</function>, and
<function>OCIColumnSize</function>.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocicolumntype">
<refnamediv>
<refname>OCIColumnType</refname>
<refpurpose>컬럼의 데이터 타입을 리턴한다.</refpurpose>
</refnamediv>
<refsect1>
<title>Description</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>함수는 컬럼 숫자(1-based)에 부합되는
컬럼의 데이터 타입을 리턴한다.
</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>
See also <function>OCINumCols</function>,
<function>OCIColumnName</function>,
and <function>OCIColumnSize</function>.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ociserverversion">
<refnamediv>
<refname>OCIServerVersion</refname>
<refpurpose>서버 버전 정보를 포함하는 문자열을 리턴한다</refpurpose>
</refnamediv>
<refsect1>
<title>Description</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>OCI 구문(statement)의 타입을 리턴한다.</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>string</type><methodname>OCIStatementType</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIStatementType</function> 함수는 다음중 하나를 리턴한다:
<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>
새로운 커서(구문 핸들)를 리턴한다 - ref-cursor를 연계하기위함.
</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>int</type><methodname>OCINewCursor</methodname>
<methodparam><type>int</type><parameter>conn</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCINewCursor</function>함수는 특정 접속점에 관한
새로운 구문 핸들을 할당한다.
</para>
<para>
<example> <title>스토어드 프로시저에 REF CURSOR 사용하기</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);
}
OCIFreeCursor($stmt);
OCIFreeStatement($curs);
OCILogoff($conn);
?>
]]>
</programlisting>
</example>
</para>
<para>
<example>
<title>SELECT 구문에 REF CURSOR 사용하기</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>
구문(statement)에 연관된 모든 자원을 해제한다.
</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>int</type><methodname>OCIFreeStatement</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIFreeStatement</function>함수는 자원 해제에 성공하면 &true;를
리턴하고, 실패하면 &false;를 리턴한다.
</para>
</refsect1>
</refentry>
<refentry id="function.ocifreecursor">
<refnamediv>
<refname>OCIFreeCursor</refname>
<refpurpose>
커서(cursor)에 연관된 모든 자원을 해제한다.
</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>int</type><methodname>OCIFreeCursor</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIFreeCursor</function> 함수는 자원 해제에 성공하면 &true;를,
실패하면 &false;를 리턴한다.
</para>
</refsect1>
</refentry>
<refentry id="function.ocifreedesc">
<refnamediv>
<refname>OCIFreeDesc</refname>
<refpurpose>큰 객체(large object) descriptor를 삭제한다.</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>int</type><methodname>OCIFreeDesc</methodname>
<methodparam><type>object</type><parameter>lob</parameter></methodparam>
</methodsynopsis>
<para>
<function>OCIFreeDesc</function>함수는 성공하면 &true;를,
실패하면 &false;를 리턴한다.
</para>
</refsect1>
</refentry>
<refentry id="function.ociparse">
<refnamediv>
<refname>OCIParse</refname>
<refpurpose>질의(query)를 해석하고 구문(statement)를 리턴한다</refpurpose>
</refnamediv>
<refsect1>
<title>Description</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> 함수는 <parameter>conn</parameter>인수를
사용하는 <parameter>query</parameter>를 해석한다.
질의(query)가 유효하면 구문(statement)를 리턴한다.
그렇지 않으면 &false;를 리턴한다.
<parameter>query</parameter>인수는 유효한 SQL 구문(statement)이나
PL/SQL블록이 될 수 있다.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocierror">
<refnamediv>
<refname>OCIError</refname>
<refpurpose>stmt|conn|global의 제일 마지막 에러를 리턴한다.
아무 에러도 없었다면 &false;를 리턴한다.
</refpurpose>
</refnamediv>
<refsect1>
<title>Description</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>함수는 마지막 에러를 리턴한다.
선택적 인수<parameter>stmt|conn|global</parameter>가 제공되지않으면,
제일 마지막에 발행한 에러가 리턴된다.
아무 에러도 없었다면 <function>OCIError</function>함수는 &false;를 리턴한다.
<function>OCIError</function>함수는 연관배열(associative array)로서
에러를 리턴한다. 이 배열은 오라클 에러 코드인
<parameter>code</parameter>인수와 오라클 에러문자열인
<parameter>message</parameter>인수로 구성된다.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ociinternaldebug">
<refnamediv>
<refname>OCIInternalDebug</refname>
<refpurpose>
내부 디버그 출력을 활성화 시키거나, 비활성화 시킨다.
기본값으로 비활성화 되어있다.
</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>void</type><methodname>OCIInternalDebug</methodname>
<methodparam><type>int</type><parameter>onoff</parameter></methodparam>
</methodsynopsis>
<simpara>
<function>OCIInternalDebug</function>함수는 내부 디버그 출력을
활성화 시킨다.
<parameter>onoff</parameter>인수를 0으로 놓으면 비활성화 되고,
1로 놓으면 활성화 된다.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocicancel">
<refnamediv>
<refname>OCICancel</refname>
<refpurpose>커서로부터 읽기를 취소한다</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>int</type><methodname>OCICancel</methodname>
<methodparam><type>int</type><parameter>stmt</parameter></methodparam>
</methodsynopsis>
<simpara>
커서로부터 더이상 데이터를 읽기를 원치않으면,
<function>OCICancel</function>함수를 쓰라.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ocisetprefetch">
<refnamediv>
<refname>OCISetPrefetch</refname>
<refpurpose>사용할 열의 갯수를 설정한다</refpurpose>
</refnamediv>
<refsect1>
<title>Description</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>
사용할 열의 갯수를 설정한다. 기본값은 1열이다.
</simpara>
</refsect1>
</refentry>
<refentry id="function.ociwritelobtofile">
<refnamediv>
<refname>OCIWriteLobToFile</refname>
<refpurpose>Coming soon.</refpurpose>
</refnamediv>
<refsect1>
<title>Description</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>Description</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>Description</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>Description</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>Description</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>Description</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>Description</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>Description</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>Description</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>Description</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>Description</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>Description</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>Description</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>Description</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>Description</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>Description</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
-->
|