我正在使用template<typename T>
T test()
{
int integer = 42;
float floateger = 42.42;
if (std::is_same<T, int>::value)
return integer;
else
return floateger;
}
int main()
{
int integer = test<int>();
cout << "INTEGER: " << integer << endl;
}
服务器WAMP
。
有没有办法从我的本地phpMyAdmin连接到远程数据库?
我有远程数据库的凭据,但我找不到如何在本地面板中添加连接的方法。
我在新内容中发现它与某些MySQL Version : 5.6.17
相关,或称为config file
,但无法找到有关它的详细信息。
答案 0 :(得分:2)
在phpMyAdmin文件夹下的config.inc.php
中,将$cfg['Servers'][$i]['host']
的值从'localhost'
更改为远程数据库的IP地址。
有关详细信息,请参阅http://docs.phpmyadmin.net/en/latest/config.html#cfg_Servers_host。