我正在尝试将 IP 地址存储到我的数据库中,我正在使用INET_ATON
如下,
$sql = "
INSERT INTO pin (
page_id,
user_id,
pc_name,
ip,
geolocation,
created_on
)VALUES(
?,
?,
?,
?,
?,
NOW()
)";
$result = $this->connection->executeSQL($sql,array(
$this->page_id,
$this->user_id,
$this->getComputerName(),
'INET_ATON("123.136.106.104")',
$this->getGeoLocation()
));
但我无法将其转换或保存到ip
数据库中的字段中。我得到0
而不是数字。
我应该怎么办?我用 SQL 做错了什么?