php无法选择数据库 php选择数据库的函数

PHP选择数据库失败亲!你把127.0.0.1换成 localhost,然后在看一下行否!如果换不行的话可能是你的Apache没有开启! 你可以到这个网站上看一下PHP数据库的连接! 希望能够帮到你!
php能够连接sybase但是无法选择sybase数据库以下测试php连接sybase数据库php无法选择数据库,并输出数据库内表php无法选择数据库的记录数的例子php无法选择数据库 , 仅供参考:
?php
//phpinfo();
【php无法选择数据库 php选择数据库的函数】 $link = @sybase_connect('test', 'sa', '')
or die("Could not connect !");//连接数据库,第一空必须写服务名称,不能是ip;
echo "Connected successfullybr";
$db = @sybase_select_db("andkylee",$link) //连接数据库
ordie("数据库没有选择");
echo "数据库选择成功br";
$sql= "select user_name(uid) as owner,* from dbo.sysobjects where type='U' order by id";
$rs = sybase_query($sql,$link); //查询表
if (!$rs)
{
echo "SQL:".$sql."执行失败php无法选择数据库!";
exit;
}
//$sybase = sybase_fetch_array($rs);
//print_r($sybase);//结束
echo 'table border="1"trtdID/tdtdNAME/tdtdCOUNT(*)/td';
while ($row = sybase_fetch_array($rs)) {
$id = $row["id"];
$name = $row["name"];
$owner = $row["owner"];
$sql_tablecount = "select count(*) as cnt from ".$owner.".".$name;
$rs_tablecount = sybase_query($sql_tablecount,$link);
$row_tablecount = sybase_fetch_array($rs_tablecount);
$cnt = $row_tablecount["cnt"];
echo 'trtd'.$id.'/tdtd'.$name.'/tdtd'.$cnt.'/td/tr';
}
echo '/table';
sybase_free_result($rs);
sybase_close($link);
?
php连接数据库的类,但是选择数据库的时候总是出错,怎么回事呢?构造函数错咯
function __construct($host,$user,$pass,$database){
$this - host=$host;
$this - user=$user;
$this - pass=$pass;
$this - database=$database;
// echo $db;
$conn = mysql_connect($host,$user,$pass);
$db = mysql_select_db($this - database,$conn);
if($db){
echo "数据库成功";
}else{
echo "数据库失败";
}
}
//给你改咯哈这个类
class register{
private $host;//The host address
private $user;//The user
private $pass;//The password
private $database;//The database
private $conn;
//Connect with the database
function __construct($host,$user,$pass,$database){
$this - host=$host;
$this - user=$user;
$this - pass=$pass;
$this - database=$database;
$conn = mysql_connect($host,$user,$pass)or die("连接失败!");
mysql_select_db($this - database,$conn) or die("选择数据库失败!");
$this-conn=$conn;
}
//Add a user
function addUser($data){
$dataObj=$data;//类里边不要把变量写得太死
$userInfo=json_decode($dataObj,true);//change the data from the type of json to array.
$username=$userInfo[0];
$password=$userInfo[1];
$repassword =$userInfo[2];
//The sql to add the new user
@$sql_addUser = EOF
insert into users values("","$username","$password","$repassword");
EOF;
// var_dump($sql_addUser);break;
$result = mysql_query($sql_addUser,$this-conn);//指定连接,少些麻烦
// var_dump($result);break;
if($result){
echo1;
}else{
echo 0;
}
}
}
WordPress本地搭建 , 用phpstudy出现“不能选择数据库 我们能够连接到数据库服务器 。”请确定你所填写的MYSQL连接账号有权访问/修改而且存在你所指定的数据库,否则程序就会报错
关于php无法选择数据库和php选择数据库的函数的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息 , 记得收藏关注本站 。

    推荐阅读