我有一个由统一域名托管的网站。 MySQLi可以正常工作,但我将其更改为PDO。现在,我无法使数据库正常工作。我尝试将$ host更改为127.0.0.1,并更改为localhost。如果使用本地主机,则会收到错误<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="e.alasse.opencv">
<uses-permission android:name="android.permission.CAMERA" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".OpenCamera">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name= ".MainActivity"/>
</application>
</manifest>
。
如果我使用127.0.0.1,则会得到SQLSTATE[HY000] [2002] No such file or directory
。
我也尝试过更改归类,但仍然无法正常工作。在我在Hostinger上的其他域上,它运行良好。
SQLSTATE[HY000] [2002] Connection refused