C/C++连接MySql数据库

    <div class="postBody">
        <div id="cnblogs_post_body" class="blogpost-body"><p>本文对如何使用MySql的API连接MySql数据库,开发环境为VS2008.</p>  <p>&#160;</p>  <h4>一、VS2008工程设置工作</h4>  <p>首先,建立一个windows应用程序的工程,将C/C++-&gt;预处理器-&gt;预处理器定义下的_WINDOWS改为_CONSOLE,</p>  <p><a href="http://images.cnblogs.com/cnblogs_com/justinzhang/201109/201109231108447915.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="https://images.cnblogs.com/cnblogs_com/justinzhang/201109/201109231108449834.png" width="749" height="551" /></a> </p>  <p>将连接器-&gt;系统-&gt;子系统 选择为控制台。</p>  <p><a href="http://images.cnblogs.com/cnblogs_com/justinzhang/201109/201109231108451961.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="https://images.cnblogs.com/cnblogs_com/justinzhang/201109/201109231108455275.png" width="747" height="550" /></a> </p>  <p>由于我们要使用Mysql的API,并且我们机子上肯定安装了Mysql数据库,所以我们要将工程的头文件路径指向Mysql安装目录的同文件mysql.h所在的位置,将连接库路径指向libmysql.lib所在的路径,</p>  <p>在我的机子上,Mysql 的安装路径为:C:\Program Files\MySQL\MySQL Server 5.1</p>  <p><a href="http://images.cnblogs.com/cnblogs_com/justinzhang/201109/201109231108463290.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="https://images.cnblogs.com/cnblogs_com/justinzhang/201109/201109231108463257.png" width="359" height="423" /></a> </p>  <p><a href="http://images.cnblogs.com/cnblogs_com/justinzhang/201109/201109231108468764.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="https://images.cnblogs.com/cnblogs_com/justinzhang/201109/20110923110847683.png" width="537" height="179" /></a> </p>  <p>我们需要把VS2008的工程中的头文件路径和连接库路径指向上面的两个地方:</p>  <p>&#160;</p>  <p>&#160;</p>  <p>将x项目属性页的C/C++-&gt;常规-&gt;附加包含目录指向:C:\Program Files\MySQL\MySQL Server 5.1\include</p>  <p><a href="http://images.cnblogs.com/cnblogs_com/justinzhang/201109/201109231108471730.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="https://images.cnblogs.com/cnblogs_com/justinzhang/201109/201109231108471697.png" width="745" height="407" /></a> </p>  <p>&#160;</p>  <p>将项目属性页的链接器-&gt;常规-&gt;附加库目录指向:C:\Program Files\MySQL\MySQL Server 5.1\lib\opt.</p>  <p><a href="http://images.cnblogs.com/cnblogs_com/justinzhang/201109/201109231108487519.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="https://images.cnblogs.com/cnblogs_com/justinzhang/201109/201109231108489438.png" width="743" height="427" /></a> </p>  <p>将链接器-&gt;输入-&gt;附加依赖项中添加libmysql.lib。</p>  <p><a href="http://images.cnblogs.com/cnblogs_com/justinzhang/201109/201109231108484388.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="https://images.cnblogs.com/cnblogs_com/justinzhang/201109/201109231108491532.png" width="751" height="549" /></a> </p>  <h5><font color="#ff0000">如果不设置链接器-&gt;输入-&gt;附加依赖项中添加libmysql.lib,那么会出现如下的错误:</font></h5>  <table border="1" cellspacing="0" cellpadding="2" width="1111"><tbody>     <tr>       <td valign="top" width="1109">         <p>1&gt;------ 已启动全部重新生成: 项目: MySql-Connect, 配置: Debug Win32 ------            <br />1&gt;正在删除项目“MySql-Connect”(配置“Debug|Win32”)的中间文件和输出文件             <br />1&gt;正在编译...             <br />1&gt;MySql_Connect.cpp             <br />1&gt;x:\编程练习\c-c++\c\mysql_connect.cpp(35) : warning C4996: 'scanf': This function or variable may be unsafe. Consider using scanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.             <br />1&gt;&#160;&#160;&#160;&#160;&#160;&#160;&#160; d:\program files\microsoft visual studio 9.0\vc\include\stdio.h(306) : 参见“scanf”的声明             <br />1&gt;x:\编程练习\c-c++\c\mysql_connect.cpp(72) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.             <br />1&gt;&#160;&#160;&#160;&#160;&#160;&#160;&#160; d:\program files\microsoft visual studio 9.0\vc\include\stdio.h(366) : 参见“sprintf”的声明             <br />1&gt;x:\编程练习\c-c++\c\mysql_connect.cpp(86) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.             <br />1&gt;&#160;&#160;&#160;&#160;&#160;&#160;&#160; d:\program files\microsoft visual studio 9.0\vc\include\stdio.h(366) : 参见“sprintf”的声明             <br />1&gt;正在编译资源清单...             <br />1&gt;Microsoft (R) Windows (R) Resource Compiler Version 6.1.6723.1             <br />1&gt;Copyright (C) Microsoft Corporation.&#160; All rights reserved.             <br />1&gt;正在链接...             <br />1&gt;LINK : 没有找到 d:\我的文档\Visual Studio 2008\Projects\MySql-Connect\Debug\MySql-Connect.exe 或上一个增量链接没有生成它;正在执行完全链接             <br />1&gt;MySql_Connect.obj : error LNK2019: <font color="#008000">无法解析的外部符号 _mysql_close@4,该符号在函数 _main 中被引用              <br /></font>1&gt;MySql_Connect.obj : error LNK2019: 无法解析的外部符号 _mysql_free_result@4,该符号在函数 _main 中被引用             <br />1&gt;MySql_Connect.obj : error LNK2019: 无法解析的外部符号 _mysql_num_fields@4,该符号在函数 _main 中被引用             <br />1&gt;MySql_Connect.obj : error LNK2019: 无法解析的外部符号 _mysql_fetch_row@4,该符号在函数 _main 中被引用             <br />1&gt;MySql_Connect.obj : error LNK2019: 无法解析的外部符号 _mysql_store_result@4,该符号在函数 _main 中被引用             <br />1&gt;MySql_Connect.obj : error LNK2019: 无法解析的外部符号 _mysql_error@4,该符号在函数 _main 中被引用             <br />1&gt;MySql_Connect.obj : error LNK2019: 无法解析的外部符号 _mysql_real_query@12,该符号在函数 _main 中被引用             <br />1&gt;MySql_Connect.obj : error LNK2019: 无法解析的外部符号 _mysql_select_db@8,该符号在函数 _main 中被引用             <br />1&gt;MySql_Connect.obj : error LNK2019: 无法解析的外部符号 _mysql_real_connect@32,该符号在函数 _main 中被引用             <br />1&gt;MySql_Connect.obj : error LNK2019: 无法解析的外部符号 _mysql_init@4,该符号在函数 _main 中被引用             <br />1&gt;d:\我的文档\Visual Studio 2008\Projects\MySql-Connect\Debug\MySql-Connect.exe : fatal error LNK1120: 10 个无法解析的外部命令             <br />1&gt;生成日志保存在“file://d:\我的文档\Visual Studio 2008\Projects\MySql-Connect\MySql-Connect\Debug\BuildLog.htm”             <br />1&gt;MySql-Connect - 11 个错误,3 个警告             <br />========== 全部重新生成: 成功 0 个,失败 1 个,跳过 0 个 ==========</p>       </td>     </tr>   </tbody></table>  <p>&#160;</p>  <h4>二、连接Mysql和从MySql中取出数据的API介绍</h4>  <h3>2.1 mysql_real_connect()</h3>  <h2>2.1.1 函数原型:</h2>  <p>MYSQL *mysql_real_connect(MYSQL *mysql, const char *host, const char *user, const char *passwd, const char *db, unsigned int port, const char *unix_socket, unsigned int client_flag) </p>  <h2>2.1.2 参数说明:</h2>  <p>• 第一个参数应该是一个现存MYSQL结构的地址。在调用mysql_real_connect()之前,你必须调用mysql_init()初始化MYSQL结构。见下面的例子。</p>  <p>• host值可以是一个主机名或一个IP地址。如果host是NULL或字符串&quot;localhost&quot;,假定是到本地主机的一个连接。如果OS支持套接字(Unix)或命名管道(Win32),使用他们而不是TCP/IP与服务器连接。</p>  <p>• user参数包含用户的MySQL登录ID。如果user是NULL,假定是当前用户。在Unix下,它是当前登录名。在Windows ODBC下,必须明确地指定当前用户名字。见16.4 怎样填写ODBC管理程序中各种域。</p>  <p>• passwd参数为user包含口令。如果passwd是NULL,只有在user表中对于有一个空白口令字段的用户的条目将被检查一个匹配。这允许数据库主管设置MySQL权限,使用户获得不同的口令,取决于他们是否已经指定一个口令。注意:不要试图在调用mysql_real_connect()前加密口令;口令加密自动被客户API处理。</p>  <p>• db是数据库名。如果db不是NULL,连接将缺省数据库设置为这个值。</p>  <p>• 如果port不是0,值对于TCP/IP连接将用作端口号。注意host参数决定连接的类型。</p>  <p>• 如果unix_socket不是NULL,字符串指定套接字或应该被使用的命名管道。注意host参数决定连接的类型。</p>  <p>• client_flag值通常是0,但是在很特殊的情况下可以被设置为下列标志的组合:</p>  <p>标志名字 意味着的标志</p>  <p>CLIENT_FOUND_ROWS 返回找到的(匹配的)行数,不是受到影响的行数。</p>  <p>CLIENT_NO_SCHEMA 不允许db_name.tbl_name.col_name语法。这是为了ODBC;如果你使用该语法,导致语法分析器产生一个错误,它是为在一些ODBC程序捕捉错误是有用的。</p>  <p>CLIENT_COMPRESS 使用压缩协议。</p>  <p>CLIENT_ODBC 客户是一个ODBC客户。这使mysqld变得对ODBC更友好。</p>  <h2>2.1.3 返回值</h2>  <p>如果连接成功,一个 MYSQL*连接句柄。如果连接失败,NULL。对一个成功的连接,返回值与第一个参数值相同,除非你传递NULL给该参数。</p>  <h2>2.1.4 错误</h2>  <p>CR_CONN_HOST_ERROR </p>  <p>不能连接MySQL服务器。</p>  <p>CR_CONNECTION_ERROR </p>  <p>不能连接本地MySQL服务器。</p>  <p>CR_IPSOCK_ERROR </p>  <p>不能创建一个IP套接字。</p>  <p>CR_OUT_OF_MEMORY </p>  <p>内存溢出。</p>  <p>CR_SOCKET_CREATE_ERROR </p>  <p>不能创建一个Unix套接字。</p>  <p>CR_UNKNOWN_HOST </p>  <p>不能找到主机名的IP地址。</p>  <p>CR_VERSION_ERROR </p>  <p>由于试图使用一个不同协议版本的一个客户库与一个服务器连接导致的一个协议失配。如果你使用一个非常老的客户库连接一个没有使用--old-protocol选项启动的新服务器,这就能发生。</p>  <p>CR_NAMEDPIPEOPEN_ERROR; </p>  <p>不能在 Win32 上创建一个命名管道。</p>  <p>CR_NAMEDPIPEWAIT_ERROR; </p>  <p>不能在 Win32 上等待一个命名管道。</p>  <p>CR_NAMEDPIPESETSTATE_ERROR; </p>  <p>不能在 Win32 上得到一个管道处理器。</p>  <h3>2.2&#160; mysql_select_db()</h3>  <h2>2.2.1 函数原型</h2>  <p>int mysql_select_db(MYSQL *mysql, const char *db) </p>  <h2>2.2.2 参数说明</h2>  <p>使得由db指定的数据库成为 在由mysql指定的连接上的缺省(当前)数据库。在随后的查询中,这个数据库对于不包括一个显式的数据库指定符的表的引用是缺省数据库。</p>  <p>除非连接的用户能被认证允许使用数据库,否则mysql_select_db()失败。</p>  <h2>2.2.3 返回值</h2>  <p>成功,零。如果发生一个错误,非零。</p>  <h2>2.2.4&#160; 错误</h2>  <p>CR_COMMANDS_OUT_OF_SYNC </p>  <p>命令以一个不适当的次序被执行。</p>  <p>CR_SERVER_GONE_ERROR </p>  <p>MySQL服务器关闭了。</p>  <p>CR_SERVER_LOST </p>  <p>对服务器的连接在查询期间失去。</p>  <p>CR_UNKNOWN_ERROR </p>  <p>发生一个未知的错误。</p>  <p>&#160;</p>  <h3>2.3 mysql_real_query</h3>  <h2>2.3.1 函数原型 </h2>  <p>int mysql_real_query(MYSQL *mysql, const char *query, unsigned int length) </p>  <h2>2.3.2 参数说明</h2>  <p>执行由query指向的SQL查询,它应该是一个length个字节的字符串。查询必须由一个单个的SQL语句组成。你不应该在语句后增加一个终止的分号(“;”)或\g。</p>  <p>对于包含二进制数据的查询,你必须使用mysql_real_query()而不是mysql_query(),因为二进制代码数据可能包含“\0”字符,而且,mysql_real_query()比mysql_query()更快,因为它对查询字符串调用strlen()。</p>  <h2>2.3.3 返回值</h2>  <p>如果查询成功,零。如果发生一个错误,非零。</p>  <h2>2.3.4&#160; 错误</h2>  <p>CR_COMMANDS_OUT_OF_SYNC </p>  <p>命令以一个不适当的次序被执行。</p>  <p>CR_SERVER_GONE_ERROR </p>  <p>MySQL服务器关闭了。</p>  <p>CR_SERVER_LOST </p>  <p>对服务器的连接在查询期间失去。</p>  <p>CR_UNKNOWN_ERROR </p>  <p>发生一个未知的错误。</p>  <p>&#160;</p>  <h3>2.4 mysql_store_result</h3>  <h2>2.4.1 函数原型</h2>  <p><code>MYSQL_RES *mysql_store_result(MYSQL *mysql)</code></p>  <h2>2.4.2 返回值</h2>  <p>A <code>MYSQL_RES</code> result structure with the results. <code>NULL</code> (0) if an error occurred. </p>  <h3><font size="4">2.5&#160; <code>mysql_fetch_row()</code></font></h3>  <h6><a name="id1183101"></a>Description </h6>  <p>Retrieves the next row of a result set. When used after <a href="http://dev.mysql.com/mysql-store-result.html"><code>mysql_store_result()</code></a>, <a href="http://dev.mysql.com/mysql-fetch-row.html"><code>mysql_fetch_row()</code></a> returns <code>NULL</code> when there are no more rows to retrieve. When used after <a href="http://dev.mysql.com/mysql-use-result.html"><code>mysql_use_result()</code></a>, <a href="http://dev.mysql.com/mysql-fetch-row.html"><code>mysql_fetch_row()</code></a> returns <code>NULL</code> when there are no more rows to retrieve or if an error occurred. </p>  <p>The number of values in the row is given by <a href="http://dev.mysql.com/mysql-num-fields.html"><code>mysql_num_fields(result)</code></a>. If <code>row</code> holds the return value from a call to <a href="http://dev.mysql.com/mysql-fetch-row.html"><code>mysql_fetch_row()</code></a>, pointers to the values are accessed as <code>row[0]</code> to <code>row[mysql_num_fields(result)-1]</code>. <code>NULL</code> values in the row are indicated by <code>NULL</code> pointers. </p>  <p>The lengths of the field values in the row may be obtained by calling <a href="http://dev.mysql.com/mysql-fetch-lengths.html"><code>mysql_fetch_lengths()</code></a>. Empty fields and fields containing <code>NULL</code> both have length 0; you can distinguish these by checking the pointer for the field value. If the pointer is <code>NULL</code>, the field is <code>NULL</code>; otherwise, the field is empty. </p>  <h6><a name="id1183229"></a>Return Values </h6>  <p>A <code>MYSQL_ROW</code> structure for the next row. <code>NULL</code> if there are no more rows to retrieve or if an error occurred. </p>  <h6><a name="id1183249"></a>Errors </h6>  <p>Note that error is not reset between calls to <a href="http://dev.mysql.com/mysql-fetch-row.html"><code>mysql_fetch_row()</code></a></p>  <ul>   <li>     <p><a href="http://dev.mysql.com/error-messages-client.html#error_cr_server_lost"><code>CR_SERVER_LOST</code></a></p>      <p>The connection to the server was lost during the query. </p>   </li>    <li>     <p><a href="http://dev.mysql.com/error-messages-client.html#error_cr_unknown_error"><code>CR_UNKNOWN_ERROR</code></a></p>      <p>An unknown error occurred. </p>   </li> </ul>  <p>参考资料:<a title="http://dev.mysql.com/doc/refman/5.6/en/index.html" href="http://dev.mysql.com/doc/refman/5.6/en/index.html">http://dev.mysql.com/doc/refman/5.6/en/index.html</a></p>  <p>&#160;</p>  <h4>三、利用Mysql库提供的API编写连接Mysql和从Mysql中取出数据的代码</h4>  
