![]() |
Languages »
C# »
Reporting
Intermediate
License: The Code Project Open License (CPOL)
Using Crystal Report with Oracle and parametrized Query (Passing sql query parameters to crystal reports)By Rehan Ahmad AbbasiUsing Crystal Report with Oracle and parametrized Query (C#.net windows application). Passing sql query parameters to crystal reports |
C# (C# 1.0, C# 2.0, C# 3.0), Windows (Win2K, WinXP, Win2003, Vista), .NET (.NET 1.0, .NET 1.1, .NET 2.0, .NET 3.0), Visual Studio (VS.NET2003, VS2005), ADO.NET, Oracle, Architect, Dev
|
||||||||
|
Advanced Search |
|
|
|
||||||||||||||||
This article gives an idea as how to use Crystal report in .Net Windows Application with parametrized queries and Oracle as Database using dataset.I had searched on internet for articles related to Crystal Report with parametrized query with Oracle,but I was unable to find any good article on this topic.So I am posting my article on this topic.
There are three main points in this article.
1. Crystal Report with parametrized query.
2. Using Oracle Views because here stored procedure will not be able to do this job because of the fact that Oracle Stored Procedure does not return Multiple Rows(Record Set) as Sql Server Stored Procedures do.
3. Using DataSet.
Hence I have used Oracle views in this project to bind the Crystal Report and Dataset.Then I wrote my parametrized query on the view as we do generally on database tables. So this Project will give a good idea on how to Use Crystal Report with Oracle. There are many methods to do this job, even we can create Oracle packeges which will return mutiple records as SQl Server Stored Procedures. But I found this way simple and fast to do.
No special background knowledge is needed for this article. Any beginner or Intermediate will be able to understand this code.It will be good if you have a basic knowledge of database views.
I have created 2 sample tables and a view for this project. Scripts of tables and view are as follows, with some sample insert query to have sample data
create table tbl_project ( PROJECT_ID NUMBER(4), PROJECT_NAME VARCHAR2(150), GROUP_CODE NUMBER(2) ) create table tbl_project_group ( GROUP_CODE NUMBER(2), GROUP_NAME VARCHAR2(100) ); create view view_project as select a.PROJECT_NAME "PROJECT_NAME",b.GROUP_NAME "GROUP_NAME", a.GROUP_CODE "GROUP_CODE" from tbl_project a,tbl_project_group b where a.GROUP_CODE=b.GROUP_CODE; insert into tbl_project values(1,'CrystalReportWithOracle',1); insert into tbl_project values(2,'Ajax Application',2); insert into tbl_project_group values(1,'windows application'); insert into tbl_project_group values(2,'Web application');
There is a Combo Box in which the user can select his choice of project type so that the application generates a dynamic report on the user selection. Code to fill the combo box is as follows.
String Query = "Select GROUP_CODE,GROUP_NAME from tbl_project_group order by GROUP_CODE ASC"; DLApplication oDl = new DLApplication(); OracleConnection Conn = oDl.GetCon(); DataView dv = oDl.getDataView(Query, Conn); cmb_type.DataSource = dv; cmb_type.ValueMember = "GROUP_CODE"; cmb_type.DisplayMember = "GROUP_NAME"; cmb_type.SelectedIndex = -1;
In the above code getDataView() function is called with required parameters. This function resides in the DLApplication class.
The main function which is binding the crystal report is given below, when ever the user changes his choice from the combo box a new report is generated for the selected combo value.
// private void cmb_type_SelectedIndexChanged(object sender, EventArgs e) { if (Convert.ToInt32(cmb_type.SelectedIndex) == -1 || (Convert.ToString(cmb_type.SelectedValue) == "System.Data.DataRowView")) { return; } CrystalReport1 objRpt; objRpt = new CrystalReport1(); String ConnStr = "SERVER=newsdb;USER ID=ppms;PWD=ppms"; OracleConnection myConnection = new OracleConnection(ConnStr); // Here I am writing my query over the view // we cannot write query directly over the tables because it will be a // join query and we will not be able to fill our adapter easily. string Query1 = "select PROJECT_NAME,GROUP_NAME from view_project where GROUP_CODE=" + cmb_type.SelectedValue; OracleDataAdapter adapter = new OracleDataAdapter(Query1, ConnStr); DataSet1 Ds = new DataSet1(); adapter.Fill(Ds, "view_project"); if (Ds.Tables[0].Rows.Count == 0) { MessageBox.Show("No data Found", "Project Tracker Suite"); return; } objRpt.SetDataSource(Ds); CrystalDecisions.CrystalReports.Engine.TextObject root; root = (CrystalDecisions.CrystalReports.Engine.TextObject) objRpt.ReportDefinition.ReportObjects["txtHeader"]; root.Text = "Sample Report With Parameter!!"; crystalReportViewer1.ReportSource = objRpt; } } //
The DLApplication.cs file contains function which returns Oracle Data View, Oracle Data Reader etc. You can have a look at the class file.
using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Data.OracleClient; namespace CrystalReportWithOracle { public class DLApplication { private const String My_name = " DLApplication : "; private static String m_sConStr = "SERVER=yourdB;USER ID=user1;PWD=pass"; private int userId; public int propertyUserId { get { return userId; } set { userId = value; } } public OracleConnection GetCon() { try { OracleConnection sqlcon = new OracleConnection(m_sConStr); return sqlcon; } catch (Exception ex) { throw new System.ApplicationException(My_name + " GetCon: " + ex.Message); } } public OracleDataReader GetSqlReader(String Sql, ref OracleConnection con) { try { OracleCommand objOraCmd = new OracleCommand(); OracleDataReader objOraDrRead; objOraCmd.Connection = con; objOraCmd.CommandType = CommandType.Text; objOraCmd.CommandText = Sql; if (con.State != ConnectionState.Open) con.Open(); objOraDrRead = objOraCmd.ExecuteReader(CommandBehavior.CloseConnection); return objOraDrRead; } catch (Exception ex) { throw new System.ApplicationException(My_name + " GetSqlReader: " + ex.Message); } } public void CloseCon(ref OracleConnection thisCon) { try { if (thisCon.State != ConnectionState.Closed) thisCon.Close(); } catch (Exception ex) { throw new System.ApplicationException(My_name + " CloseCon: " + ex.Message); } } public void ExecNonQuery(String sQuery) { OracleConnection objCon = new OracleConnection(m_sConStr); OracleCommand objCmd; try { objCon.Open(); objCmd = objCon.CreateCommand(); objCmd.CommandText = sQuery; objCmd.ExecuteNonQuery(); } catch (Exception ex) { throw new System.ApplicationException(My_name + " ExecNonQuery : " + ex.Message); } finally { if (objCon.State == ConnectionState.Open) objCon.Close(); } } public DataView getDataView(String Query, OracleConnection Conn) { try { OracleDataAdapter oDa; DataSet ds; oDa = new OracleDataAdapter(Query, Conn); ds = new DataSet(); oDa.Fill(ds); if (Conn.State != ConnectionState.Closed) Conn.Close(); return (ds.Tables[0].DefaultView); } catch (Exception ex) { throw new System.ApplicationException(My_name + " getDataView : " + ex.Message); } finally { if (Conn.State != ConnectionState.Closed) Conn.Close(); } } } }
Oracle Stored procedures do not return multiple records, we can use packege instead,but here I have used Views which is much more easy and simple to understand.
Soon I will post my articles on other topics such as:-
1. Posting data To HTTPS (https i,e. Secure Connection) url from a windows application(.Net) by attaching Digital Certificates and getting the response back.
2. Ajax Techniques.
I will update this article to give a more clear picture on this topic
| You must Sign In to use this message board. | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
General
News
Question
Answer
Joke
Rant
Admin
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 3 Aug 2008 Editor: |
Copyright 2008 by Rehan Ahmad Abbasi Everything else Copyright © CodeProject, 1999-2009 Web09 | Advertise on the Code Project |