Mar032012
小东西 ,利用mysqli批量替换数据库表前缀[原创]
<?php
header ( 'http-equiv="Content-Type" content="text/html; charset=utf-8"' );
$DB_host = "localhost"; //数据库主机
$DB_user = "root"; //数据库用户
$DB_psw = "root3306"; //数据库密码
$DB_datebase = "gk_yue39_com"; //数据库名
$DB_charset = "utf8"; //数据库字符集
$dbprefix="yue392_com_";
$new_dbprefix="yue39_com_";
$db = new mysqli ( $DB_host, $DB_...阅读全文
抢沙发
Feb272012
php连接mssql的一些方法总结
为了能让PHP连接MSSQL,系统需要安装MSSQL,PHP,且在PHP.ini中的配置中,将
;extension=php_mssql.dll前面的;去掉
1.连接MSSQL
$conn=mssql_connect(“实例名或者服务器IP”,”用户名”,”密码”);
//测试连接
if($conn)
{
echo “连接成功”;
}
2.选择要连接的数据库
...阅读全文
Feb262012
PHP mysqli扩展库操作(1)
<?php
header ( 'http-equiv="Content-Type" content="text/html; charset=utf-8"' );
$DB_host = "localhost"; //数据库主机
$DB_user = "root"; //数据库用户
$DB_psw = "sqlroot"; //数据库密码
$DB_datebase = "massageboard"; //数据库名
$DB_charset = "utf8"; //数据库字符集
$db = new mysqli ( $DB_host, $DB_user, $DB_psw ); //实例化对象
//检查连接
if (m...阅读全文
Feb262012
fetch_array,fetch_row,fetch_assoc,fetch_object的区别
fetch_array,fetch_row,fetch_assoc,fetch_object这几个是从mysql查询结果集中取得数据的函数,让我们来看看他们之间的区别,自己记录下,便于日后遗忘了好查询,下面通过一个实例开始分析:
分析:
mysql_fetch_row,这个函数是从结果集中取一行作为枚举数据,从和指定的结果标识关联的结果集中取得一行数据并作为数组返回。每个结 果的列储存在一个数组的单元中,偏移量从 0 开始。 注意...阅读全文
Feb252012
mysqli 类的使用
mysqli 类的使用
目录
mysqli_affected_rows -返回一个MySQL操作受影响的行数
mysqli_autocommit -开启或关闭 autocommit 数据库修改
mysqli_bind_param -别名mysqli_stmt_bind_param ( )
mysqli_bind_result -别名mysqli_stmt_bind_result ( )
mysqli_change_user -更改指定数据库连接的用户
mysqli_character_set_name -返回数据库连接的默认字符集
mysqli_client_encoding -别名my...阅读全文
Feb012012
MySQL常用查询语句
多表联查
select a.typeid, a.reporterid, b.typename, c.name from `fsosu_article` as a inner join `fsosu_type` as b on(a.typeid=b.typeid) inner join `fsosu_reporter` as c on(c.id=a.reporterid) where c.status=1
复制一个字段内容到另一字段
update `fsosu_article` set title2=title
随机更新字段中的值
update `fsosu_article` set rank=FLOOR(RAND()*100)
inner join(等值连...阅读全文
Jan302012
WAMP phpMyadmin MySQL 的 密码设置
方法一:把密码加入配置文件,c:/wmap/apps/phpmyadmin/config.inc.php
$cfg[‘Servers’][$i][‘password’] = ‘xxxx’;
//这行默认下是密码为空,加入你刚刚修改的密码
方法二:关闭自动登入,依然通过修改c:/wmap/apps/phpmyadmin/config.inc.php
$cfg[‘blowfish_secret’] = ‘cpzhanrock’; //必须加入任意serect字符串。
/* Se...阅读全文
Jan252012