[未解决]SQLAlchemy中如何自动初始化datatime的值
crifan 8年前 (2016-09-10) 2551浏览 0评论
折腾: [已解决]SQLAlchemy中给列的id从数字变成UUID 期间,用: /Users/crifan/dev/dev_root/daryun/SIPEvents/sourcecode/sipevents/sipevents/models.py...
crifan 8年前 (2016-09-10) 2551浏览 0评论
折腾: [已解决]SQLAlchemy中给列的id从数字变成UUID 期间,用: /Users/crifan/dev/dev_root/daryun/SIPEvents/sourcecode/sipevents/sipevents/models.py...
crifan 8年前 (2016-09-10) 4769浏览 0评论
折腾: [已解决]SQLAlchemy中给列的id从数字变成UUID 期间,需要知道: xxxx-xxxx-xxxx-xxxx 或 xxxxxxxxxxxxxxxx 到底什么是GUID还是UUID 数据库 GUID UUID UUID 和 GUID ...
crifan 8年前 (2016-09-10) 6060浏览 0评论
之前已经在Flask中的SQLAlchemy的某列中,用的id都是integer数字: /Users/crifan/dev/dev_root/daryun/SIPEvents/sourcecode/sipevents/sipevents/models...
crifan 8年前 (2016-09-04) 10064浏览 0评论
折腾: [记录]Flask中给活动到期添加提醒功能 期间,对于已有的代码: /Users/crifan/dev/dev_root/daryun/SIPEvents/sourcecode/sipevents/sipevents/models.py ...
crifan 8年前 (2016-08-31) 2917浏览 0评论
代码: newUser = User( openid = userOpenid, province = userInfoDict[‘province’], ...
crifan 8年前 (2016-08-31) 6557浏览 0评论
折腾: [已解决]SQLAlchemy中commit出错:IntegrityError sqlite3.IntegrityError column openid is not unique SQL 期间,对于已有一个User的数据,现在当获得新的数据...
crifan 8年前 (2016-08-30) 4055浏览 0评论
折腾: [已解决]SQLAlchemy中添加枚举类型字段 期间,用代码: /Users/crifan/dev/dev_root/daryun/SIPEvents/sourcecode/flask/db_create.py from sipeve...
crifan 8年前 (2016-08-30) 4454浏览 0评论
虽然此处已经将创建枚举的代码写好了: [已解决]SQLAlchemy中添加枚举类型字段 但是实际上,此处从form表单拿到的是字符串 所以要去搞清楚:如何把字符串,转换为enum枚举的值 然后传入Table的column中。 python strin...
crifan 8年前 (2016-08-29) 7455浏览 0评论
折腾: [已解决]SQLAlchemy执行create_all初始化enum时出错:AttributeError: replace 期间,需要去通过pip升级SQLAlchemy为最新的1.1.0b3版本 此处,通过: (SIPEvents) ...
crifan 8年前 (2016-08-29) 3279浏览 0评论
在: [已解决]SQLAlchemy中添加枚举类型字段 之后,代码: /Users/crifan/dev/dev_root/daryun/SIPEvents/sourcecode/flask/db_create.py db.drop_all()...