SQLAlchemy错误地向MySQL插入时间

时间:2017-02-13 13:45:54

标签: python mysql sqlalchemy

我定义了一个类型为DateTime,Time,TIMESTAMP的列,无论它总是出现这样的警告:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button"
        tools:layout_editor_absoluteX="148dp"
        tools:layout_editor_absoluteY="92dp" />

    <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="44dp"
        android:layout_marginStart="8dp"
        android:text="Button"
        app:layout_constraintEnd_toStartOf="@+id/button2"
        app:layout_constraintStart_toStartOf="parent"
        tools:layout_editor_absoluteY="92dp" />

    <Button
        android:id="@+id/button4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="8dp"
        android:text="Button"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toEndOf="@+id/button2"
        tools:layout_editor_absoluteY="92dp" />
</android.support.constraint.ConstraintLayout>

我已经搜索了很长时间的警告,所以请不要向我解释为什么会进一步说明。插入后,这样的列值显示如下:Warning: Incorrect time value: '2017-02-13 21:39:06.956895' for column 'time' at row 1 ,但我想要的是:{{1}那么,任何人都可以给我一些简单而恰当的解决方案吗?感谢。

以下是使用DateTime的列定义:21:39:07

操作系统版本:OS X 10.11.4 Python版本:3.5.2

0 个答案:

没有答案