将 to_iso_extended_string 与提升日期一起使用
我正在尝试将 d2 转换为“2011-08-02”形式的字符串,以便我可以将其传递给我的 sql 语句。根据 boost 网站,to_iso_extended_string 应该返回该格式,但我得到以下内容:“2011-Aug-02”。
date today(day_clock::local_day());
date_duration dd(30);
date d2=today-dd;
std::string to_iso_extended_string(date d2);
那么如何将日期转换为 yyyy-mm-dd 格式的字符串。
I am trying to convert d2 to a string of the form '2011-08-02' so I can pass this to my sql statement. According to the boost site, to_iso_extended_string should return that format, but I get the following instead: '2011-Aug-02'.
date today(day_clock::local_day());
date_duration dd(30);
date d2=today-dd;
std::string to_iso_extended_string(date d2);
how then do I convert the date to string in the yyyy-mm-dd format.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚对此进行了测试,它为我打印了
2011-08-02
:I have just tested this and it prints
2011-08-02
for me: