我正在尝试使用Arduino将一些数据发送到我的数据库。 MariaDB已安装在我的PC中。不幸的是,我无法连接。我的第一个疑问是服务器地址应该与我的PC IP地址相同吗?有人可以帮忙吗。
if (conn.connect(server_addr, 3306, user, password))
{ Serial.println("Connecting to database server...");
delay(1000);
// Initiate the query class instance
MySQL_Cursor *cur_mem = new MySQL_Cursor(&conn);
dtostrf(voltage, 6, 2, voltageNew);
dtostrf(current, 6, 4, currentNew);
sprintf(querymessuremnt, INSERT_measurements,voltageNew, currentNew);
// Execute the query
cur_mem->execute(querybuffer);
delete cur_mem;
Serial.println("Data recorded.");
}
else
Serial.println("Connection to DB failed.");
conn.close();
}
答案 0 :(得分:0)
要添加为服务器名称的内容取决于触发代码的位置。如果您登录到Arduino,则应该使用“ localhost”,因为我假设您正在Arduino上运行MariaDB。
如果您怀疑有端口问题导致脚本无法正常运行,请尝试将“ localhost”更改为“ 127.0.0.1”。如果您有防火墙,是否允许端口3306上的数据?
如果您正在从另一台机器上运行代码,但想访问Arduino / MariaDB,那么在那台机器上,您将使用服务器名[ip-address至arduino机器]更新代码。