pymysql和sqlalchemy:attributeerror:'datetime'对象没有属性'translate'

bwitn5fc  于 2021-06-21  发布在  Mysql
关注(0)|答案(1)|浏览(390)

在尝试将新记录保存到db时,我收到了上面的错误,与我拥有的datetime属性(engagementdate)有关。
我传递给sqlalchemy的值的类型看起来很正常:

<wx.DateTime: "Sat Apr 28 00:00:00 2018">

在mysql上,我的模式有以下设置:
默认排序规则:utf8\u general\u ci
默认字符集:utf8
日期值取自wx.dialog(表单)上的wx.adv.datepickerctrl,在本地utf8中正确显示和验证。
我到mysql的连接字符串有一个本地定义:utf8mb4。
表是使用以下模型创建的:

class Contractors(DeclarativeBase):
    __tablename__ = "contractors"

    id = Column(Integer, primary_key=True)
    company_name = Column("company_name", Unicode(80))
    company_address = Column("company_address", String(250))
    ...
    is_training_provider = Column("is_training_provider", Boolean())
    engagement_date = Column("engagement_date", DateTime)
    comments = Column("comments", Text())

我的olv型号:

class OlvContractors(object):

    def __init__(self, id, company_name, company_address, company_city, company_zip, company_country, company_phone1,
                 company_phone2, company_description, contact_person, cp_email, cp_phone1, cp_phone2,
                 is_training_provider, engagement_date, comments):
        self.id = id  # unique row id from database
        self.company_name = company_name
        self.company_address = company_address
        ...
        self.is_training_provider = is_training_provider
        self.engagement_date = engagement_date
        self.comments = comments

sqlalchemy生成的sql语句是:

INSERT
INTO
contractors(company_name, company_address, company_city, company_zip, company_country, company_phone1, company_phone2,
            company_description, contact_person, cp_email, cp_phone1, cp_phone2, is_training_provider, engagement_date,
            comments)
VALUES( % (company_name)
s, % (company_address)
s, % (company_city)
s, % (company_zip)
s, % (company_country)
s, % (company_phone1)
s, % (company_phone2)
s, % (company_description)
s, % (contact_person)
s, % (cp_email)
s, % (cp_phone1)
s, % (cp_phone2)
s, % (is_training_provider)
s, % (engagement_date)
s, % (comments)
s)
{'company_name': '', 'company_address': '', 'company_city': '', 'company_zip': '', 'company_country': '',
 'company_phone1': '', 'company_phone2': '', 'company_description': '', 'contact_person': '', 'cp_email': '',
 'cp_phone1': '', 'cp_phone2': '', 'is_training_provider': 0, 'engagement_date'
 : < wx.DateTime: "Sat Apr 28 00:00:00 2018" >, 'comments': ''}

您可以看到,订婚日期显示的是类型,而不是值。我需要显式转换这个吗?怎样?
我将要插入db的值作为字典传递:

{'company_name': '', 'company_address': '', 'company_city': '', 'company_zip': '', 'company_country': '', 'company_phone1': '', 'company_phone2': '', 'company_description': '', 'contact_person': '', 'cp_email': '', 'cp_phone1': '', 'cp_phone2': '', 'is_training_provider': False, 'engagement_date': <wx.DateTime: "Sat Apr 28 00:00:00 2018">, 'comments': ''}

…使用此功能:

def insertRecord(targetObject, dict_values):
    print("dict values received {}".format(dict_values))
    session = connectToDatabase()
    session.execute(targetObject.__table__.insert(), dict_values)
    session.commit()
    session.close()

谢谢你的指导!

ldfqzlk8

ldfqzlk81#

在此发布我的解决方案,以造福于任何人:
似乎缺少从wx.datetime到python datetime的转换。
在将数据字典发送到db之前,我使用此处提供的mike函数进行转换,如下所示:

if isinstance(ctrlValue, wx.DateTime):
        ctrlValue = forms_controller.wxdate2pydate(ctrlValue)

相关问题