当前位置: 首页>>代码示例>>C#>>正文


C# Connect.Getconn方法代码示例

本文整理汇总了C#中Connect.Getconn方法的典型用法代码示例。如果您正苦于以下问题:C# Connect.Getconn方法的具体用法?C# Connect.Getconn怎么用?C# Connect.Getconn使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Connect的用法示例。


在下文中一共展示了Connect.Getconn方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GetLocation

 public DataSet GetLocation()
 {
     Connect con_obj = new Connect();
       con = con_obj.Getconn();
       DataSet dsL = new DataSet();
       SqlCommand cmd = new SqlCommand("GetLocation_SP", con);
       cmd.CommandType = CommandType.StoredProcedure;
       SqlDataAdapter da = new SqlDataAdapter(cmd);
       da.Fill(dsL);
      return dsL;
 }
开发者ID:vishalagrawal123,项目名称:CMS,代码行数:11,代码来源:Location.cs

示例2: GetAllLocation

    public DataSet GetAllLocation()
    {
        Connect objcon = new Connect();
        SqlConnection con = objcon.Getconn();

        DataSet DSGetLoc = new DataSet();
        SqlCommand cmd = new SqlCommand("GetAllLocation_SP", con);
        cmd.CommandType = CommandType.StoredProcedure;
        SqlDataAdapter da = new SqlDataAdapter(cmd);
        da.Fill(DSGetLoc);
        return DSGetLoc;
    }
开发者ID:vishalagrawal123,项目名称:CMS,代码行数:12,代码来源:Location.cs

示例3: SaveLocation

    public void SaveLocation(string locationName)
    {
        try
        {

            Connect con_obj = new Connect();
            con = con_obj.Getconn();
            SqlCommand cmd = new SqlCommand("SaveLocation", con);
            cmd.CommandType = CommandType.StoredProcedure;

            cmd.Parameters.AddWithValue("@LocationName",locationName);
            con.Open();
            cmd.ExecuteNonQuery();
            con.Close();

        }

          catch (Exception ex)
          {
              ex.Message.ToString();
          }
    }
开发者ID:vishalagrawal123,项目名称:CMS,代码行数:22,代码来源:Location.cs

示例4: BulkInsertDataTable

    public bool BulkInsertDataTable(string tableName, DataTable dataTable)
    {
        Connect con_obj = new Connect();
        SqlConnection connection = con_obj.Getconn();
        // Open a connection to the AdventureWorks database.
        using (connection)
        {

            connection.Open();
            // Perform an initial count on the destination table.
            SqlCommand commandRowCount = new SqlCommand("SELECT COUNT(*) FROM " + "dbo.TblEmployee;", connection);
            long countStart = System.Convert.ToInt32(
                commandRowCount.ExecuteScalar());
            // Create a table with some rows.
            DataTable newProducts = dataTable;

            // Create the SqlBulkCopy object.
            // Note that the column positions in the source DataTable
            // match the column positions in the destination table so
            // there is no need to map columns.
            using (SqlBulkCopy bulkCopy = new SqlBulkCopy(connection))
            {
                bulkCopy.DestinationTableName = "dbo.TblEmployee";

                try
                {
                    // Write from the source to the destination.
                    bulkCopy.WriteToServer(newProducts);
                }
                catch (Exception ex)
                {
                    Console.WriteLine(ex.Message);
                }
            }

            // Perform a final count on the destination
            // table to see how many rows were added.
            long countEnd = System.Convert.ToInt32(commandRowCount.ExecuteScalar());
            Console.WriteLine("Ending row count = {0}", countEnd);
            Console.WriteLine("{0} rows were added.", countEnd - countStart);
            Console.WriteLine("Press Enter to finish.");
            Console.ReadLine();
            return true
               ;
        }
    }
开发者ID:vishalagrawal123,项目名称:CMS,代码行数:46,代码来源:Employee.cs

