當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ocinewcursor函數代碼示例

本文整理匯總了PHP中ocinewcursor函數的典型用法代碼示例。如果您正苦於以下問題:PHP ocinewcursor函數的具體用法?PHP ocinewcursor怎麽用?PHP ocinewcursor使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了ocinewcursor函數的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: get_cursor

 /**
  * getCursor.  Returns a cursor from the datbase
  *
  * @access  public
  * @return  cursor id
  */
 function get_cursor()
 {
     $this->curs_id = ocinewcursor($this->conn_id);
     return $this->curs_id;
 }
開發者ID:qlixes,項目名稱:springphp,代碼行數:11,代碼來源:oci8_driver.php

示例2: getCursor

 /**
  * getCursor.  Returns a cursor from the datbase
  *
  * @access  public
  * @return  cursor id
  */
 function getCursor()
 {
     return @ocinewcursor($this->conn_id);
 }
開發者ID:rotac,項目名稱:ci_package-abstraction,代碼行數:10,代碼來源:oci10_driver.php

示例3: ociparse

//Declare cursor variable
$mycursor = ociparse($conn, "begin getPotisions(:curs,'{$alin1}'); end;");
// prepare procedure call
ocibindbyname($mycursor, ':curs', $outrefc, -1, OCI_B_CURSOR);
// bind procedure parameters
$ret = ociexecute($mycursor);
// Execute function
$ret = ociexecute($outrefc);
// Execute cursor
$nrows = ocifetchstatement($outrefc, $pos1);
// fetch data from cursor
ocifreestatement($mycursor);
// close procedure call
ocifreestatement($outrefc);
// close cursor
$outrefc = ocinewcursor($conn);
//Declare cursor variable
$mycursor = ociparse($conn, "begin getPotisions(:curs,'{$alin2}'); end;");
// prepare procedure call
ocibindbyname($mycursor, ':curs', $outrefc, -1, OCI_B_CURSOR);
// bind procedure parameters
$ret = ociexecute($mycursor);
// Execute function
$ret = ociexecute($outrefc);
// Execute cursor
$nrows = ocifetchstatement($outrefc, $pos2);
// fetch data from cursor
ocifreestatement($mycursor);
// close procedure call
ocifreestatement($outrefc);
// close cursor
開發者ID:andreysanchezcr,項目名稱:Tournament-FPes,代碼行數:31,代碼來源:Partido.php

示例4: ocidefinebyname

ocidefinebyname();
ocierror();
ociexecute();
ocifetch();
ocifetchinto();
ocifetchstatement();
ocifreecollection();
ocifreecursor();
ocifreedesc();
ocifreestatement();
ociinternaldebug();
ociloadlob();
ocilogoff();
ocilogon();
ocinewcollection();
ocinewcursor();
ocinewdescriptor();
ocinlogon();
ocinumcols();
ociparse();
ociplogon();
ociresult();
ocirollback();
ocirowcount();
ocisavelob();
ocisavelobfile();
ociserverversion();
ocisetprefetch();
ocistatementtype();
ociwritelobtofile();
ociwritetemporarylob();
開發者ID:christopheg,項目名稱:PHPCompatibility,代碼行數:31,代碼來源:deprecated_functions.php


注:本文中的ocinewcursor函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。