我尝试使用类似于以下PHP代码的东西从Firebird数据库中检索项目。
$sql = "select P_1,P_2,P_3 from p_players('$playerid', '')";
//This sends the SQL select statement to the db
$rs=$db->Execute($sql);
//This converts the SQL statement to an array
$result = $rs->GetArray();
echo $result;
但是,无论我选择什么作为要查询的数据库,我收到的echo结果都会返回“Array”。我究竟做错了什么?感谢您的帮助。
答案 0 :(得分:0)
试试这个:
$sql = "select P_1,P_2,P_3 from p_players('$playerid', '')";
//This sends the SQL select statement to the db
$rs=$db->Execute($sql);
//This converts the SQL statement to an array
$result = $rs->GetArray();
print_r $result;