示例5: ValidateUploadedData

    public DataSet ValidateUploadedData()
    {
        Connect objcon = new Connect();
        SqlConnection con = objcon.Getconn();

        DataSet DSvalid = new DataSet();
        SqlCommand cmd = new SqlCommand("ValidateEmplyee_SP", con);
        cmd.CommandType = CommandType.StoredProcedure;
        SqlDataAdapter da = new SqlDataAdapter(cmd);
        da.Fill(DSvalid);
        return DSvalid;
    }
开发者ID:vishalagrawal123,项目名称:CMS,代码行数:12,代码来源:Employee.cs

示例6: Update_Emp

    public int Update_Emp(int Empid, string lmid, string Name, string ProjectName, string Competency, string Location, string Vertical, string CustomerName, string DeliveryManager, string AccountCategory, string IsActive)
    {
        try
        {
            Connect con_obj = new Connect();
            SqlConnection con = con_obj.Getconn(); ;
            SqlCommand cmd = new SqlCommand("UpdateEmp_SP", con);
            cmd.CommandType = CommandType.StoredProcedure;
            cmd.Parameters.Add("@EmpId", SqlDbType.NVarChar, 50).Value = Empid;
            cmd.Parameters.Add("@MID", SqlDbType.NVarChar, 50).Value = lmid;
            cmd.Parameters.Add("@Name", SqlDbType.NVarChar, 50).Value = Name;
            cmd.Parameters.Add("@ProjectName", SqlDbType.NVarChar, 50).Value = ProjectName;
            cmd.Parameters.Add("@Competency", SqlDbType.NVarChar, 50).Value = Competency;
            cmd.Parameters.Add("@Location", SqlDbType.NVarChar, 50).Value = Location;
            cmd.Parameters.Add("@Vertical", SqlDbType.NVarChar, 50).Value = Vertical;
            cmd.Parameters.Add("@CustomerName", SqlDbType.NVarChar, 50).Value = CustomerName;
            cmd.Parameters.Add("@DeliveryManager", SqlDbType.NVarChar, 50).Value = DeliveryManager;
            cmd.Parameters.Add("@AccountCategory", SqlDbType.NVarChar, 50).Value = AccountCategory;
            cmd.Parameters.Add("@IsActive", SqlDbType.NVarChar, 50).Value = IsActive;

            con.Open();
            cmd.ExecuteNonQuery();
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.ToString());
        }
        finally
        {
            con.Close();
        }

        return -1;
    }
开发者ID:vishalagrawal123,项目名称:CMS,代码行数:34,代码来源:Employee.cs

示例7: SaveEmployee

    public void SaveEmployee(string MID, string Name, string Competency, string Location, string Vertical, string CustomerName, string ProjectName, string DeliveryManager, string AccountCategory, int IsActive)
    {
        try
        {

            Connect con_obj = new Connect();
            con = con_obj.Getconn();
            SqlCommand cmd = new SqlCommand("SaveEmployee", con);
            cmd.CommandType = CommandType.StoredProcedure;

            cmd.Parameters.AddWithValue("@MID", MID);
            cmd.Parameters.AddWithValue("@Name", Name);
            cmd.Parameters.AddWithValue("@Competency", Competency);
            cmd.Parameters.AddWithValue("@Location", Location);
            cmd.Parameters.AddWithValue("@Vertical", Vertical);
            cmd.Parameters.AddWithValue("@CustomerName", CustomerName);
            cmd.Parameters.AddWithValue("@ProjectName", ProjectName);
            cmd.Parameters.AddWithValue("@DeliveryManager", DeliveryManager);
            cmd.Parameters.AddWithValue("@AccountCategory", AccountCategory);
            cmd.Parameters.AddWithValue("@IsActive", IsActive);
            con.Open();
            cmd.ExecuteNonQuery();
            con.Close();

        }

        catch (Exception ex)
        {
            ex.Message.ToString();
        }
    }
开发者ID:vishalagrawal123,项目名称:CMS,代码行数:31,代码来源:Employee.cs