#include <windows.h>
  #include "stdio.h"
  #include "winsock.h" 
  #include "mysql.h" 


  int main()
  {

  MYSQL * con; //= mysql_init((MYSQL*) 0); 
  MYSQL_RES *res;
  MYSQL_ROW row;


  char tmp[400];

  //database configuartion
  char dbuser[30]="root"; 
  char dbpasswd[30]="apple";
  char dbip[30]="localhost";
  char dbname[50]="excel";
  char tablename[50]="test";
  char *query=NULL;


  int x;
  int y;
  int rt;//return value
  unsigned int t;

  int count = 0;


  printf("input x,y\n");
  scanf("%d,%d",&x,&y);
  fflush(stdin);
  printf("input over\n");
  con = mysql_init((MYSQL*) 0); 


  if ( con !=NULL && mysql_real_connect(con,dbip,dbuser,dbpasswd,dbname,3306/*TCP IP端口*/,NULL/*Unix Socket 连接类型*/,0/*运行成ODBC数据库标志*/) ) 
 { 
     if (!mysql_select_db(con,dbname)) 
     { 
         printf("Select successfully the database!\n"); 

         con ->reconnect = 1; 

         query = "set names \'GBK\'";
         //mysql_query(con,"set names \'GBK\'"); 

         rt=mysql_real_query(con,query,strlen(query));
         if (rt)
         {
             printf("Error making query: %s !!!\n",mysql_error(con));
        }
        else
        {
            printf("query %s succeed!\n",query);
        }

    }
}

else
{
    MessageBoxA(NULL,"Unable to connect the database,check your configuration!","",NULL);

 }

     //sprintf(tmp,"update %s set 商品=\'%s\',卖出=%d,成交=%d,涨跌=%d,买进=%d,总量=%d,涨幅=%f,时间=\'%s\' where  %s",tablename,goods,sold,deal,fluctuate,buy,total,delta,time,UpdateCon);
  sprintf(tmp,"insert into %s values(%s,%d,%d)",tablename,"null",x,y); //注意如何向具有自增字段的数据库中插入记录
 //MessageBoxA(NULL,tmp,tmp,MB_OK);
 //mysql_query(con,tmp);

 rt=mysql_real_query(con,tmp,strlen(tmp));
 if (rt)
 {
   printf("Error making query: %s !!!\n",mysql_error(con));
 }
 else
 {
     printf("%s executed!!!\n",tmp);
 }

 sprintf(tmp,"select * from %s",tablename);

 rt=mysql_real_query(con,tmp,strlen(tmp));
 if (rt)
 {
     printf("Error making query: %s !!!\n",mysql_error(con));
 } 
 else
 {
    printf("%s executed!!!\n",tmp);
 }

 res = mysql_store_result(con);//将结果保存在res结构体中

 while(row = mysql_fetch_row(res))  
 {  
    /** 
     * MYSQL_ROW STDCALL mysql_fetch_row(MYSQL_RES *result); 
     * 检索行 
     */  

    for(t=0;t<mysql_num_fields(res);t++)  
    {  
         printf("%s  ",row[t]);  
     }  
         printf(".............\n");  
         count ++;
     }  
     printf("number of rows %d\n",count);
     printf("mysql_free_result...\n");  
     mysql_free_result(res);  

     mysql_close(con);
     return 0;

 }
