当前位置: 首页>>代码示例>>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;未经允许,请勿转载。