示例8: importdatafromexcel

    //public DataSet showEmpid()
    //{
    //    DataSet ds = new DataSet();
    //    try
    //    {
    //        Connect con_obj = new Connect();
    //        con = con_obj.Getconn();
    //        SqlCommand cmd = new SqlCommand("ShowEmpid", con);
    //        SqlDataAdapter ad = new SqlDataAdapter(cmd);
    //        con.Open();
    //        cmd.ExecuteScalar();
    //        ad.Fill(ds, "Emp");
    //        con.Close();
    //        return ds;
    //    }
    //    catch (Exception ex)
    //    {
    //        ex.Message.ToString();
    //    }
    public void importdatafromexcel(string excelfilepath)
    {
        excelfilepath = "D:\\SVNYoujobs_21-2-2014\\trunk\\Projects\\CMS\\Uploads\\dataupload.xlsx";
        //declare variables - edit these based on your particular situation
        string ssqltable = "tdatamigrationtable";
        // make sure your sheet name is correct, here sheet name is sheet1, so you can change your sheet name if have  different

        string myexceldataquery = "select student,rollno,course from [sheet1$]";
        try
        {

            //create our connection strings
            //  string sexcelconnectionstring = " SELECT * INTO XLImport3 FROM OPENDATASOURCE('Microsoft.Jet.OLEDB.4.0','Data Source=D:\\SVNYoujobs_21-2-2014\\trunk\\Projects\\CMS\\Uploads\\dataupload.xlsx;Extended Properties=Excel 8.0')...[Sheet1$]'";
            string sexcelconnectionstring = (@"Provider=Microsoft.Jet.OLEDB.4.0;DataSource=D:\\SVNYoujobs_21-2-2014\\trunk\\Projects\\CMS\\Uploads\\dataupload.xlsx;Extended Properties='Excel 8.0;HDR=NO;IMEX=1'");
            //string sexcelconnectionstring = String.Format(@"Provider=Microsoft.ACE.OLEDB.12.0; Data Source=" + Server.MapPath("template.xlsx") + ";Extended Properties="Excel 12.0 Xml;HDR=YES";", excelfilepath);
            //string sexcelconnectionstring = @"provider=microsoft.jet.oledb.4.0;data source=" + excelfilepath +";extended properties=" + "\"excel 8.0;hdr=yes;\"";
            //execute a query to erase any previous data from our destination table
            string sclearsql = "delete from " + ssqltable;

            Connect con_obj = new Connect();
            SqlConnection sqlconn = con_obj.Getconn();
            SqlCommand sqlcmd = new SqlCommand(sclearsql, sqlconn);
            sqlconn.Open();
            sqlcmd.ExecuteNonQuery();
            sqlconn.Close();

            //series of commands to bulk copy data from the excel file into our sql table
            OleDbConnection oledbconn = new OleDbConnection(sexcelconnectionstring);
            OleDbCommand oledbcmd = new OleDbCommand(myexceldataquery, oledbconn);
            oledbconn.Open();
            OleDbDataReader dr = oledbcmd.ExecuteReader();
            SqlBulkCopy bulkcopy = new SqlBulkCopy(sqlconn);
            bulkcopy.DestinationTableName = ssqltable;

            while (dr.Read())
            {
                bulkcopy.WriteToServer(dr);
            }

            oledbconn.Close();
        }
        catch (Exception ex)
        {
            //handle exception
        }
    }
开发者ID:vishalagrawal123,项目名称:CMS,代码行数:65,代码来源:Employee.cs

示例9: GetEmployee

    public DataSet GetEmployee()
    {
        Connect objcon = new Connect();
        SqlConnection con = objcon.Getconn();

        DataSet DSJobListed = new DataSet();
        SqlCommand cmd = new SqlCommand("GetEmplyee_SP", con);
        cmd.CommandType = CommandType.StoredProcedure;
        SqlDataAdapter da = new SqlDataAdapter(cmd);
        da.Fill(DSJobListed);
        return DSJobListed;
    }
开发者ID:vishalagrawal123,项目名称:CMS,代码行数:12,代码来源:Employee.cs


注:本文中的Connect.Getconn方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。