1

基本上,我一直在进行大量搜索,但仍然没有找到任何解决问题的方法。

我正在尝试将我的应用程序连接到由公司在外部服务器上运行和托管的数据库(我们已经将此数据库用于我们在用户计算机上运行的应用程序)

我想查询数据库的登录信息,这样当用户在我的应用程序上输入他的用户名和密码时,它会将这些详细信息与数据库中的详细信息进行比较,并回复,说明这些凭据是否正确,并允许用户查看不同的页面,该页面将从数据库中为该用户提取特定详细信息(但这是我将来需要解决的问题)

我目前的主要问题是,我似乎无法让应用程序能够连接到数据库,目前我正在使用 WAMP 服务器来托管我制作的 php 文件......

注意:我将使用“user”和“pass”而不是我拥有的实际用户名和密码

<?php

//connecting
//server, username, password, database

$dbhost = 'external ip entered here';
$dbuser = 'user';
$dbpass = 'pass';
$dbdb   = 'datbasename';

//connect to mySQL 
$connect = mysql_connect ($dbhost,$dbuser,$dbpass) or die("Connection error");

//select the database
mysql_select_db($dbdb) or die ("database selection error");

//Retrieve the login details via POST
$username=$_POST['username'];
$password=$_POST['password'];

//Query the table
$query="SELECT llogint,lpasint FROM TCHAUFF (nolock) 
WHERE llogint='$username' AND lpasint='$password'";

//check if there any results returned
$num = mysql_num_rows($query);

//if a record was found matching the details entered in the query
if($num == 1){
//create a while loop that places the returned data into an array
while($list=mysql_fetch_assoc($query)){

//store the returned data into variable
$output = $list;

//encode the returned data in JSON format
echo json_encode( $output );
//close the connection
mysql_close();
}}
?>

老实说,我认为他们的 php 文件没有任何问题,但如果是这样,请纠正我哈哈!

我遇到的问题是,如果我尝试从 WAMP 运行这个 php 文件,方法是将文件放入 www 文件夹并转到 localhost/androidtest.php

我收到一条错误消息警告:mysql_connect():无法建立连接,因为目标机器主动拒绝了它

我已经尝试了所有我能找到的解决方案,

将此信息添加到 config.inc.php 文件

/* Server: UserSeaCogi[1] */
$i++;
$cfg['Servers'][$i]['verbose'] = 'external database';
$cfg['Servers'][$i]['host'] = 'external ip entered here';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = 'user';
$cfg['Servers'][$i]['password'] = 'pass';
$cfg['Servers'][$i]['AllowNoPassword'] = true;

我失去了想法!

我在 my.ini 文件中添加了 bind-address = 0.0.0.0

但我认为这与我设置 WAMP 的方式有关,但我似乎找不到要改变的地方。

我也知道我绝对可以访问数据库,因为如果我将它添加到 Visual Studio,我可以从中运行查询......需要注意的一点......它是 2003 年的服务器......我知道这对视觉有一定的限制工作室不确定安卓?

提前致谢

4

1 回答 1

0

在你的 php 代码中

mysql_select_db($dbdb) 

应该

mysql_select_db($dbdb,$connect) ;

然后添加这些行

$result = mysql_query($query, $connect);
$num = mysql_num_rows($result);
于 2013-05-22T12:52:56.617 回答