Click here to Skip to main content
15,883,894 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
I have made a web application in this there is one crystal report ,for selecting data for crystal report i am passing a value from another web page using query string & and works fine using this value i want to search and print the data in crystal report but i got error that "DATABASE LOGON FAILED" i am posting for generating crystal report please give the solution thanx in advance

VB
Dim did As Integer
        Dim d_id As String = Request.QueryString("did")
        
        'taking d_id value from another web page and convert it to integer
        did = Convert.ToInt32(d_id)
        MsgBox(did)

        Dim con As SqlConnection = New SqlConnection("Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Database.mdf;Integrated Security=True;User Instance=True")
        con.Open()
        Dim cmd As SqlCommand = New SqlCommand("select * from t_donor where d_id=" & did & "", con)
        Dim ds As New DataSet()
        Dim da As SqlDataAdapter = New SqlDataAdapter(cmd)
        da.Fill(ds)

        Dim rptdocument As ReportDocument = New ReportDocument()
        rptdocument.Load(Server.MapPath("CrystalReport1.rpt"))
        rptdocument.SetDataSource(ds.Tables(0))
        CrystalReportViewer1.ReportSource = rptdocument
Posted
Updated 13-Oct-12 20:12pm
v2

1 solution

 
Share this answer
 
Comments
ridoy 14-Oct-12 6:48am    
+5
vishal879 30-Aug-13 10:43am    
This can be happen when no of column supplied in crystal report does not match with dataset(coding)..when you are working with more than one table than also create only one datatable in dataset..
Monjurul Habib 15-Oct-12 16:40pm    
5!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900