-----------------------------------------------------------

New Message on BDOTNET

-----------------------------------------------------------
From: venkat_kl
Message 2 in Discussion

Hi   try this  Crystal Report using MySQL and .NET   Here is the basic code to 
load a report and populate it from a dataset:    Imports 
CrystalDecisions.CrystalReports.Engine 
Imports System.Data 
Imports MySql.Data.MySqlClient    Dim myReport As New ReportDocument 
Dim myData As New DataSet 
Dim conn As New MySqlConnection 
Dim cmd As New MySqlCommand 
Dim myAdapter As New MySqlDataAdapter    conn.ConnectionString = _ 
"server=127.0.0.1;" _ 
& "uid=root;" _ 
& "pwd=12345;" _ 
& "database=test"    Try 
conn.Open()  cmd.CommandText = "SELECT city.name AS cityName, city.population 
AS CityPopulation, " _ 
& "country.name, country.population, country.continent " _ 
& "FROM country, city ORDER BY country.continent, country.name"  
cmd.Connection = conn    myAdapter.SelectCommand = cmd  
myAdapter.Fill(myData)    myReport.Load(".\world_report.rpt") 
myReport.SetDataSource(myData) 
myViewer.ReportSource = myReport  
Catch ex As Exception 
    MessageBox.Show(ex.Message, "Report could not be  created",  
MessageBoxButtons.OK, MessageBoxIcon.Error) 
End Try   bye venkat_kl

-----------------------------------------------------------

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the "Remove" link below. On the 
pre-addressed e-mail message that opens, simply click "Send". Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]

Reply via email to