"PEL" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > "time" time NOT NULL DEFAULT HH:MM
What's that supposed to achieve? If you want current time in HH:MM
format, make it
DEFAULT (strftime('%H:%M', 'now'))
If you want, say, midnight in HH:MM format, make it
DEFAULT '00:00'
Igor Tandetnik
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

