当前位置: 首页>>代码示例>>PHP>>正文


PHP sybase_data_seek函数代码示例

本文整理汇总了PHP中sybase_data_seek函数的典型用法代码示例。如果您正苦于以下问题:PHP sybase_data_seek函数的具体用法?PHP sybase_data_seek怎么用?PHP sybase_data_seek使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了sybase_data_seek函数的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: seek

 /**
  * Seek
  *
  * @param   int offset
  * @return  bool success
  * @throws  rdbms.SQLException
  */
 public function seek($offset)
 {
     if (!sybase_data_seek($this->handle, $offset)) {
         throw new SQLException('Cannot seek to offset ' . $offset);
     }
     return TRUE;
 }
开发者ID:melogamepay,项目名称:xp-framework,代码行数:14,代码来源:SybaseResultSet.class.php

示例2: seek

 function seek($pos)
 {
     $status = sybase_data_seek($this->Query_ID, $pos);
     if ($status) {
         $this->Row = $pos;
     }
     return;
 }
开发者ID:antirek,项目名称:prestige-pbx,代码行数:8,代码来源:phplib_sybase.php

示例3: _data_seek

 /**
  * Data Seek
  *
  * Moves the internal pointer to the desired offset.  We call
  * this internally before fetching results to make sure the
  * result set starts at zero
  *
  * @access	private
  * @return	array
  */
 function _data_seek($n = 0)
 {
     return sybase_data_seek($this->result_id, $n);
 }
开发者ID:alexandrebagio,项目名称:CodeIgniter3-sybase-driver,代码行数:14,代码来源:sybase_result.php

示例4: fetchInto

 /**
  * Places a row from the result set into the given array
  *
  * Formating of the array and the data therein are configurable.
  * See DB_result::fetchInto() for more information.
  *
  * This method is not meant to be called directly.  Use
  * DB_result::fetchInto() instead.  It can't be declared "protected"
  * because DB_result is a separate object.
  *
  * @param resource $result    the query result resource
  * @param array    $arr       the referenced array to put the data in
  * @param int      $fetchmode how the resulting array should be indexed
  * @param int      $rownum    the row number to fetch (0 = first row)
  *
  * @return mixed  DB_OK on success, NULL when the end of a result set is
  *                 reached or on failure
  *
  * @see DB_result::fetchInto()
  */
 function fetchInto($result, &$arr, $fetchmode, $rownum = null)
 {
     if ($rownum !== null) {
         if (!@sybase_data_seek($result, $rownum)) {
             return null;
         }
     }
     if ($fetchmode & DB_FETCHMODE_ASSOC) {
         if (function_exists('sybase_fetch_assoc')) {
             $arr = @sybase_fetch_assoc($result);
         } else {
             if ($arr = @sybase_fetch_array($result)) {
                 foreach ($arr as $key => $value) {
                     if (is_int($key)) {
                         unset($arr[$key]);
                     }
                 }
             }
         }
         if ($this->options['portability'] & DB_PORTABILITY_LOWERCASE && $arr) {
             $arr = array_change_key_case($arr, CASE_LOWER);
         }
     } else {
         $arr = @sybase_fetch_row($result);
     }
     if (!$arr) {
         return null;
     }
     if ($this->options['portability'] & DB_PORTABILITY_RTRIM) {
         $this->_rtrimArrayValues($arr);
     }
     if ($this->options['portability'] & DB_PORTABILITY_NULL_TO_EMPTY) {
         $this->_convertNullArrayValuesToEmpty($arr);
     }
     return DB_OK;
 }
开发者ID:Cyberspace-Networks,项目名称:PeopleAggregator,代码行数:56,代码来源:sybase.php

示例5: _seek

 function _seek($row)
 {
     return @sybase_data_seek($this->_queryID, $row);
 }
开发者ID:ceryxSeidor,项目名称:ProyectoPruebaWSV2,代码行数:4,代码来源:adodb-sybase.inc.php

