Click here to Skip to main content
15,881,380 members
Articles / Multimedia / GDI+

Internal Supply Chain, Visibility via 200 plus 3D Chart Reports - Part II

Rate me:
Please Sign up or sign in to vote.
5.00/5 (15 votes)
8 Oct 2009CPOL4 min read 53.6K   5.3K   46  
This article focuses on internal supply chain management systems visibility via chart reports, and provides assessment apparatus to manage and monitor activities spawned during business processes, hence paves the way for timely and precise business decisions.
using System;
using System.Collections.Generic;
using System.Text;
using System.Data.OleDb;
using System.Data;


namespace ISCMS.DataAccess.Order
{
    class Sales : ISCMS.DataAccess.Access
    {
        public System.Data.DataSet GetList()
        {
            System.Data.DataSet data = new DataSet();
            con = new OleDbConnection(connection);
            dsCommand = new OleDbCommand();
            dsCommand.Connection = con;

            try
            {
                con.Open();
                dsCommand.CommandText = "select * from Goods";
                IDataReader dr = dsCommand.ExecuteReader();
                data.Tables.Add("List");
                data.Load(dr, LoadOption.OverwriteChanges, "List");
                dr.Close();
            }
            catch
            {
                throw new ApplicationException("Data error.");
            }
            finally
            {
                con.Close();
            }
            return data;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Software Developer
Pakistan Pakistan
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.
This is a Organisation

33 members

Comments and Discussions