SQL Fiddle供参考和表架构
我正在使用 WebClient 读取和写入远程数据库(MySql v5.5)。我正在尝试使用此查询在表中写入:
string query "INSERT INTO ProgettoGruppi (`id`, `progettoID`, `gruppoID`, `orePreviste`, `oreAttuali`, `stato`) VALUES (NULL, 1, 2, 0, 0, 'test3')"
这是我的数据库的答案:
“数据库访问失败:您的 SQL 语法有错误;请查看与您的 MySQL 服务器版本相对应的手册,以在第 1 行的 '\'test3\')' 附近使用正确的语法”
如果我用 NULL 替换 'test3' 它工作正常。
在字符串中写入“test3”的正确格式是什么?
这是我正在使用的代码:
string PASSWORD_STRING = "&password=xxx";
string USER_STRING = "?user=xxx";
string query1 = "INSERT INTO ProgettoGruppi (`id`, `progettoID`, `gruppoID`, `orePreviste`, `oreAttuali`, `stato`) VALUES (NULL, 1, 2, 0, 0, 'test3')";
string query2 = @"&query=" + query1;
byte[] responseArray = threadClient.DownloadData(@"http://www.xxxxxx.it/getDataFromMySql.php" + USER_STRING + PASSWORD_STRING + query2);
这是使用的 PHP 代码:
$c_query = $_GET['query'];
$tSql = $c_query;
$result = mysql_query($tSql)
if (!$result) die ("Database access failed: " . mysql_error());
$rows = mysql_num_rows($result);
for ($j = 0 ; $j < $rows ; ++$j)
{
$Filed[$j] = mysql_fetch_row($result);
}
$json_string = json_encode($Filed);
echo $json_string ;