51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 1668|回复: 2
打印 上一主题 下一主题

[原创] LR测mysql出现错误

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2009-7-9 14:41:23 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
出现的错误:
Action.c(54): 错误: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '})' at line 1
有没遇到类似的,请大家帮忙看看,谢谢!
Action()   
{   
  int rc;   
  int db_connection; // 数据库连接   
  int query_result; // 查询结果集 MYSQL_RES   
  char** result_row; // 查询的数据行
   
  char *server = "192.168.0.58";   
  char *user = "cat";   
  char *password = "000000";   
  char *database = "test";   
  int port = 3306;   
  int unix_socket = NULL;   
  int flags = 0;   
   
  // 找到libmysql.dll的所在位置.   
  rc = lr_load_dll("C:\\Program Files\\MySQL\\MySQL Server 5.1\\bin\\libmysql.dll");   
  if (rc != 0) {   
    lr_error_message("Could not load libmysql.dll");   
    lr_abort();   
  }   
   
  // 创建MySQL对象   
  db_connection = mysql_init(NULL);   
  if (db_connection == NULL) {   
    lr_error_message("Insufficient memory");   
    lr_abort();   
  }   
   
  // 连接到MySQL数据库   
  rc = mysql_real_connect(db_connection, server, user, password, database, port, unix_socket, flags);   
  if (rc == NULL) {   
    lr_error_message("%s", mysql_error(db_connection));   
    mysql_close(db_connection);   
    lr_abort();   
  }   
   
  // 向数据库插入数据   
  // 此处的 {ORDER_ID} 是一个参数,简单测试时可以用一个常数代替   
  lr_save_string (lr_eval_string("INSERT INTO test_data (order_id) VALUES ({ORDER_ID})"),"paramInsertQuery");   
  rc = mysql_query(db_connection, lr_eval_string("{paramInsertQuery}"));   
  if (rc != 0) {   
    lr_error_message("%s", mysql_error(db_connection));   
    mysql_close(db_connection);   
    lr_abort();   
  }   
   
  // 从数据库读取一个数据并显示   
  rc = mysql_query(db_connection, "SELECT order_id FROM test_data WHERE status IS FALSE LIMIT 1");   
  if (rc != 0) {   
    lr_error_message("%s", mysql_error(db_connection));   
    mysql_close(db_connection);   
    lr_abort();   
  }   
  query_result = mysql_use_result(db_connection);   
  if (query_result == NULL) {   
    lr_error_message("%s", mysql_error(db_connection));   
    mysql_free_result(query_result);   
    mysql_close(db_connection);   
    lr_abort();   
  }   
  // 如果结果集包含多行数据,需要多次调用 mysql_fetch_row 直到返回NULL   
  result_row = (char **)mysql_fetch_row(query_result);   
  if (result_row == NULL) {   
    lr_error_message("Did not expect the result set to be empty");   
    mysql_free_result(query_result);   
    mysql_close(db_connection);   
    lr_abort();   
  }   
  // 保存参数,用于删除这行数据   
  lr_save_string(result_row[0], "paramOrderID");   
  lr_output_message("Order ID is: %s", lr_eval_string("{paramOrderID}"));   
  mysql_free_result(query_result);   
   
  // 在事务里更新一行数据,需要用InnoDB引擎   
  rc = mysql_query(db_connection, "BEGIN"); //启动事务   
  if (rc != 0) {   
    lr_error_message("%s", mysql_error(db_connection));   
    mysql_close(db_connection);   
    lr_abort();   
  }   
  // 使用 "FOR UPDATE" 锁住要更新的数据行   
  rc = mysql_query(db_connection, "SELECT order_id FROM test_data WHERE status IS FALSE LIMIT 1 FOR UPDATE");   
  if (rc != 0) {   
    lr_error_message("%s", mysql_error(db_connection));   
    mysql_close(db_connection);   
    lr_abort();   
  }   
  query_result = mysql_use_result(db_connection);   
  if (query_result == NULL) {   
    lr_error_message("%s", mysql_error(db_connection));   
    mysql_free_result(query_result);   
    mysql_close(db_connection);   
    lr_abort();   
  }   
  result_row = (char **)mysql_fetch_row(query_result);   
  if (result_row == NULL) {   
    lr_error_message("没有查询到结果");   
    mysql_free_result(query_result);   
    mysql_close(db_connection);   
    lr_abort();   
  }   
  lr_save_string(result_row[0], "paramOrderID");   
  lr_output_message("Order ID is: %s", lr_eval_string("{paramOrderID}"));   
  mysql_free_result(query_result);   
  lr_save_string(lr_eval_string("UPDATE test_data SET status=TRUE, date_used=NOW() WHERE order_id='{paramOrderID}'"),"paramUpdateQuery");   
  rc = mysql_query(db_connection, lr_eval_string("{paramUpdateQuery}"));   
  if (rc != 0) {   
    lr_error_message("%s", mysql_error(db_connection));   
    mysql_close(db_connection);   
    lr_abort();   
  }   
  rc = mysql_query(db_connection, "COMMIT"); // 提交事务   
  if (rc != 0) {   
    lr_error_message("%s", mysql_error(db_connection));   
    mysql_close(db_connection);   
    lr_abort();   
  }   
   
  // 再次查找数据,应该为空了,因为前面的事务更新了标志   
  rc = mysql_query(db_connection, "SELECT order_id FROM test_data WHERE status IS FALSE LIMIT 1");   
  if (rc != 0) {   
    lr_error_message("%s", mysql_error(db_connection));   
    mysql_close(db_connection);   
    lr_abort();   
  }   
  query_result = mysql_use_result(db_connection);   
  if (query_result == NULL) {   
    lr_error_message("%s", mysql_error(db_connection));   
    mysql_free_result(query_result);   
    mysql_close(db_connection);   
    lr_abort();   
  }   
  result_row = (char **)mysql_fetch_row(query_result);   
  if (result_row == NULL) {   
    lr_output_message("Result set is empty as expected");   
    mysql_free_result(query_result);   
  } else {   
    lr_error_message("Did not expect the result set to contain any rows");   
    mysql_free_result(query_result);   
    mysql_close(db_connection);   
    lr_abort();   
  }   
   
  // 删除数据   
  lr_save_string(lr_eval_string("DELETE FROM test_data WHERE order_id = '{paramOrderID}'"),"paramDeleteQuery");   
  rc = mysql_query(db_connection, lr_eval_string("{paramDeleteQuery}"));   
  if (rc != 0) {   
    lr_error_message("%s", mysql_error(db_connection));   
    mysql_close(db_connection);   
    lr_abort();   
  }   
   
  // 释放MySQL资源   
  mysql_close(db_connection);   
    return 0;   
}  

出现的错误:
Action.c(54): 错误: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '})' at line 1
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

该用户从未签到

2#
发表于 2009-7-9 17:16:00 | 只看该作者
第54行那句语句有问题,SQL语法错误。
回复 支持 反对

使用道具 举报

  • TA的每日心情
    擦汗
    2015-5-25 17:24
  • 签到天数: 3 天

    连续签到: 1 天

    [LV.2]测试排长

    3#
    发表于 2009-7-9 17:37:52 | 只看该作者
    You have an error in your SQL syntax
    回复 支持 反对

    使用道具 举报

    本版积分规则

    关闭

    站长推荐上一条 /1 下一条

    小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

    GMT+8, 2024-11-19 07:35 , Processed in 0.081865 second(s), 27 queries .

    Powered by Discuz! X3.2

    © 2001-2024 Comsenz Inc.

    快速回复 返回顶部 返回列表