配置会话以根据SQLAlchemy中的列类型强制转换列

时间:2018-10-18 21:35:09

标签: python sqlalchemy

情况如下:

某些模型/表的某些列定义为数字类型。查询时,我需要将所有数值类型值转换为浮点类型。我知道我可以为 extends RichTextLabel var dialog = ["Hello There", "how are you"] var page = 0 func _ready(): set_bbcode(dialog[page]) set_visible_characters(0) func _input(event): if event is InputEventMouseButton: if get_visible_characters() > get_total_character_count(): if page < dialog.size()-1: page += 1 set_bbcode(dialog[page]) set_visible_characters(0) func _on_Timer_timeout(): set_visible_characters(get_visible_characters() + 1) column1.astype(float)等类似的每一列进行显式转换。 我可以预先配置会话,以便在运行查询时直接进行转换吗?像这样:

column2.astype(float)

0 个答案:

没有答案