คุณควรเก็บ res_date type เป็น Datetime พอส่งค่าเข้าไปก็ convert ให้เป็นรูปแบบ 'yyyy-mm-dd'
Code (VB.NET)
Function ConvertDate(ByVal d1 As Date) As String
Dim nowformat As String = CultureInfo.CurrentCulture.Name
If nowformat = "th-TH" Then Thread.CurrentThread.CurrentCulture = New CultureInfo("en-US")
ConvertDate = Format(CDate(d1), "yyyy-MM-dd")
End Function