 |
|
รบกวนช่วยอธิบาย Code ทีครับ ตรงที่มี **** แบบว่า งงๆอยู่ ขอบคุณครับ |
|
 |
|
|
 |
 |
|
****Dim CommandString As String = "Select [Field1], [Field2], [Field3] From [MyTable] Where [FieldDate] @StartDate And @EndDate"
ประกาศตัวแปรเป็น string เพื่อเก็บ SQL เครื่องหมาย@แทนพารามิเตอร์
****Command.Parameters.AddWithValue("@StartDate", DateTime.Parse("01/06/2010"))
****Command.Parameters.AddWithValue("@EndDate", DateTime.Parse("29/06/2010"))
assign value ให้พารามิเตอรืชื่อ StartDate,Enddate
|
 |
 |
 |
 |
Date :
2010-07-02 08:36:50 |
By :
superpheak |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
รู้สึกว่า sql statement จะตก between ไปนะ เอาอันนี้แล้วกัน
Code (VB.NET)
Dim ConnnectionString As String = "?????????"
Dim Connection As New OleDbConnection(ConnnectionString)
Dim CommandString As String = "Select [Field1], [Field2], [Field3] From [MyTable] Where [FieldDate] Between @StartDate And @EndDate"
Dim Commnad As New Command(CommandString, Connection)
Command.Parameters.AddWithValue("@StartDate", DateTime.Parse("01/06/2010"))
Command.Parameters.AddWithValue("@EndDate", DateTime.Parse("29/06/2010"))
Dim Dt As New DataTable()
Dim DataAdapter As New OleDbDataAdapter()
DataAdapter.SelectCommand = Command
DataAdapter.Fill(Dt)
|
 |
 |
 |
 |
Date :
2010-07-02 08:47:22 |
By :
tungman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
มันขึ้นอย่างนี้ต้องแก้ยังไงครับ รบกวนด้วยนะครับ

|
 |
 |
 |
 |
Date :
2010-07-02 10:45:12 |
By :
zeromce10 |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
 
|
 |
 |
 |
 |
Date :
2010-07-02 12:52:41 |
By :
zeromce10 |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Code (VB.NET)
Command.Parameters.AddWithValue("@StartDate", DateTime.Parse("1/6/2010"))
Command.Parameters.AddWithValue("@EndDate", DateTime.Parse("29/6/2010"))
|
 |
 |
 |
 |
Date :
2010-07-02 12:59:29 |
By :
tungman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
format เป็น เดือน/วัน/ปี
06/29/2010 ประมาณนั้น sql date ดีฟ้าวววววววววว...
|
 |
 |
 |
 |
Date :
2010-07-02 13:47:59 |
By :
superpheak |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|