-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support DateOnly TimeOnly ZERODATE #24
Conversation
# Conflicts: # Makefile # Package.swift # Sources/MySQL/Connection.swift # Sources/MySQL/Date.swift # Sources/MySQL/Query.swift
MySQL has - Date YYYY-MM-DD - Time HH:MM:DD Fields, original could not handle those data properly. Also, MySQL allows to put ZeroPadded data like 0000-00-00 00:00:00 depends on session setting. this PR let this library to use above features.
Thank you @tomohisa! I have found out some MySQL libraries, http://dev.mysql.com/doc/connector-j/5.1/en/connector-j-installing-upgrading-3-0-to-3-1.html I assume that follow just Also supporting date or time only format is good. I have new issue #25 for this. |
Close this issue due to go ahead with #25. |
MySQL has
Fields, original could not handle those data properly.
Also, MySQL allows to put ZeroPadded data like
0000-00-00 00:00:00
depends on session setting.
this PR let this library to use above features.