TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
lafferiz
NA
1
0
using vb.net with mysql
Jan 27 2004 2:34 AM
Hello. I am using VB.Net to connect to mysql database. Using input from textboxes to link with fields defined as type varchar work perfectly fine. However, a constant problem arises when i try to link an input from datetimepicker with a MySQL field of data type time. Whatever i try, the database time always shows 12:00:00. I had a similar problem initially with MySQL data type date. I managed to overcome the date problem using the code below: 'The function below was obtained from the following website 'http://www.vbcity.com/forums/faq.asp?fid=44&cat=SQL%20Server#TID31172 Public Shared Function DateToDB(ByVal TheDate As Date) As String Dim str As String With TheDate str = (.Year.ToString.PadLeft(2, Convert.ToChar("0")) & "-" & .Month.ToString.PadLeft(2, Convert.ToChar("0")) & "-" & .Day.ToString.PadLeft(2, Convert.ToChar("0"))) End With Return str End Function However this does not work with data type time. Please advise and thanking you in advance.
Reply
Answers (
1
)
ControlChars.CrLf
DTS Package conversion VB6 to VB.NET