您的位置:首页 > 编程语言 > C语言/C++

C++获取系统时间如何插入到MySQL里面的datetime型属性中

2015-07-24 16:13 615 查看
用c++获取系统的时间后,发现时间的格式是int型,并且我们需要的格式是类似2015-07-24 15:55:03这种类型的格式,为此将这些int型的年月日时分秒转换为string,而MySQL中datetime型的格式为'2015-07-24 15:55:03',那么问题来了:怎么将"2015-07-24 15:55:03"转换成'2015-07-24
15:55:03',从而sql语句能够插入当前时间。

相关代码如下:

//get the current time
CTime t = CTime::GetCurrentTime();//#include <atltime.h>
string mytime = inttostring(t.GetYear()) + "-" + inttostring(t.GetMonth()) + "-" + inttostring(t.GetDay())
+ " " + inttostring(t.GetHour()) + ":" + inttostring(t.GetMinute()) + ":" + inttostring(t.GetSecond());
cout << mytime << endl;

char sdate[30];
strcpy_s(sdate, mytime.c_str());

char mysql[] = "insert into tb_report(source_id,created_time) values(1,'%s')";
char mysqlBuf[1024];
sprintf_s(mysqlBuf, mysql, sdate);
res = mysql_query(&myCont, mysqlBuf);
int转string:

//int to string
string inttostring(int in)
{
stringstream ss;
string str;
ss << in;
ss >> str;
return str;
}

参考:

点击打开链接
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  c++ mysql string datetime