 |
|
ถามเรื่องการเรียก stored procedures จาก dataset ปัญหาคือมันหา stored procedure ไม่เจอครับ |
|
 |
|
|
 |
 |
|
ช่วยดูโค้ดหน่อยครับ คือผมทำการเรียก stored procedures จาก dataset ปัญหาคือมันหา stored procedure ไม่เจอครับ
Partial Class Report
Inherits System.Web.UI.Page
Dim Conn As New SqlClient.SqlConnection(ConnectionString)
Dim da As New Data.SqlClient.SqlDataAdapter(cmd)
Dim cmd As New System.Data.SqlClient.SqlCommand
Dim ds As New DataSet1
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
With cmd
.Connection = Conn
.CommandType = CommandType.StoredProcedure
.CommandText = "Get_ReportEmployee" //<-------- ชื่อ Stored Procedure
.Parameters.Add("@Id", SqlDbType.NVarChar, 6).Value = "100001"
.Parameters.Add("@Name", SqlDbType.NVarChar, 50).Value = "KEN DOODEE"
End With
da.Fill =(ds,"Get_ReportEmployee") //<-------- มันจะมีหยักๆ ตรง da.Fill เหมือนกับว่า หา store procedure ไม่เจอครับ
Dim reportlocation As String = Server.MapPath("ReportEmployee.rpt")
Dim rpt As New CrystalDecisions.CrystalReports.Engine.ReportDocument
rpt.Load(Server.MapPath("ReportEmployee.rpt"))
rpt.SetDatabaseLogon("sa", "", "192.0.0.0", "Employee")
rpt.SetDataSource(ds.Tables("Get_ReportEmployee"))
CrystalReportViewer1.ReportSource = rpt
End Sub
End Class
ขอบคุณล่วงหน้าครับ
Tag : .NET, Crystal Report, Web (ASP.NET)
|
|
 |
 |
 |
 |
Date :
2010-12-26 23:08:33 |
By :
bluesky007 |
View :
1884 |
Reply :
5 |
|
 |
 |
 |
 |
|
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Code (VB.NET)
Partial Class Report
Inherits System.Web.UI.Page
Dim Conn As New SqlClient.SqlConnection(ConnectionString)
Dim cmd As New System.Data.SqlClient.SqlCommand
Dim ds As New DataSet1
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
With cmd
.Connection = Conn
.CommandType = CommandType.StoredProcedure
.CommandText = "Get_ReportEmployee" //<-------- ชื่อ Stored Procedure
.Parameters.Add("@Id", SqlDbType.NVarChar, 6).Value = "100001"
.Parameters.Add("@Name", SqlDbType.NVarChar, 50).Value = "KEN DOODEE"
End With
Dim da As New Data.SqlClient.SqlDataAdapter(cmd)//<------ย้ายลงมานี่ได้มั้ยครับ..
da.Fill =(ds,"Get_ReportEmployee") //<-------- มันจะมีหยักๆ ตรง da.Fill เหมือนกับว่า หา store procedure ไม่เจอครับ
Dim reportlocation As String = Server.MapPath("ReportEmployee.rpt")
Dim rpt As New CrystalDecisions.CrystalReports.Engine.ReportDocument
rpt.Load(Server.MapPath("ReportEmployee.rpt"))
rpt.SetDatabaseLogon("sa", "", "192.0.0.0", "Employee")
rpt.SetDataSource(ds.Tables("Get_ReportEmployee"))
CrystalReportViewer1.ReportSource = rpt
End Sub
End Class
|
 |
 |
 |
 |
Date :
2010-12-27 15:21:08 |
By :
iamdevil |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
SYNTAX ของช่วง create sqlCommand ถูกแล้ว
แต่ STORE PROC ของ SQL SERVER ไม่ได้ Return RecordSet ค่ะ
มันจะ return แค่ Integer type ส่วนจะมี parameter ที่ส่งผ่านแบบ by reference ด้วยมันก็อีกเรื่องนึง
ถ้าคุณจะ get recordset ออกมาต้องใช้ view หรือทำเป็น ชุด statement ต่อกันไป
คั่นแต่ละ statement ด้วย ; แล้วจบ statement สุดท้ายด้วยการ select ตามที่ต้องการค่ะ
|
 |
 |
 |
 |
Date :
2010-12-27 15:32:28 |
By :
blurEyes |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
copy error มาให้ดูหน่อย
ผมเขียนอย่างนี้มันก็ออกนะ หยักๆๆ เอาเม้าไปวางแล้วมันขึ้นว่า
Code (C#)
protected void Page_Load(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection(strCon);
SqlCommand cmd = new SqlCommand("Sales by Year", con);
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.AddWithValue("@Beginning_date", SqlDbType.DateTime).Value = "01/01/1997";
cmd.Parameters.AddWithValue("@Ending_date", SqlDbType.DateTime).Value = "01/31/1997";
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataSet ds = new DataSet();
da.Fill(ds, "SaleByYear");
GridView1.DataSource = ds;
GridView1.DataBind();
}
|
 |
 |
 |
 |
Date :
2010-12-27 16:02:44 |
By :
superpheak |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Code (C#)
string connStr = @"Data Source=.\sqlexpress;Initial Catalog=test;Integrated Security=True" ;
using (SqlConnection iconn = new SqlConnection ( connStr ))
{
SqlCommand icmd = new SqlCommand("SIMPLE_STORE_PROC", iconn);
icmd.CommandType = CommandType.StoredProcedure ;
SqlDataAdapter iDA = new SqlDataAdapter (icmd) ;
DataTable iTable = new DataTable () ;
try
{
iconn.Open () ;
iDA.Fill(iTable);
}
catch ( Exception ex)
{
throw new Exception ( ex.Message ) ;
}
}
อื้อถ้า statement สุดท้ายเป็น select มันจะ return เป็น recordset ได้
ขอโทษค่ะคงสับสนกับเรื่องอื่น
ยังไงคงต้องดูที่ error message แล้วค่ะ
|
 |
 |
 |
 |
Date :
2010-12-27 22:20:08 |
By :
blurEyes |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ผมว่าผิดที่บรรทัดนี้ครับ --> Dim ds As New DataSet1
ลองเปลี่ยนเป็น --> Dim ds As New DataSet()
ดูครับ คิดว่าน่าจะหาย
|
 |
 |
 |
 |
Date :
2011-01-03 00:43:16 |
By :
Guest |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|