fuzzy74 Sun Feb 25 09:27:03 2001 EDT Modified files: /phpdoc/kr/functions oci8.xml Log: english -> korean translated by taeyoung,Jin (100%)
Index: phpdoc/kr/functions/oci8.xml diff -u phpdoc/kr/functions/oci8.xml:1.4 phpdoc/kr/functions/oci8.xml:1.5 --- phpdoc/kr/functions/oci8.xml:1.4 Sun Feb 25 07:11:58 2001 +++ phpdoc/kr/functions/oci8.xml Sun Feb 25 09:27:03 2001 @@ -1,9 +1,9 @@ <reference id="ref.oci8"> - <title>Oracle 8 functions</title> + <title>오라클 8 함수</title> <titleabbrev>OCI8</titleabbrev> <partintro> <para> - 이 함수들은 Oracle8과 Oracle7 데이터베이스를 접근할 수 있도록 해준다. + 이 함수들은 Oracle8과 Oracle7 데이터베이스에 접근할 +수 있도록 해준다. 이것은 Oracle8 Call-Interface (OCI8)를 사용한다. 이 드라이버를 사용하려면 Oracle8 client libraries가 필요하다. </para> @@ -113,7 +113,8 @@ <refnamediv> <refname>OCIDefineByName</refname> <refpurpose> - SELECT 구문을 사용하는 동안 정의단계(define-step)를 위한 PHP 변수를 할당한다. + SELECT 구문(Statement)을 사용하는 동안 +정의단계(define-step)를 위한 + PHP 변수를 할당한다. </refpurpose> </refnamediv> <refsect1> @@ -129,8 +130,8 @@ </funcprototype> </funcsynopsis> <para> - <function>OCIDefineByName</function>페치(fetch)한 컬럼을 사용자정의 변수 - 에 할당한다. + <function>OCIDefineByName</function>함수는 + 페치(fetch)한 컬럼을 사용자정의 변수 에 할당한다. 물론, 오라클 유저는 select 구문에서 소문자 컬럼명을 쓸수 있지만, <function>OCIDefineByName</function>함수의 <parameter>Column-Name</parameter>인수는 반드시 대문자로 적어야 한다. @@ -177,7 +178,6 @@ <refname>OCIBindByName</refname> <refpurpose> 오라클 위치보유자(Placeholder)를 PHP 변수에 연계(bind)시킨다. - Bind a PHP variable to an Oracle Placeholder </refpurpose> </refnamediv> <refsect1> @@ -194,24 +194,25 @@ </funcprototype> </funcsynopsis> <para> - <function>OCIBindByName</function> binds the PHP variable - <parameter>variable</parameter> to the Oracle placeholder - <parameter>ph_name</parameter>. Whether it will be used for - input or output will be determined run-time, and the necessary - storage space will be allocated. The - <parameter>length</parameter> parameter sets the maximum length - for the bind. If you set <parameter>length</parameter> to -1 - <function>OCIBindByName</function> will use the current length of - <parameter>variable</parameter> to set the maximum length. - </para> - <para> - If you need to bind an abstract Datatype (LOB/ROWID/BFILE) you - need to allocate it first using - <function>OCINewDescriptor</function> function. The - <parameter>length</parameter> is not used for abstract Datatypes - and should be set to -1. The <parameter>type</parameter> variable - tells oracle, what kind of descriptor we want to use. Possible - values are: OCI_B_FILE (Binary-File), OCI_B_CFILE + <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> @@ -286,8 +287,7 @@ <refentry id="function.ocilogon"> <refnamediv> <refname>OCILogon</refname> - <refpurpose>Establishes a connection to Oracle</refpurpose> - <refpurpose>오라클 접속을 구축한다.</refpurpose> + <refpurpose>오라클 접속을 형성한다.</refpurpose> </refnamediv> <refsect1> <title>Description</title> @@ -309,17 +309,12 @@ 환경변수 ORACLE_SID(Oracle instance) 또는 TWO_TASK(tnsnames.ora)를 이용한다. </para> - <para>Connections are shared at the page level when using - <para>이 함수를 사용할때마다 각 접속은 페이지 레벨에서 분배되어진다. - <function>OCILogon</function>. This means that commits and - rollbacks apply to all open transactions in the page, even if you - have created multiple connections. - <function>OCILogon</function>. 이것은 각 페이지에서 열린 모든 + <para><function>OCILogon</function> 함수를 사용할때마다 각 접속은 + 페이지 레벨에서 분배되어진다. 이것은 각 페이지에서 열린 +모든 트랜잭션에 커밋(commits)과 롤백(rollbacks)이 적용되어진다는 것을 의미한다. 두개이상의 접속을 만들지라도. </para> <para> - This example demonstrates how the connections are shared. 아래 예제는 접속이 어떻게 분배되는가를 보여준다. <example> <title>OCILogon</title> @@ -447,8 +442,6 @@ <refentry id="function.ocinlogon"> <refnamediv> <refname>OCINLogon</refname> - <refpurpose>Connect to an Oracle database and log on using a new - connection. Returns a new session.</refpurpose> <refpurpose>오라클 데이터베이스에 접속하고 새로운 접속을 이용해서 로그온한다. 새로운 세션(session)을 넘겨준다. </refpurpose> </refnamediv> @@ -473,18 +466,11 @@ 이용한다. </para> <para> - <function>OCINLogon</function> forces a new connection. This - should be used if you need to isolate a set of transactions. By - default, connections are shared at the page level if using - <function>OCILogon</function> or at the web server process level - if using <function>OCIPLogon</function>. If you have multiple - connections open using <function>OCINLogon</function>, all - commits and rollbacks apply to the specified connection only. - <function>OCINLogon</function> 새로운 접속을 강제로 형성한다. - 각 트랜잭션들을 분리할 필요가 있으면 사용해야 할것이다. + <function>OCINLogon</function>함수는 새로운 접속을 강제로 +형성한다. + 각 트랜잭션들을 분리할 필요가 있을때 사용해야 할것이다. 기본적으로, <function>OCILogon</function>함수를 사용하면 접속은 - 페이지 레벨에서 분배되어지고, <function>OCIPLogon</function>함수를 - 사용하면 웹서버 프로세스 레벨에서 분배되어진다. + 페이지 레벨에서 분배되어지고, +<function>OCIPLogon</function>함수는 + 웹서버 프로세스 레벨에서 분배되어진다. <function>OCINLogon</function>함수로 두개 이상의 접속을 연다면, 모든 커밋(commits)과 롤백(rollbacks)은 특정 접속에만 적용되어진다. </para> @@ -617,9 +603,9 @@ </funcprototype> </funcsynopsis> <para> - <function>OCIExecute</function> 미리 해석된 구문(statement)를 + <function>OCIExecute</function> 미리 해석된 구문(statement)을 실행한다. (<function>OCIParse</function>함수를 보라.) 선택적인 - 인수 <parameter>mode</parameter>는 execution-mode(디폴트는 + 인수 <parameter>mode</parameter>에 execution-mode(디폴트는 OCI_COMMIT_ON_SUCCESS이다)를 지정할 수 있다. 각 구문이 자동적으로 커밋(commit)되지 않기를 원하면 OCI_DEFAULT로 설정하면 된다. </para> @@ -640,8 +626,6 @@ </funcprototype> </funcsynopsis> <para> - <function>OCICommit</function> commits all outstanding statements - for Oracle connection <parameter>connection</parameter>. <function>OCICommit</function> 오라클 접속 파라미터 <parameter>connection</parameter>에 대해서 미결정된 모든 구문(outstanding statements)을 커밋한다. @@ -663,8 +647,6 @@ </funcprototype> </funcsynopsis> <para> - <function>OCIRollback</function> rolls back all outstanding - statements for Oracle connection <parameter>connection</parameter>. <function>OCIRollback</function> 오라클 접속 파라미터 <parameter>connection</parameter>에 대해서 미결정된 모든 구문(outstanding statements)을 롤백 처리한다. @@ -691,12 +673,13 @@ </funcprototype> </funcsynopsis> <para> - <function>OCINewDescriptor</function> Allocates storage to hold - descriptors or LOB locators. Valid values for the valid - <parameter>type</parameter> are OCI_D_FILE, OCI_D_LOB, OCI_D_ROWID. - For LOB descriptors, the methods load, save, and savefile are - associated with the descriptor, for BFILE only the load method - exists. See the second example usage hints. + <function>OCINewDescriptor</function>함수는 hold descpriptor나 + LOB locator를 위한 저장공간을 할당한다. + 유효한 <parameter>type</paremeter>값은 OCI_D_FILE, OCI_D_LOB, + OCI_D_ROWID 이다. + LOB descriptor를 위해 load, save, savefile 메쏘드가 + descriptor에 연결되어 있다. BFILE를 위해서는 load 메쏘드만이 +존재한다. + See the second example usage hints. </para> <example> <title>OCINewDescriptor</title> @@ -771,7 +754,7 @@ <refentry id="function.ocirowcount"> <refnamediv> <refname>OCIRowCount</refname> - <refpurpose>Gets the number of affected rows</refpurpose> + <refpurpose>적용되어진 열의 갯수를 가져온다</refpurpose> </refnamediv> <refsect1> <title>Description</title> @@ -782,9 +765,9 @@ </funcprototype> </funcsynopsis> <para> - <function>OCIRowCount</function> returns the number of rows affected - for eg update-statements. This function will not tell you the number - of rows that a select will return!</para> + <function>OCIRowCount</function>함수는 update같은 구문에 의해 +적용되어진 + 열의 갯수를 리턴한다. 이 함수는 select 가 리턴할 열의 +갯수를 + 말해 주진 않을 것이다!</para> <para> <example> <title>OCIRowCount</title> @@ -815,7 +798,7 @@ <refnamediv> <refname>OCINumCols</refname> <refpurpose> - Return the number of result columns in a statement + 구문 결과값의 컬럼의 갯수를 리턴한다 </refpurpose> </refnamediv> <refsect1> @@ -827,8 +810,7 @@ </funcprototype> </funcsynopsis> <para> - <function>OCINumCols</function> returns the number of columns in a - statement + <function>OCINumCols</function>함수는 구문에서 컬럼의 갯수를 +리턴한다. </para> <example> <title>OCINumCols</title> @@ -861,7 +843,7 @@ <refentry id="function.ociresult"> <refnamediv> <refname>OCIResult</refname> - <refpurpose>Returns column value for fetched row</refpurpose> + <refpurpose>페치된 열의 컬럼 값을 리턴한다</refpurpose> </refnamediv> <refsect1> <title>Description</title> @@ -873,11 +855,11 @@ </funcprototype> </funcsynopsis> <para> - <function>OCIResult</function> returns the data for column - <parameter>column</parameter> in the current row (see - <function>OCIFetch</function>).<function>OCIResult</function> will - return everything as strings except for abstract types (ROWIDs, - LOBs and FILEs). + <function>OCIResult</function>함수는 현재 열의 컬럼 + <parameter>column</parameter>에 대한 데이터를 리턴한다 + (<function>OCIFetch</function>함수를 보라). + <function>OCIResult</function>함수는 추상형데이터타입(ROWID, LOB, +FILE)을 + 제외한 문자열같은 모든 것을 리턴할 것이다. </para> </refsect1> </refentry> @@ -885,7 +867,7 @@ <refentry id="function.ocifetch"> <refnamediv> <refname>OCIFetch</refname> - <refpurpose>Fetches the next row into result-buffer</refpurpose> + <refpurpose>결과 버퍼(result-buffer)로 다음 열을 +페치한다</refpurpose> </refnamediv> <refsect1> <title>Description</title> @@ -896,8 +878,8 @@ </funcprototype> </funcsynopsis> <para> - <function>OCIFetch</function> fetches the next row (for SELECT - statements) into the internal result-buffer. + <function>OCIFetch</function>함수는 다음 열(SELECT 구문을 위해)을 + 내부 결과 버퍼(internal result-buffer)에 페치한다. </para> </refsect1> </refentry> @@ -905,7 +887,7 @@ <refentry id="function.ocifetchinto"> <refnamediv> <refname>OCIFetchInto</refname> - <refpurpose>Fetches the next row into result-array</refpurpose> + <refpurpose>결과 배열(result-array)에 다음 열을 페치한다</refpurpose> </refnamediv> <refsect1> <title>Description</title> @@ -920,32 +902,34 @@ </funcprototype> </funcsynopsis> <para> - <function>OCIFetchInto</function> fetches the next row (for SELECT - statements) into the <parameter>result</parameter> array. - <function>OCIFetchInto</function> will overwrite the previous - content of <parameter>result</parameter>. By default - <parameter>result</parameter> will contain a one-based array of all - columns that are not NULL. + <function>OCIFetchInto</function>함수는 다음열(SELECT 구문을 위해)을 + <parameter>result</parameter>배열에 페치한다. + <function>OCIFetchInto</function>함수는 <parameter>result</parameter> + 변수의 이전값을 덮어 쓸것이다. + 기본적으로 <parameter>result</parameter>변수는 NULL이 아닌 모든 +컬럼의 + 일차원 배열을 포함할것이다. </para> <para> The <parameter>mode</parameter> parameter allows you to change the default behaviour. You can specify more than one flag by simply adding them up (eg OCI_ASSOC+OCI_RETURN_NULLS). The known flags are: + <parameter>mode</parameter>인수는 이 함수의 기본값을 +변화시킨다. + 한개 이상의 플래그를 추가할수있다(OCI_ASSOC+OCI_RETURN_NULLS와 +같이). + 알려진 플래그는 다음과 같다: <simplelist> <member> - <literal>OCI_ASSOC</literal> Return an associative array. + <literal>OCI_ASSOC</literal> 연관배열(associative array)을 리턴한다. </member> <member> - <literal>OCI_NUM</literal> Return an numbered array starting with - one. (DEFAULT) + <literal>OCI_NUM</literal> 1부터 시작하는 숫자를 갖는 변수를 +리턴한다. + (디폴트) </member> <member> - <literal>OCI_RETURN_NULLS</literal> Return empty columns. + <literal>OCI_RETURN_NULLS</literal> 빈 컬럼을 리턴한다. </member> <member> - <literal>OCI_RETURN_LOBS</literal> Return the value of a LOB - instead of the descriptor. + <literal>OCI_RETURN_LOBS</literal>descriptor 대신에 LOB의 값을 +리턴한다. </member> </simplelist> </para> @@ -955,7 +939,7 @@ <refentry id="function.ocifetchstatement"> <refnamediv> <refname>OCIFetchStatement</refname> - <refpurpose>Fetch all rows of result data into an array.</refpurpose> + <refpurpose>배열에 모든 열의 결과 값을 페치한다.</refpurpose> </refnamediv> <refsect1> <title>Description</title> @@ -967,10 +951,10 @@ </funcprototype> </funcsynopsis> <para> - <function>OCIFetchStatement</function> fetches all the rows from a - result into a user-defined array. - <function>OCIFetchStatement</function> returns the number of rows - fetched. + <function>OCIFetchStatement</function>함수는 사용자 정의 배열로 + 결과값의 모든 열을 페치한다. + <function>OCIFetchStatement</function>함수는 페치된 열의 갯수를 + 리턴한다. </para> <example> <title>OCIFetchStatement</title> @@ -1019,7 +1003,7 @@ <refentry id="function.ocicolumnisnull"> <refnamediv> <refname>OCIColumnIsNULL</refname> - <refpurpose>test whether a result column is NULL</refpurpose> + <refpurpose>결과 컬럼이 널(NULL)인지 테스트한다</refpurpose> </refnamediv> <refsect1> <title>Description</title> @@ -1031,11 +1015,12 @@ </funcprototype> </funcsynopsis> <para> - <function>OCIColumnIsNULL</function> returns true if the returned - column <parameter>column</parameter> in the result from the - statement <parameter>stmt</parameter> is NULL. You can either use - the column-number (1-Based) or the column-name for the - <parameter>col</parameter> parameter. + <function>OCIColumnIsNULL</function>함수는 + 구문 <parameter>stmt</parameter>의 결과값에서 + 리턴된 컬럼 <parameter>column</parameter> 값이 널(NULL)이면 + true를 리턴한다. <parameter>col</parameter> 인수를 위해 + 컬럼 숫자(column-number(1-Based))나 컬럼 이름(column-name)을 + 사용할 수 있다. </para> </refsect1> </refentry> @@ -1043,7 +1028,7 @@ <refentry id="function.ocicolumnname"> <refnamediv> <refname>OCIColumnName</refname> - <refpurpose>Returns the name of a column.</refpurpose> + <refpurpose>컬럼의 이름을 리턴한다.</refpurpose> </refnamediv> <refsect1> <title>Description</title> @@ -1055,8 +1040,8 @@ </funcprototype> </funcsynopsis> <simpara> - <function>OCIColumnName</function> returns the name of the column - corresponding to the column number (1-based) that is passed in. + <function>OCIColumnName</function> 함수는 컬럼 숫자(1-based)에 + 부합되는 컬럼 이름을 리턴한다. </simpara> <para> <example> @@ -1103,7 +1088,7 @@ <refentry id="function.ocicolumnsize"> <refnamediv> <refname>OCIColumnSize</refname> - <refpurpose>return result column size</refpurpose> + <refpurpose>결과 컬럼 사이즈를 리턴한다</refpurpose> </refnamediv> <refsect1> <title>Description</title> @@ -1115,10 +1100,9 @@ </funcprototype> </funcsynopsis> <para> - <function>OCIColumnSize</function> returns the size of the column - as given by Oracle. You can either use - the column-number (1-Based) or the column-name for the - <parameter>col</parameter> parameter. + <function>OCIColumnSize</function>함수는 오라클에 의해 주어진 + 컬럼의 사이즈를 리턴한다. <parameter>col</parameter> 인수에는 + 컬럼 숫자(column-number (1-Based))나 컬럼 이름을 사용할 수 있다. </para> <para> <example> @@ -1166,7 +1150,7 @@ <refentry id="function.ocicolumntype"> <refnamediv> <refname>OCIColumnType</refname> - <refpurpose>Returns the data type of a column.</refpurpose> + <refpurpose>컬럼의 데이터 타입을 리턴한다.</refpurpose> </refnamediv> <refsect1> <title>Description</title> @@ -1178,9 +1162,8 @@ </funcprototype> </funcsynopsis> <simpara> - <function>OCIColumnType</function> returns the data type of the - column corresponding to the column number (1-based) that is passed - in. + <function>OCIColumnType</function>함수는 컬럼 숫자(1-based)에 +부합되는 + 컬럼의 데이터 타입을 리턴한다. </simpara> <para> <example> @@ -1227,8 +1210,7 @@ <refentry id="function.ociserverversion"> <refnamediv> <refname>OCIServerVersion</refname> - <refpurpose>Return a string containing server version - information.</refpurpose> + <refpurpose>서버 버전 정보를 포함하는 문자열을 +리턴한다</refpurpose> </refnamediv> <refsect1> <title>Description</title> @@ -1256,7 +1238,7 @@ <refentry id="function.ocistatementtype"> <refnamediv> <refname>OCIStatementType</refname> - <refpurpose>Return the type of an OCI statement.</refpurpose> + <refpurpose>OCI 구문(statement)의 타입을 리턴한다.</refpurpose> </refnamediv> <refsect1> <title>Description</title> @@ -1267,8 +1249,7 @@ </funcprototype> </funcsynopsis> <para> - <function>OCIStatementType</function> returns one of the following - values: + <function>OCIStatementType</function> 함수는 다음중 하나를 리턴한다: <orderedlist> <listitem><simpara> "SELECT"</simpara></listitem> <listitem><simpara> "UPDATE"</simpara></listitem> @@ -1396,7 +1377,7 @@ <refnamediv> <refname>OCIFreeStatement</refname> <refpurpose> - Free all resources associated with a statement. + 구문(statement)에 연관된 모든 자원을 해제한다. </refpurpose> </refnamediv> <refsect1> @@ -1408,8 +1389,8 @@ </funcprototype> </funcsynopsis> <para> - <function>OCIFreeStatement</function> returns true if successful, - or false if unsuccessful. + <function>OCIFreeStatement</function> 함수는 자원 해제에 성공하면 +true를 + 리턴하고, 실패하면 false를 리턴한다. </para> </refsect1> </refentry> @@ -1418,7 +1399,7 @@ <refnamediv> <refname>OCIFreeCursor</refname> <refpurpose> - Free all resources associated with a cursor. + 커서(cursor)에 연관된 모든 자원을 해제한다. </refpurpose> </refnamediv> <refsect1> @@ -1430,8 +1411,8 @@ </funcprototype> </funcsynopsis> <para> - <function>OCIFreeCursor</function> returns true if successful, or - false if unsuccessful. + <function>OCIFreeCursor</function> 함수는 자원 해제에 성공하면 +true를, + 실패하면 false를 리턴한다. </para> </refsect1> </refentry> @@ -1439,7 +1420,7 @@ <refentry id="function.ocifreedesc"> <refnamediv> <refname>OCIFreeDesc</refname> - <refpurpose>Deletes a large object descriptor.</refpurpose> + <refpurpose>큰 객체(large object) descriptor를 삭제한다.</refpurpose> </refnamediv> <refsect1> <title>Description</title> @@ -1450,8 +1431,8 @@ </funcprototype> </funcsynopsis> <para> - <function>OCIFreeDesc</function> returns true if successful, or - false if unsuccessful. + <function>OCIFreeDesc</function>함수는 성공하면 true를, + 실패하면 false를 리턴한다. </para> </refsect1> </refentry> @@ -1459,7 +1440,7 @@ <refentry id="function.ociparse"> <refnamediv> <refname>OCIParse</refname> - <refpurpose>Parse a query and return a statement</refpurpose> + <refpurpose>질의(query)를 해석하고 구문(statement)를 +리턴한다</refpurpose> </refnamediv> <refsect1> <title>Description</title> @@ -1471,19 +1452,20 @@ </funcprototype> </funcsynopsis> <simpara> - <function>OCIParse</function> parses the - <parameter>query</parameter> using <parameter>conn</parameter>. - It returns the statement identity if the query is valid, false if - not. The <parameter>query</parameter> can be any valid SQL - statement. + <function>OCIParse</function> 함수는 <parameter>conn</parameter>인수를 + 사용하는 <parameter>query</parameter>를 해석한다. + 질의(query)가 유효하면 구문(statement)를 리턴한다. + 그렇지 않으면 false를 리턴한다. + <parameter>query</parameter>인수는 어떤 유효한 SQL 구문(statement) + 도 될 수 있다. </simpara> </refsect1> </refentry> <refentry id="function.ocierror"> <refnamediv> <refname>OCIError</refname> - <refpurpose>Return the last error of stmt|conn|global. - If no error happened returns false. + <refpurpose>stmt|conn|global의 제일 마지막 에러를 리턴한다. + 아무 에러도 없었다면 false를 리턴한다. </refpurpose> </refnamediv> <refsect1> @@ -1497,14 +1479,14 @@ </funcprototype> </funcsynopsis> <simpara> - <function>OCIError</function> returns the last error found. If - the optional <parameter>stmt|conn|global</parameter> is not - provided, the last error encountered is returned. If no error is - found, <function>OCIError</function> returns - false. <function>OCIError</function> returns the error as an - associative array. In this array, <parameter>code</parameter> - consists the oracle error code and <parameter>message</parameter> - the oracle errorstring. + <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> @@ -1513,8 +1495,8 @@ <refnamediv> <refname>OCIInternalDebug</refname> <refpurpose> - Enables or disables internal debug output. By default it is - disabled + 내부 디버그 출력을 활성화 시키거나, 비활성화 시킨다. + 기본값으로 비활성화 되어있다. </refpurpose> </refnamediv> <refsect1> @@ -1529,6 +1511,10 @@ <function>OCIInternalDebug</function> enables internal debug output. Set <parameter>onoff</parameter> to 0 to turn debug output off, 1 to turn it on. + <function>OCIInternalDebug</function>함수는 내부 디버그 출력을 + 활성화 시킨다. + <parameter>onoff</parameter>인수를 0으로 놓으면 비활성화 되고, + 1로 놓으면 활성화 된다. </simpara> </refsect1> </refentry>