Tag: field
Mysql Field * doesn’t have a default value解决方法
nick | mysql | 2010-08-12
MySQL 5中,出现错误提示:
Field ‘id’ doesn’t have a default value
解决方法一:
打开my.ini,查找
sql-mode=”STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION”
修改为
sql-mode=”NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION”
然后重启MYSQL
解决方法二:
MySQL 5 uses a strict mod... [阅读全文]
Inline content assist for text fields and areas
Sergey Chikuyonok has created a really nice, easy to use, and good looking content assist library for input text fields and text areas:
It calculates precise position of characters in or
tag and places completion proposals popup under it. You can explicitly call popup window to assist/replace word (depends on caret positio... [阅读全文]