Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new to Visual Studio 2010 C#. I'm creating an application which creates a report. The information that will be displayed in the report is from the MySQL Server. I already installed the Crystal Reports. However, I do have some problems with getting data from MySQL because I can't find the data from MySQL. The data shown in the Report Creation Wizard in not the database files in MySQL but the forms I created in C#. Please help.

Screenshots:

enter image description here

enter image description here

share|improve this question
The tag 'reporting-services' is invalid for your question – niktrs Aug 5 '11 at 6:20
You should creat a new connection in order to see your mysql db. – maniacneron Aug 5 '11 at 8:13

2 Answers

DataAccess.Connection.Close();
DataAccess.Connection.Open();
DataAccess.dataAdapter = new SqlDataAdapter(" SELECT sales.qty, sales.ord_date, sales.payterms, stores.stor_name, stores.stor_id, titles.title_id, titles.title, titles.price, (sales.qty * titles.price) AS Total FROM sales INNER JOIN stores ON sales.stor_id = stores.stor_id INNER JOIN  titles ON sales.title_id = titles.title_id", DataAccess.Connection);

DataAccess.dataTable = new DataTable();
DataAccess.dataAdapter.Fill(DataAccess.dataTable);
Bind.DataSource = DataAccess.dataTable;
string temp = DataAccess.dataTable.Rows[0][3].ToString();


Excel.Application xlApp2 = new Excel.Application();
xlApp2.Visible = true;
Excel.Workbook Workbook2 = xlApp2.Workbooks.Add(1);
Excel.Worksheet Worksheet2 = (Excel.Worksheet)Workbook2.Sheets[1];


Worksheet2.Cells[1, 1] = "Sales Report";
Worksheet2.Cells[3, 1] = temp.ToUpper();
Worksheet2.Cells[4, 2] = "Order Date";
Worksheet2.Cells[4, 3] = "Payment Terms";
Worksheet2.Cells[4, 4] = "Store Name";
Worksheet2.Cells[4, 5] = "Store ID";
Worksheet2.Cells[4, 6] = "Title ID";
Worksheet2.Cells[4, 7] = "Book Title";
Worksheet2.Cells[4, 8] = "Unit Price";
Worksheet2.Cells[4, 9] = "Total Price";



int intCount2 = 5;
int TotalRec = 0;
int finecort = 0;
decimal cost = 0;
decimal cost1 = 0;





for (int n = 0; n < DataAccess.dataTable.Rows.Count; n++)
{
  if (DataAccess.dataTable.Rows[n][3].ToString().Equals(temp))
  {
    Worksheet2.Cells[intCount2, "C"] = DataAccess.dataTable.Rows[n][0];
    Worksheet2.Cells[intCount2, "B"] = DataAccess.dataTable.Rows[n][1];
    Worksheet2.Cells[intCount2, "D"] = DataAccess.dataTable.Rows[n][3];
    Worksheet2.Cells[intCount2, "E"] = DataAccess.dataTable.Rows[n][4];
    Worksheet2.Cells[intCount2, "F"] = DataAccess.dataTable.Rows[n][5];
    Worksheet2.Cells[intCount2, "G"] = DataAccess.dataTable.Rows[n][6];
    Worksheet2.Cells[intCount2, "H"] = DataAccess.dataTable.Rows[n][7];
    Worksheet2.Cells[intCount2, "I"] = DataAccess.dataTable.Rows[n][8];




      intCount2++;
      TotalRec++;
      finecort++;
      cost += Convert.ToDecimal(DataAccess.dataTable.Rows[n][8]);
      cost1 += Convert.ToDecimal(DataAccess.dataTable.Rows[n][8]);
      }
      else
      {
        Worksheet2.Cells[intCount2, "B"] = ("Number of records in " + temp + " group are" + TotalRec + " and the cost is R" + cost1);
         TotalRec = 0;
         cost1 = 0;
         temp = DataAccess.dataTable.Rows[n][3].ToString();
         Worksheet2.Cells[intCount2 + 2, "A"] = temp.ToUpper();

         Worksheet2.Cells[intCount2 + 3, "B"] = "Order Date";
         Worksheet2.Cells[intCount2 + 3, "C"] = "Quantity";
         Worksheet2.Cells[intCount2 + 3, "D"] = "Store Name";
         Worksheet2.Cells[intCount2 + 3, "E"] = "Store ID";
         Worksheet2.Cells[intCount2 + 3, "F"] = "Title ID";
         Worksheet2.Cells[intCount2 + 3, "G"] = "Book Title";
         Worksheet2.Cells[intCount2 + 3, "H"] = "Unit Price";
         Worksheet2.Cells[intCount2 + 3, "I"] = "Total Price";

         intCount2 += 4;




         }
         Worksheet2.Cells.Columns.AutoFit();

    }

   Worksheet2.Cells[intCount2, "B"] = ("Number of records in " + temp + " group=" + TotalRec);
   Worksheet2.Cells[intCount2 + 2 ,"A"] = "2013 Sales Report records added upto ";
   Worksheet2.Cells[intCount2 + 2, "B"] = finecort;
   Worksheet2.Cells[intCount2 + 3, "A"] = "Grrand Total of all records ";
   Worksheet2.Cells[intCount2 + 3, "B"] = "R"+cost;
   Worksheet2.Range[Worksheet2.Cells[1, "A"], Worksheet2.Cells[1, "I"]].Merge();
   Worksheet2.Cells.Columns.AutoFit();
   DataAccess.Connection.Close();
share|improve this answer
what does this answer mean about creating Crystal Reports report over MySQL? – Emanuele Greco Jun 11 at 9:58

Here I found the solution that fits for you question.

Crystal Reports can use an ODBC DSN to connect to a database from which you to extract data and information for reporting purposes.

Note There is a known issue with certain versions of Crystal Reports where the application is unable to open and browse tables and fields through an ODBC connection. Before using Crystal Reports with MySQL, please ensure that you have update to the latest version, including any outstanding service packs and hotfixes. For more information on this issue, see the Business) Objects Knowledgebase for more information.

Follow these steps:

  1. Create a DSN using the Data Sources (ODBC) tool. You can either specify a complete database, including user name and password, or you can build a basic DSN and use Crystal Reports to set the user name and password.
  2. Start the Cross-Tab Report Wizard, either by clicking the option on the Start Page. Expand the Create New Connection folder, then expand the ODBC (RDO) folder to obtain a list of ODBC data sources.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.