我试图在我的个人计算机上第一次设置WAMPServer来做一些WordPress工作。当我尝试使用root登录登录phpadmin时,出现错误屏幕。错误读取如下:
SQL查询:编辑
SET lc_messages =' en_US';
MySQL说:1193 - 未知系统变量' lc_messages'
我已尝试运行PHP版本7.0.10和5.6.25,但两者都发生了错误。
我正在运行MySQL 5.7.14版
我已尝试查看StackOverflow论坛,其中包含相同的问题,链接here,但没有任何建议的修复程序适用于我,因为我正在运行phpMyAdmin的更新版本
答案 0 :(得分:1)
该参数的正确名称为public void disconnectDeviceSelected() {
peripheralTextView.append("Disconnecting from device\n");
bluetoothGatt.disconnect();
}
private void displayGattServices(List<BluetoothGattService> gattServices) {
if (gattServices == null) return;
// Loops through available GATT Services.
for (BluetoothGattService gattService : gattServices) {
final String uuid = gattService.getUuid().toString();
System.out.println("Service discovered: " + uuid);
MainActivity.this.runOnUiThread(new Runnable() {
public void run() {
peripheralTextView.append("Service disovered: "+uuid+"\n");
}
});
new ArrayList<HashMap<String, String>>();
List<BluetoothGattCharacteristic> gattCharacteristics =
gattService.getCharacteristics();
// Loops through available Characteristics.
for (BluetoothGattCharacteristic gattCharacteristic :
gattCharacteristics) {
final String charUuid = gattCharacteristic.getUuid().toString();
System.out.println("Characteristic discovered for service: " + charUuid);
MainActivity.this.runOnUiThread(new Runnable() {
public void run() {
peripheralTextView.append("Characteristic discovered for service: "+charUuid+"\n");
}
});
}
}
}
,请注意连字符,而不是下划线。
你修改了'my.ini'中的任何内容吗?
RE:您的评论
然后,您的系统可能还有另一个MySQL运行或者只是一个lc-messages
文件。
搜索my.ini
,如果您在my.ini
或\wamp\
文件夹中的任何位置找到它,请删除或重命名。在wamp文件夹结构之外不应该有一个。
答案 1 :(得分:0)
为我工作
在我的系统上,正在运行另一个SQL SERVER ,这就是问题所在。
只需转到WAMPMANAGER-> MySQL->使用3306以外的端口
(在我的情况下,Wamp Manager自动选择端口3308)
单击确定,然后重新启动wamp服务器。