- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我还没有找到使用 json_set
更新 mysql
上的表的良好语法。
你能给我一些帮助吗?我想更新并了解此查询的良好语法。
public function mkjson()
{
$friends = '"pachou", "eric", "francis"';
$tagfriendsjson = json_encode($friends);
try
{
include('connect.ini');
}
catch (Exception $e)
{
die('Erreur : '.$e->getMessage());
}
$ver = 'SELECT * FROM tagusers WHERE tag_users_id="'.$_SESSION['tagusersid'].'"';
$ask = $bdd->query($ver);
$ans = $ask->fetch();
if (empty($ans['tag_friends']))
{
$req = $bdd->prepare('UPDATE tagusers SET = {"1": "pachou", "2": "eric", "3": "francis", "4": "Henry"} WHERE tag_users_id="'.$_SESSION['tagusersid'].'" ');
$req->execute();
}
else
{
}
return true;
}
: 未捕获的 PDOException: SQLSTATE[42000]: 语法错误或访问冲突: 1064 您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,了解在/var/www/tagmeyou.com/php/第 1 行 '= {"4": "Henry"} WHERE tag_users_id="2"' 附近使用的正确语法class.Friendlist.php:34 堆栈跟踪: #0/var/www/tagmeyou.com/php/class.Friendlist.php(34): PDOStatement->execute() #1/var/www/tagmeyou.com/fr/vues/body/inputtag.php(23): Friendlist->mkjson() #2/var/www/tagmeyou.com/fr/vues/body/bodytagscreen.php(10): include('/var/www/tagmey...') #3/var/www/tagmeyou.com/fr/vues/tagscreen.php(34): include('/var/www/tagmey...') #4 {main} 抛出
最佳答案
此查询中有两个错误:
UPDATE tagusers SET = {"1": "pachou", "2": "eric", "3": "francis", "4": "Henry"} WHERE tag_users_id="'.$_SESSION['tagusersid'].'"
首先,没有设置列名称(在 SET
和 =
之间)。其次,JSON 应该用单引号引起来。尝试将该行更改为
$req = $bdd->prepare('UPDATE tagusers SET colname = \'"1": "pachou", "2": "eric", "3": "francis", "4": "Henry"}\' WHERE tag_users_id="'.$_SESSION['tagusersid'].'" ');
其中 colname
是您要存储 JSON 的列。
关于mysql - 我想知道 mysql pdo json 的良好语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49704804/
嗨,我正在考虑开发一种文件传输程序,想知道我是否想要尽可能好的加密,我应该使用什么? 我会用 C# 开发它,所以我可以访问 .net 库 :P在我的 usb 上有一个证书来访问服务器是没有问题的,如果
我创建的这个计算两个数组的交集是线性的方法的复杂度(在良好、平均、最差的情况下)? O(n) public void getInt(int[] a,int[] b){ int i=0; int
我已经能够使用 RTCPeerConnection.getStats() API 获得 WebRTC 音频调用的各种统计信息(抖动、RTT、丢包等)。 我需要将整体通话质量评为优秀、良好、一般或差。
基本问题: 如果我正在讲述/修改数据,我应该通过索引硬编码索引访问文件的元素,即 targetFile.getElement(5);通过硬编码标识符(内部翻译成索引),即 target.getElem
在 Linux 上,我想知道要调用什么“C”API 来获取每个 CPU 的统计信息。 我知道并且可以从我的应用程序中读取 /proc/loadavg,但这是系统范围的负载平均值,而不是每个 CPU 的
在客户端浏览器中使用 fetch api,GET 或 POST 没有问题,但 fetch 和 DELETE 有问题。它似乎将 DELETE 请求方法更改为 OPTIONS。 大多数研究表明是一个cor
我是一名优秀的程序员,十分优秀!