英文:
run into error parsing sub-millisecond timestamps in Julia
问题
我尝试从我们的数据库查询,其中包含亚毫秒级时间戳,但 Julia 显示 DateTime 解析错误。
我尝试使用以下方法将字段转换:
STR_TO_DATE(str,fmt)
但没有成功。
英文:
I was trying to query from our database, which contains sub-milisecond timestamps but Julia shows error parsing DateTime.
I tried converting the field using
STR_TO_DATE(str,fmt)
but didn't work.
答案1
得分: 1
使用“DBInterface.execute(conn, sql; mysql_date_and_time=true)”而不是在查询时转换字段,可以在Julialang讨论中找到对这个问题的答案(https://discourse.julialang.org/t/parsing-of-mysql-timestamps/77587/7?u=jerlich)。
英文:
Answer to this question found in Julialang discourse
(https://discourse.julialang.org/t/parsing-of-mysql-timestamps/77587/7?u=jerlich): using DBInterface.execute(conn, sql; mysql_date_and_time=true)
instead of converting the field when query.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论