こんにちは私は以下の関数からストアドプロシージャを実行しています。すべての日付で、データテーブルの19:12:201200:00:00の終わりに時間が取得されています。列はデータベースでは日付として定義され、SPでは日付として返されます。日付の終わりに00:00:00になるのはなぜですか?
ありがとう。
サンプルコード。
Dim dt As New DataTable
Dim da As New SqlDataAdapter
Dim con As New SqlConnection(_conString)
Dim SelectCommand As New SqlCommand()
With SelectCommand
.Parameters.Add(New SqlParameter(_strAcademicYear, SqlDbType.Int))
.Parameters(_strAcademicYear).Value = _AcademicYear
.CommandText = "[Teacher].[GetDate]"
.CommandType = CommandType.StoredProcedure
.Connection = con
End With
da.SelectCommand = SelectCommand
con.Open()
da.Fill(dt)
con.Close()