四、运行结果

image

 

五、数据库脚本
/*
Navicat MySQL Data Transfer

Source Server         : localhost
Source Server Version : 50141
Source Host           : localhost:3306
Source Database       : excel

Target Server Type    : MYSQL
Target Server Version : 50141
File Encoding         : 65001

Date: 2011-09-23 10:41:43
*/

SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `test`
-- ----------------------------
DROP TABLE IF EXISTS `test`;
CREATE TABLE `test` (
  `x` bigint(4) NOT NULL AUTO_INCREMENT,
  `y` int(4) DEFAULT NULL,
  `z` int(4) DEFAULT NULL,
  PRIMARY KEY (`x`)
) ENGINE=InnoDB AUTO_INCREMENT=118 DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of test
-- ----------------------------
INSERT INTO `test` VALUES ('95', '12432', '4334');
INSERT INTO `test` VALUES ('96', '213', '321');
INSERT INTO `test` VALUES ('97', '213', '213');
INSERT INTO `test` VALUES ('98', '123', '231');
INSERT INTO `test` VALUES ('99', '321', '231');
INSERT INTO `test` VALUES ('100', '123', '32132');
INSERT INTO `test` VALUES ('101', '777', '32213');
INSERT INTO `test` VALUES ('102', '123', '213');
INSERT INTO `test` VALUES ('103', '21', '321');
INSERT INTO `test` VALUES ('104', '324', '432');
INSERT INTO `test` VALUES ('105', '132', '231');
INSERT INTO `test` VALUES ('106', '324', '342');
  28:  INSERT INTO `test` VALUES ('107', '23', '23');
