加载获取查询

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了加载获取查询相关的知识,希望对你有一定的参考价值。

  1. <?php
  2.  
  3. function loadFetch( $assoc = false, $sql = null )
  4. {
  5.  
  6. unset( $query_fetch );
  7. empty( $query_fetch );
  8.  
  9. $sql = ( is_null($sql) && isset($query_result) ) ? $query_result : $sql;
  10. $fetchType = ( $assoc ) ? mysql_ASSOC : MYSQL_NUM;
  11.  
  12. if ( !empty($sql) )
  13. {
  14. while ( $fetch = mysql_fetch_array($sql, $fetchType) )
  15. {
  16. $query_result[] = $fetch;
  17. }
  18.  
  19. if ( !is_array($query_fetch) )
  20. {
  21. throw new Exception( "An error occured while fetching the array" . mysql_error() );
  22. } else {
  23. return $query_result;
  24. }
  25. }
  26.  
  27. }
  28.  
  29. ?>

以上是关于加载获取查询的主要内容,如果未能解决你的问题,请参考以下文章

根据带有加载更多按钮的自定义查询获取 WordPress 帖子

从延迟加载的模型中获取 activerecord 关系

四十二:数据库之SQLAlchemy之数据查询懒加载技术

Rails 急切加载

无法使用 thymeleaf 从 mysql 数据库加载 chrome 中的数据,但在控制台中获取查询

MyBatis 懒加载