|
|
|
Error : Failed to retrieve data from the database. Details: [Database Vendor Code: 241 ] |
|
|
|
|
|
|
|
ถ้าให้ผมเดา startdate กับ edDate น่าจะเป็น DateTime น่ะ แต่ก็ขึ้นอยู่กับว่าใน Database DataType เป็นอ่ะไร
|
|
|
|
|
Date :
2016-05-05 15:43:06 |
By :
taotechnocom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Database DataType ผมลองทำเป็นทั้ง DateTime แล้วก็ Date ก็ยังเป็นเหมือนกันครับ
หรือมีไรแนะนำให้ผมลองดูอีกไหมครับ
|
|
|
|
|
Date :
2016-05-05 15:52:04 |
By :
toey1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมอาจจะสื่อสารผิด ถ้ากรณี DataType บน Database เป็น Datatime ตัวแปร startdate กับ edDate ควรจะเป็น DateTime ด้วยครับ แล้วเราก็ Convert ค่าจาก TextBox เป็น DataTime ลองส่งค่าไปครับ
แต่ผมก็ไม่แน่ใจน่ะครับ เพราะปกติผมใช้แต่ Reporting Service
|
ประวัติการแก้ไข 2016-05-05 16:03:30
|
|
|
|
Date :
2016-05-05 15:59:43 |
By :
taotechnocom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (C#)
string startdate = dtpDate1.Text;
string edDate = dtpDate2.Text;
CrystalDecisions.CrystalReports.Engine.ReportDocument rptReport
= new CrystalDecisions.CrystalReports.Engine.ReportDocument();
rptReport.Load(Server.MapPath("report4.rpt"));
rptReport.SetParameterValue("startdate", startdate);
rptReport.SetParameterValue("edDate", edDate);
rptReport.SetDatabaseLogon("sa", "password");
CrystalReportViewer1.ReportSource = rptReport;
startdate edDate >> string
"startdate" "edDate" >> DateTime
แบบนี้ก็เซ็ต SetParameterValue ได้รึครับ
|
|
|
|
|
Date :
2016-05-05 16:05:58 |
By :
lamaka.tor |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ ถามต่ออีกนิดครับ แล้วถ้าผมใช้ datepicker ยังต้อง Convert ไหมครับ
|
|
|
|
|
Date :
2016-05-05 16:13:43 |
By :
toey1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|