遇到在Julia中解析亚毫秒时间戳时出现错误

huangapple go评论67阅读模式
英文:

run into error parsing sub-millisecond timestamps in Julia

问题

我尝试从我们的数据库查询,其中包含亚毫秒级时间戳,但 Julia 显示 DateTime 解析错误。

我尝试使用以下方法将字段转换:

STR_TO_DATE(str,fmt)

但没有成功。
遇到在Julia中解析亚毫秒时间戳时出现错误

英文:

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.
遇到在Julia中解析亚毫秒时间戳时出现错误

答案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.

huangapple
  • 本文由 发表于 2023年7月4日 20:07:58
  • 转载请务必保留本文链接:https://go.coder-hub.com/76612460.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定