INSERT INTO `test` VALUES ('108', '12', '21');
INSERT INTO `test` VALUES ('109', '231', '321');
INSERT INTO `test` VALUES ('110', '123', '231');
INSERT INTO `test` VALUES ('111', '123', '231');
INSERT INTO `test` VALUES ('112', '123', '123');
INSERT INTO `test` VALUES ('113', '312', '231');
INSERT INTO `test` VALUES ('114', '312', '321');
INSERT INTO `test` VALUES ('115', '23', '3');
INSERT INTO `test` VALUES ('116', '213', '312');
INSERT INTO `test` VALUES ('117', '2', '3');

-- ----------------------------
-- Table structure for `xqdata`
-- ----------------------------
DROP TABLE IF EXISTS `xqdata`;
CREATE TABLE `xqdata` (
  `代码` varchar(20) NOT NULL DEFAULT '',
  `商品` varchar(20) CHARACTER SET utf8 DEFAULT NULL,
  `卖出` bigint(20) DEFAULT NULL,
  `成交` bigint(20) DEFAULT NULL,
  `涨跌` bigint(20) DEFAULT NULL,
  `买进` bigint(20) DEFAULT NULL,
  `总量` bigint(20) DEFAULT NULL,
  `涨幅` double DEFAULT NULL,
  `时间` time DEFAULT NULL,
  PRIMARY KEY (`代码`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of xqdata
-- ----------------------------
INSERT INTO `xqdata` VALUES ('FITX*1', '商品', '34', '43', '23', '34', '0', '1.4', '13:23:08');

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值