- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Mysql数据库操作类( 1127版,提供源码下载 )由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
Mysql.class.php 下载 。
复制代码代码如下
<?php class Mysql { private $db_host; //主机地址 private $db_user; //用户名 private $db_pass; //连接密码 private $db_name; //名称 private $db_charset; //编码 private $conn; public $debug=false;//调试开关,默认关闭 private $query_id; //用于判断sql语句是否执行成功 private $result; //结果集 private $num_rows; //结果集中行的数目,仅对select有效 private $insert_id; //上一步 INSERT 操作产生的 ID // 构造/析构函数 function __construct ($db_host,$db_user,$db_pass,$db_name,$db_charset,$conn) { $this->db_host = $db_host ; $this->db_user = $db_user ; $this->db_pass = $db_pass ; $this->db_name = $db_name ; $this->db_charset = $db_charset ; $this->conn = $conn ; $this->connect(); } function __destruct () { @mysql_close($this->conn); } // 连接/选择数据库 public function connect () { if ($this->conn == 'pconn') { @$this->conn = mysql_pconnect($this->db_host,$this->db_user,$this->db_pass); } else { @$this->conn = mysql_connect($this->db_host,$this->db_user,$this->db_pass); } if (!$this->conn) { $this->show_error('数据库-连接失败:用户名或密码错误!'); } if (!@mysql_select_db($this->db_name,$this->conn)) { $this->show_error("数据库-选择失败:数据库 $this->db_name 不可用"); } mysql_query("SET NAMES $this->db_charset"); return $this->conn; } // query方法 public function query ($sql) { if ($this->query_id) $this->free_result(); $this->query_id = @mysql_query($sql,$this->conn); if (!$this->query_id) $this->show_error("SQL语句 <b>\"$sql\"</b> 执行时遇到错误"); return $this->query_id; } // 显示详细错误信息 public function show_error ($msg) { if($this->debug){ $errinfo = mysql_error(); echo "错误:$msg <br/> 返回:$errinfo<p>"; }else{ echo '<p>出现错误!<p>'; } } // 获得query执行成功与否的信息 public function get_query_info($info){ if ($this->query_id) { echo $info; } } // 查询所有 public function findall ($table_name) { $this->query("select * from $table_name"); } // mysql_fetch_array public function fetch_array () { if ($this->query_id) { $this->result = mysql_fetch_array($this->query_id); return $this->result; } } // ...... public function fetch_assoc () { if ($this->query_id) { $this->result = mysql_fetch_assoc($this->query_id); return $this->result; } } public function fetch_row () { if ($this->query_id) { $this->result = mysql_fetch_row($this->query_id); return $this->result; } } public function fetch_object () { if ($this->query_id) { $this->result = mysql_fetch_object($this->query_id); return $this->result; } } // 获取 num_rows public function num_rows () { if ($this->query_id) { $this->num_rows = mysql_num_rows($this->query_id); return $this->num_rows; } } // 获取 insert_id public function insert_id () { return $this->insert_id = mysql_insert_id(); } // 显示共有多少张表 public function show_tables () { $this->query("show tables"); if ($this->query_id) { echo "数据库 $this->db_name 共有 ".$this->num_rows($this->query_id)." 张表<br/>"; $i = 1; while ($row = $this->fetch_array($this->query_id)){ echo "$i -- $row[0]<br/>"; $i ++; } } } // 显示共有多少个数据库 public function show_dbs(){ $this->query("show databases"); if ($this->query_id) { echo "共有数据库 ".$this->num_rows($this->query_id)." 个<br/>"; $i = 1; while ($this->row = $this->fetch_array($this->query_id)){ echo "$i -- ".$this->row[Database]."<br />"; $i ++; } } } // 删除数据库:返回删除结果 public function drop_db ($db_name='') { if ($db_name == '') { $db_name = $this->db_name;//默认删除当前数据库 $this->query("DROP DATABASE $db_name"); }else { $this->query("DROP DATABASE $db_name"); } if ($this->query_id) { return "数据库 $db_name 删除成功"; }else { $this->show_error("数据库 $db_name 删除失败"); } } // 删除数据表:返回删除结果 public function drop_table ($table_name) { $this->query("DROP TABLE $table_name"); if ($this->query_id) { return "数据表 $table_name 删除成功"; }else { $this->show_error("数据表 $table_name 删除失败"); } } // 创建数据库 public function create_db ($db_name) { $this->query("CREATE DATABASE $db_name"); if($this->query_id){ return "数据库 $db_name 创建成功"; }else { $this->show_error("数据库 $db_name 创建失败"); } } // 获取数据库版本 public function get_info(){ echo mysql_get_server_info(); } // 释放内存 public function free_result () { if ( @mysql_free_result($this->query_id) ) unset ($this->result); $this->query_id = 0; } } // End class ?> 。
最后此篇关于Mysql数据库操作类( 1127版,提供源码下载 )的文章就讲到这里了,如果你想了解更多关于Mysql数据库操作类( 1127版,提供源码下载 )的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
从开发者的角度来看,Mac 版 Safari 和 Windows 版 Safari 有何不同? 我认为可以归结为评估两者之间的差异(如果我遗漏了什么,请更正): - 布局渲染 - Javascript
正如标题所说:Android 版 Chrome 和 iOS 版 Chrome 有什么区别。 我对两者进行了一些研究,但找不到关于该主题的任何最新信息。进行这项研究的原因是因为我正在研究某些 Web A
我有以下脚本可以获取您的地理位置并重定向您到 Google map : (function(){ navigator.geolocation.getCurrentPosition(function(p
我负责修复导航栏显示比应有的低 1 像素的问题。 查看网站后,我无法找到所报告的问题,直到我在 Mac 上进行了检查。 Firefox、Safari 等在 Mac 上运行良好,但 Chrome 是导致
我是典型的 .NET 开发人员(C# 是我的第一语言),几年前转向 ASP.NET MVC。现在是我职业生涯发生重大变化的新时期。如果我们看看 Web 开发的前景,我们可以看到新技术如何占领世界,而其
Grails 2.0 项目目前带有资源插件 1.1.5,它似乎有几个依赖问题(例如,参见 this post 的答案)。我正在使用 IntelliJ,虽然我将 BuildConfig.groovy 更
我有一个支持 android 2.3.3 的 android 项目。 但它也支持 sdk 版本 17。当我创建一个新 Activity 时,它会创建一个特定于版本 17 的 Activity 。 如何
有没有人有在 Android 设备上使用 pjsip 的经验?我看到几个非商业/测试项目使用它,所以我假设它可以完成,但没有一个有很好的记录。我认为 pjsip-jni 项目是一个不错的起点,但基本上
谁能告诉我在 Xcode (iPhone) 中执行以下操作的最佳方法是什么。 我有一个主导航屏幕,上面有一些按钮。当用户单击任何按钮时,他们将被带到带有更多选项按钮的子导航屏幕。在这里,他们单击任意一
我正在使用 JBoss Embedded beta3.SP10 版本,我正面临一个应该在某些 Hibernate 版本中修复的持久性错误。可悲的是,我不知道我的 JBoss Embedded 中使用的
我想在 android 中使用简单的 snmp get。我找到了 java 的代码并尝试在 android 中使用它。我还附加了 snmp4j.jar 文件用于 android。但是我得到了 Null
我的实现目标是: 可以通过一个或多个关键词搜索到文章。 可以通过文章的关键词列表查询到其相关文章。 查询到的结果依据相关程度降序排列。 查询速度要够快。(理论上关键词检索比全文检索要快很多的
我正在尝试创建一个允许我将视频从 iPhone 流式传输到服务器的应用程序。我目前关于如何做到这一点的理论是创建一系列 FFMpeg 文件并将它们发送到服务器。据我所知,我已经编译了 FFMpeg图书
这个问题在这里已经有了答案: Login failed in github for window (5 个回答) 7年前关闭。 当我安装 GitHub 时,我无法使用我的帐户凭据登录。 我收到错误 L
我需要在我的 iPad 项目中使用 Three20。我想知道 iPhone 版本的 Three20 项目是否可以直接在 iPad 上使用,还是应该等待这个时间线完成: http://three20.i
有人能做到吗 http://www.surina.net/soundtouch/适用于 iPhone? 简单的 Xcode 演示会很有帮助。 我只想通过一些音调操作来播放音效。谢谢克里斯 最佳答案 使
如何在iPhone中使用“speex”进行音频编码/解码?我没有在项目中添加框架。 最佳答案 这个blog entry: Compile Speex For iPhone克利夫顿·克雷格(Clifto
我想知道bonjour是公共(public)API还是私有(private)API?我们可以直接在我们的应用程序中使用它吗? 最佳答案 Bonjour 由 NSNetServices 和 CFNetS
••••• 已解决•••••该应用程序可用。只是花了一些时间才出现。我之所以将其视为测试版,是因为我的 Google 帐户用于 alpha 测试。如果您遇到同样的问题,只需从测试人员中删除您的帐户并等
我是 Android 编程初学者。 我在使用 Android 下载文件时遇到问题 我使用了 Httpost、Httpget 和 hhtpurlconnection前两个根本不起作用第三个两次无法下载
我是一名优秀的程序员,十分优秀!