示例6: fetchInto

 /**
  * Fetch a row and insert the data into an existing array.
  *
  * Formating of the array and the data therein are configurable.
  * See DB_result::fetchInto() for more information.
  *
  * @param resource $result    query result identifier
  * @param array    $arr       (reference) array where data from the row
  *                            should be placed
  * @param int      $fetchmode how the resulting array should be indexed
  * @param int      $rownum    the row number to fetch
  *
  * @return mixed DB_OK on success, null when end of result set is
  *               reached or on failure
  *
  * @see DB_result::fetchInto()
  * @access private
  */
 function fetchInto($result, &$arr, $fetchmode, $rownum = null)
 {
     if ($rownum !== null) {
         if (!@sybase_data_seek($result, $rownum)) {
             return null;
         }
     }
     if ($fetchmode & DB_FETCHMODE_ASSOC) {
         if (function_exists('sybase_fetch_assoc')) {
             $arr = @sybase_fetch_assoc($result);
         } else {
             if ($arr = @sybase_fetch_array($result)) {
                 foreach ($arr as $key => $value) {
                     if (is_int($key)) {
                         unset($arr[$key]);
                     }
                 }
             }
         }
         if ($this->options['portability'] & DB_PORTABILITY_LOWERCASE && $arr) {
             $arr = array_change_key_case($arr, CASE_LOWER);
         }
     } else {
         $arr = @sybase_fetch_row($result);
     }
     if (!$arr) {
         // reported not work as seems that sybase_get_last_message()
         // always return a message here
         //if ($errmsg = @sybase_get_last_message()) {
         //    return $this->sybaseRaiseError($errmsg);
         //} else {
         return null;
         //}
     }
     if ($this->options['portability'] & DB_PORTABILITY_RTRIM) {
         $this->_rtrimArrayValues($arr);
     }
     if ($this->options['portability'] & DB_PORTABILITY_NULL_TO_EMPTY) {
         $this->_convertNullArrayValuesToEmpty($arr);
     }
     return DB_OK;
 }
开发者ID:sergiokessler,项目名称:perio,代码行数:60,代码来源:sybase.php

示例7: fetchInto

 function fetchInto($result, &$ar, $fetchmode, $rownum = null)
 {
     if ($rownum !== null) {
         if (!sybase_data_seek($result, $rownum)) {
             return $this->raiseError();
         }
     }
     $ar = $fetchmode & DB_FETCHMODE_ASSOC ? @sybase_fetch_array($result) : @sybase_fetch_row($result);
     if (!$ar) {
         // reported not work as seems that sybase_get_last_message()
         // always return a message here
         //if ($errmsg = sybase_get_last_message()) {
         //    return $this->raiseError($errmsg);
         //} else {
         return null;
         //}
     }
     return DB_OK;
 }
开发者ID:joeymetal,项目名称:v1,代码行数:19,代码来源:sybase.php

示例8: resultSeek

 /**
  * Move internal result pointer
  *
  * Moves the pointer within the query result to a specified location, or
  * to the beginning if nothing is specified.
  *
  * @param resource $result    Resultset
  * @param integer  $rowNumber Row number
  * 
  * @return boolean
  */
 public function resultSeek($result, $rowNumber)
 {
     return sybase_data_seek($result, $rowNumber);
 }
开发者ID:jr-ewing,项目名称:phpMyFAQ,代码行数:15,代码来源:Sybase.php

示例9: LimitQuery

 function LimitQuery($query, $offset, $rows)
 {
     $this->res = 0;
     $this->oid = 0;
     $this->cur = -1;
     $this->vcur = -1;
     $this->Record = array();
     if ($this->conn) {
         @($this->res = sybase_query($query, $this->conn));
         if ($this->res) {
             $this->cur = $offset;
             // Push cursor to appropriate row in case next_record() is used
             if ($offset > 0) {
                 @sybase_data_seek($this->res, $offset);
             }
             $this->vcur = $offset + $rows - 1;
             return $this->res;
         } else {
             trigger_error("Error executing query: {$query}");
             return -1;
         }
     } else {
         return -1;
     }
 }
开发者ID:ljvblfz,项目名称:mysoftwarebrasil,代码行数:25,代码来源:class.DCL_DB_sybase.inc.php


注:本文中的sybase_data_seek函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。