コード例 #1
0
 public ClsPreparedQuery(ClsConnection_SqlServer pDa)
 {
     this.mDa = pDa;
     this.mCmd = new SqlCommand();
     this.mCmd.Connection = (SqlConnection)this.mDa.pConnection;
     this.mCmd.Transaction = (SqlTransaction)this.mDa.pTransaction;
     this.mCmd.CommandType = System.Data.CommandType.Text;
 }
コード例 #2
0
 public ClsPreparedQuery()
 {
     this.mDa = new ClsConnection_SqlServer();
     this.mDa.Connect();
     this.mCmd = new SqlCommand();
     this.mCmd.Connection = (SqlConnection)this.mDa.pConnection;
     this.mCmd.Transaction = (SqlTransaction)this.mDa.pTransaction;
     this.mCmd.CommandType = System.Data.CommandType.Text;
     //this.IsDa = true;
 }
コード例 #3
0
        public ClsPreparedQuery(ClsConnection_SqlServer pDa, string pQuery, SqlParameter[] pArrSp)
        {
            this.mDa = pDa;
            this.mCmd = new SqlCommand();
            this.mCmd.Connection = (SqlConnection)this.mDa.pConnection;
            this.mCmd.Transaction = (SqlTransaction)this.mDa.pTransaction;
            this.mCmd.CommandType = System.Data.CommandType.Text;
            this.mCmd.CommandText = pQuery;

            foreach (SqlParameter Sp in pArrSp)
            {
                this.mCmd.Parameters.Add(Sp);
            }
        }
コード例 #4
0
        public DataSet LoadExam(long ExamID)
        {
            DataSet Rv = null;
            ClsConnection_SqlServer Cn = new ClsConnection_SqlServer();
            try
            {
                Cn.Connect();
                List<Layer01_Constants.Str_Parameters> List_Sp = new List<Layer01_Constants.Str_Parameters>();
                List_Sp.Add(new Layer01_Constants.Str_Parameters("ExamID", ExamID));
                Rv = Cn.ExecuteQuery("usp_LoadExam", List_Sp);
            }
            catch { }
            finally
            { Cn.Close(); }

            return Rv;
        }
コード例 #5
0
        public DataSet GenerateExam(Int64 QuestionLimit, Int64 CategoryID)
        {
            DataSet Rv = null;
            ClsConnection_SqlServer Cn = new ClsConnection_SqlServer();
            try
            {
                Cn.Connect();
                List<Layer01_Constants.Str_Parameters> List_Sp = new List<Layer01_Constants.Str_Parameters>();
                List_Sp.Add(new Layer01_Constants.Str_Parameters("Question_Limit", QuestionLimit));
                List_Sp.Add(new Layer01_Constants.Str_Parameters("CategoryID", CategoryID));
                Rv = Cn.ExecuteQuery("usp_GenerateExam", List_Sp);
            }
            catch { }
            finally
            { Cn.Close(); }

            return Rv;
        }
        public string GetAdministratorPassword()
        {
            string Rv = "";
            ClsConnection_SqlServer Cn = new ClsConnection_SqlServer();
            try
            {
                Cn.Connect();

                List<Layer01_Constants.Str_Parameters> Sp = new List<Layer01_Constants.Str_Parameters>();
                Sp.Add(new Layer01_Constants.Str_Parameters("ParameterName", "Administrator_Password"));
                Sp.Add(new Layer01_Constants.Str_Parameters("ParameterValue", "Password"));
                Cn.ExecuteNonQuery("usp_Require_System_Parameter", Sp);
                DataTable Dt = Cn.ExecuteQuery(@"Select dbo.udf_Get_System_Parameter('Administrator_Password')").Tables[0];

                if (Dt.Rows.Count > 0)
                { Rv = (string)Layer01_Methods.IsNull(Dt.Rows[0][0], ""); }
            }
            catch { }
            finally { Cn.Close(); }

            return Rv;
        }
コード例 #7
0
 public static DateTime GetServerDate(ClsConnection_SqlServer Da)
 {
     DataTable Dt = Da.ExecuteQuery("Select GetDate() As ServerDate").Tables[0];
     if (Dt.Rows.Count > 0) return (DateTime)Dt.Rows[0][0];
     else return DateTime.Now;
 }
コード例 #8
0
 public void Connect()
 {
     this.mConnection = new ClsConnection_SqlServer();
     this.mConnection.Connect();
 }
コード例 #9
0
 public static DateTime GetServerDate()
 {
     ClsConnection_SqlServer Da = new ClsConnection_SqlServer();
     try
     {
         Da.Connect();
         return GetServerDate(Da);
     }
     catch (Exception ex)
     { throw ex; }
     finally
     { Da.Close(); }
 }
コード例 #10
0
        public static string GetSeriesNo(string Name)
        {
            string Rv = "";
            DataTable Dt;
            string TableName;
            string FieldName;
            string Prefix;
            Int32 Digits;

            Dt = new ClsBase().pDa.GetQuery("System_DocumentSeries", "", "ModuleName = '" + Name + "'");
            if (Dt.Rows.Count > 0)
            {
                TableName = (string)Layer01_Methods.IsNull(Dt.Rows[0]["TableName"], "");
                FieldName = (string)Layer01_Methods.IsNull(Dt.Rows[0]["FieldName"], "");
                Prefix = (string)Layer01_Methods.IsNull(Dt.Rows[0]["Prefix"], "");
                Digits = (Int32)Layer01_Methods.IsNull(Dt.Rows[0]["Digits"], "");
            }
            else
            { return Rv; }

            List<Layer01_Common.Common.Layer01_Constants.Str_Parameters> Sp = new List<Layer01_Common.Common.Layer01_Constants.Str_Parameters>();
            Sp.Add(new Layer01_Common.Common.Layer01_Constants.Str_Parameters("@TableName", TableName));
            Sp.Add(new Layer01_Common.Common.Layer01_Constants.Str_Parameters("@FieldName", FieldName));
            Sp.Add(new Layer01_Common.Common.Layer01_Constants.Str_Parameters("@Prefix", Prefix));
            Sp.Add(new Layer01_Common.Common.Layer01_Constants.Str_Parameters("@Digits", Digits));

            Dt = new ClsConnection_SqlServer().ExecuteQuery("usp_GetSeriesNo", Sp).Tables[0];
            if (Dt.Rows.Count > 0)
            { Rv = (string)Dt.Rows[0][0]; }

            return Rv;
        }
コード例 #11
0
 public DataTable List_Empty(string ObjectName)
 {
     ClsConnection_SqlServer Cn = new ClsConnection_SqlServer();
     try
     {
         Cn.Connect();
         return this.List_Empty(Cn, ObjectName);
     }
     catch (Exception ex)
     { throw ex; }
     finally
     { Cn.Close(); }
 }
コード例 #12
0
        public static DataTable GetQueryWithPage(ClsConnection_SqlServer Da, string ViewObject, string Fields, string Condition, string Sort, Int64 Top, Int32 Page)
        {
            string Query_RowNumberSort = Sort;
            if (Query_RowNumberSort.Trim() == "") Query_RowNumberSort = "(Select 0)";

            string Query_Top = "";
            if (Top > 0) Query_Top = "Top " + Top.ToString();

            Int64 PageCondition = 0;
            if (Page > 0)
            {
                PageCondition = Top * (Page - 1);
            }

            if (ViewObject.Trim() != "") ViewObject = " From " + ViewObject + " ";
            if (Fields.Trim() == "") Fields = " * ";
            if (Condition.Trim() != "") Condition = " Where " + Condition;
            if (Sort.Trim() != "") Sort = " Order By " + Sort;

            ClsPreparedQuery Pq = new ClsPreparedQuery(Da);
            Pq.pQuery = @"Declare @Query As VarChar(Max); Set @Query = 'Select ' + @Top ' + [Tb].* From ( Select Row_Number() Over (Order By ' + @RowNumberSort + ') As [RowNumber], ' + @Fields + ' ' + @ViewObject + ' ' + @Condition + ' ' + @Sort + ' ) As [Tb] Where [Tb].RowNumber >= ' + @PageCondtion + ''; Exec(@Query)";
            Pq.Add_Parameter("ViewObject", SqlDbType.VarChar, 8000, 0, 0, ViewObject);
            Pq.Add_Parameter("Top", SqlDbType.VarChar, 8000, 0, 0, Query_Top);
            Pq.Add_Parameter("RowNumberSort", SqlDbType.VarChar, 8000, 0, 0, Query_RowNumberSort);
            Pq.Add_Parameter("PageCondtion", SqlDbType.BigInt, 0, 0, 0, PageCondition);
            Pq.Add_Parameter("Fields", SqlDbType.VarChar, 8000, 0, 0, Fields);
            Pq.Add_Parameter("Condition", SqlDbType.VarChar, 8000, 0, 0, Condition);
            Pq.Add_Parameter("Sort", SqlDbType.VarChar, 8000, 0, 0, Sort);
            Pq.Prepare();

            return Pq.ExecuteQuery().Tables[0];
        }
コード例 #13
0
 public static DataTable GetQuery(ClsConnection_SqlServer Da, string ViewObject, string Fields)
 {
     return GetQuery(Da, ViewObject, Fields, "", "");
 }
コード例 #14
0
 public string GetSystemParameter(string ParameterName, string DefaultValue = "")
 {
     ClsConnection_SqlServer Cn = new ClsConnection_SqlServer();
     try
     {
         Cn.Connect();
         return this.GetSystemParameter(Cn, ParameterName, DefaultValue);
     }
     catch (Exception ex)
     { throw ex; }
     finally
     { Cn.Close(); }
 }
コード例 #15
0
 public static DataTable GetQueryWithPage(string ViewObject, string Fields, string Condition, string Sort, Int64 Top, Int32 Page)
 {
     ClsConnection_SqlServer Da = new ClsConnection_SqlServer();
     try
     {
         Da.Connect();
         return GetQueryWithPage(Da, ViewObject, Fields, Condition, Sort,Top,Page);
     }
     catch (Exception ex)
     {
         throw ex;
     }
     finally
     {
         Da.Close();
     }
 }
コード例 #16
0
 public static Int32 ExecuteNonQuery(string ProcedureName, Common.Layer01_Constants.Str_Parameters[] ProcedureParameters)
 {
     ClsConnection_SqlServer Da = new ClsConnection_SqlServer();
     try
     {
         Da.Connect();
         return Da.ExecuteNonQuery(ProcedureName, ProcedureParameters);
     }
     catch (Exception ex)
     {
         throw ex;
     }
     finally
     {
         Da.Close();
     }
 }
コード例 #17
0
 public static DataTable GetQueryWithPage(ClsConnection_SqlServer Da, string ViewObject)
 {
     return GetQueryWithPage(Da, ViewObject, "", "", "", 0, 0);
 }
コード例 #18
0
 public static DataTable GetQueryWithPage(ClsConnection_SqlServer Da, string ViewObject, string Fields, string Condition)
 {
     return GetQueryWithPage(Da, ViewObject, Fields, Condition, "", 0, 0);
 }
コード例 #19
0
 public static DataTable GetQueryWithPage(ClsConnection_SqlServer Da, string ViewObject, string Fields, string Condition, string Sort, Int64 Top)
 {
     return GetQueryWithPage(Da, ViewObject, Fields, Condition, Sort, Top, 0);
 }
コード例 #20
0
 public DataTable GetQuery(string ViewObject, string Fields = "", string Condition = "", string Sort = "")
 {
     ClsConnection_SqlServer Cn = new ClsConnection_SqlServer();
     try
     {
         Cn.Connect();
         return this.GetQuery(Cn, ViewObject, Fields, Condition, Sort);
     }
     catch (Exception ex)
     { throw ex; }
     finally
     { Cn.Close(); }
 }
コード例 #21
0
        public static DataTable GetQuery(ClsConnection_SqlServer Da, string ViewObject, string Fields, string Condition, string Sort)
        {
            if (ViewObject.Trim() != "") ViewObject = " From " + ViewObject + " ";
            if (Fields.Trim() == "") Fields = " * ";
            if (Condition.Trim() != "") Condition = " Where " + Condition;
            if (Sort.Trim() != "") Sort = " Order By " + Sort;

            ClsPreparedQuery Pq = new ClsPreparedQuery(Da);
            Pq.pQuery = @"Declare @Query As VarChar(Max); Set @Query = 'Select ' + @Fields + ' ' + @ViewObject + ' ' + @Condition + ' ' + @Sort; Exec(@Query)";
            Pq.Add_Parameter("ViewObject", SqlDbType.VarChar, 8000, 0, 0, ViewObject);
            Pq.Add_Parameter("Fields", SqlDbType.VarChar, 8000, 0, 0, Fields);
            Pq.Add_Parameter("Condition", SqlDbType.VarChar, 8000, 0, 0, Condition);
            Pq.Add_Parameter("Sort", SqlDbType.VarChar, 8000, 0, 0, Sort);
            Pq.Prepare();

            return Pq.ExecuteQuery().Tables[0];
        }
コード例 #22
0
 public DataTable GetQuery(string ViewObject, string Fields, ClsQueryCondition Condition, string Sort = "", long Top = 0, int Page = 0)
 {
     ClsConnection_SqlServer Da = new ClsConnection_SqlServer();
     try
     {
         Da.Connect();
         return GetQuery(Da, ViewObject, Fields, Condition, Sort, Top, Page);
     }
     catch (Exception ex)
     { throw ex; }
     finally
     { Da.Close(); }
 }
コード例 #23
0
 public static DataSet ExecuteQuery(string Query)
 {
     ClsConnection_SqlServer Da = new ClsConnection_SqlServer();
     try
     {
         Da.Connect();
         return Da.ExecuteQuery(Query);
     }
     catch (Exception ex)
     {
         throw ex;
     }
     finally
     {
         Da.Close();
     }
 }
コード例 #24
0
 public DataTable GetTableDef(string TableName)
 {
     DataTable Rv = null;
     List<Layer01_Constants.Str_Parameters> Sp = new List<Layer01_Constants.Str_Parameters>();
     Sp.Add(new Layer01_Constants.Str_Parameters("@TableName", TableName));
     ClsConnection_SqlServer Cn = new ClsConnection_SqlServer();
     try
     {
         Cn.Connect();
         Rv = Cn.ExecuteQuery("usp_GetTableDef", Sp).Tables[0];
     }
     catch { }
     finally
     { Cn.Close(); }
     return Rv;
 }
コード例 #25
0
        public bool SaveDataRow(DataRow ObjDataRow, string TableName, string SchemaName, bool IsDelete)
        {
            bool Cns_IsSoftDelete = true;

                //[-]

                if (SchemaName == "")
                { SchemaName = "dbo"; }

                eProcess cProcess = eProcess.Process_Insert;
                DataTable Dt_TableDef = new DataTable(TableName);
                DataTable Dt_Def;
                List<Layer01_Common.Common.Layer01_Constants.Str_Parameters> List_Param;

                //[Get Table Definition]
                List_Param = new List<Layer01_Common.Common.Layer01_Constants.Str_Parameters>();
                List_Param.Add(new Layer01_Common.Common.Layer01_Constants.Str_Parameters(@"@TableName", TableName));
                List_Param.Add(new Layer01_Common.Common.Layer01_Constants.Str_Parameters(@"@SchemaName", SchemaName));

                Dt_Def = this.ExecuteQuery("usp_GetTableDef", List_Param).Tables[0];
                foreach (DataRow Inner_Dr in Dt_Def.Rows)
                {
                    System.Type Inner_Type = null;
                    switch (Layer01_Methods.IsNull(Inner_Dr["DataType"], "").ToString().ToLower())
                    {
                        case "tinyint":
                            Inner_Type = typeof(System.Byte);
                            break;
                        case "smallint":
                            Inner_Type = typeof(System.Int16);
                            break;
                        case "int":
                            Inner_Type = typeof(System.Int32);
                            break;
                        case "bigint":
                            Inner_Type = typeof(System.Int64);
                            break;
                        case "bit":
                            Inner_Type = typeof(System.Boolean);
                            break;
                        case "decimal":
                        case "numeric":
                            Inner_Type = typeof(System.Double);
                            break;
                        case "datetime":
                        case "smalldatetime":
                            Inner_Type = typeof(System.DateTime);
                            break;
                        case "char":
                        case "varchar":
                        case "text":
                        case "nchar":
                        case "nvarchar":
                        case "ntext":
                            Inner_Type = typeof(System.String);
                            break;
                    }
                    Dt_TableDef.Columns.Add((string)Layer01_Methods.IsNull(Inner_Dr["ColumnName"], ""), Inner_Type);
                }

                //[Check ObjDataRow Fields for PK Data]

                bool IsFound = false;
                Int32 PKsCt = 0;
                Int32 PKsFoundCt = 0;

                DataRow[] ArrDr_Dt_Def;
                ArrDr_Dt_Def = Dt_Def.Select("IsPK = 1");
                PKsCt = ArrDr_Dt_Def.Length;

                foreach (DataRow Inner_Dr in ArrDr_Dt_Def)
                {
                    foreach (DataColumn Inner_Dc in ObjDataRow.Table.Columns)
                    {
                        if ((string)Inner_Dr["ColumnName"] == Inner_Dc.ColumnName)
                        {
                            if (Convert.ToInt64(Layer01_Methods.IsNull(ObjDataRow[Inner_Dc.ColumnName], 0)) != 0)
                            {
                                PKsFoundCt++;
                                if (PKsFoundCt >= PKsCt) break;
                            }
                        }
                    }
                }

                //Check Process
                if (PKsFoundCt != PKsCt)
                {
                    cProcess = eProcess.Process_Insert;
                    DataRow[] ArrDr_Dt_Def_Pks = Dt_Def.Select(@"IsPK = 1 And IsIdentity = 0");
                    foreach (DataRow Inner_Dr in ArrDr_Dt_Def_Pks)
                    {
                        //Check PK if there is already a value
                        //If there is, continue the loop
                        string Inner_ColumnName = (string)Layer01_Methods.IsNull(Inner_Dr["ColumnName"], "");
                        if (Convert.ToInt64(Layer01_Methods.IsNull(ObjDataRow[Inner_ColumnName], 0)) != 0)
                        { continue; }

                        ClsConnection_SqlServer Da = new ClsConnection_SqlServer();
                        try
                        {
                            Da.Connect();
                            Da.BeginTransaction();

                            Int64 NewID;
                            List_Param = new List<Layer01_Common.Common.Layer01_Constants.Str_Parameters>();
                            List_Param.Add(new Layer01_Common.Common.Layer01_Constants.Str_Parameters(@"@TableName", TableName + "." + Inner_ColumnName));
                            NewID = (Int64)Layer01_Methods.IsNull(Da.ExecuteQuery("usp_GetNextID", List_Param).Tables[0].Rows[0][0], 0);
                            ObjDataRow[Inner_ColumnName] = NewID;

                            Da.CommitTransaction();
                        }
                        catch (Exception ex)
                        {
                            Da.RollbackTransaction();
                            throw ex;
                        }
                        finally
                        {
                            Da.Close();
                            Da = null;
                        }
                    }
                }
                else
                {
                    //Check if Row to be updated has rows to be updated
                    //If none the return the function true
                    DataRow[] Inner_ArrDr = Dt_Def.Select(@"IsPk = 0 And IsIdentity = 0");
                    if (Inner_ArrDr.Length == 0) return true;
                    cProcess = eProcess.Process_Update;
                }

                if (IsDelete)
                {
                    if (cProcess == eProcess.Process_Update)
                    {
                        if (!Cns_IsSoftDelete)
                        { cProcess = eProcess.Process_Delete; }
                        else
                        { ObjDataRow["IsDeleted"] = true; }
                    }
                    else
                    { return true; }
                }

                //Prepare SQL Statement
                ClsPreparedQuery Pq = new ClsPreparedQuery(this);

                string Query_InsertFields = "";
                string Query_InsertFieldsValues = "";
                string Query_UpdateFields = "";
                string Query_Comma = "";

                foreach (DataColumn Dc_ObjDataRow in ObjDataRow.Table.Columns)
                {
                    IsFound = false;
                    foreach (DataColumn Dc_TableDef in Dt_TableDef.Columns)
                    {
                        if (Dc_ObjDataRow.ColumnName.ToLower() == Dc_TableDef.ColumnName.ToLower())
                        {
                            switch (cProcess)
                            {
                                case eProcess.Process_Insert:
                                    IsFound = true;
                                    break;
                                case eProcess.Process_Update:
                                    DataRow[] Inner_ArrDr = Dt_Def.Select(@"ColumnName = '" + Dc_ObjDataRow.ColumnName + "' And IsPk = 1");
                                    if (Inner_ArrDr.Length == 0) IsFound = true;
                                    break;
                            }
                            if (IsFound) break;
                        }
                    }

                    if (IsFound)
                    {
                        DataRow[] Inner_ArrDr_Def = Dt_Def.Select(@"ColumnName = '" + Dc_ObjDataRow.ColumnName + "'" + " And IsIdentity = 0");
                        if (Inner_ArrDr_Def.Length == 0) continue;

                        switch (cProcess)
                        {
                            case eProcess.Process_Insert:
                                Query_InsertFields += " " + Query_Comma + @" [" + Dc_ObjDataRow.ColumnName + @"] ";
                                Query_InsertFieldsValues += " " + Query_Comma + @" @" + Dc_ObjDataRow.ColumnName.Replace(@" ", @"_") + " ";
                                break;
                            case eProcess.Process_Update:
                                Query_UpdateFields += " " + Query_Comma + @" [" + Dc_ObjDataRow.ColumnName + @"] = @" + Dc_ObjDataRow.ColumnName.Replace(@" ", @"_") + " ";
                                break;
                        }

                        Query_Comma = ",";

                        SqlParameter Inner_Sp = new SqlParameter(@"@" + Dc_ObjDataRow.ColumnName.Replace(" ", "_"), this.SqlDataTypeLib((string)Inner_ArrDr_Def[0]["DataType"]), Convert.ToInt32(Inner_ArrDr_Def[0]["Length"]));
                        Inner_Sp.Direction = ParameterDirection.Input;
                        Inner_Sp.Precision = (byte)Inner_ArrDr_Def[0]["Precision"];
                        Inner_Sp.Scale = (byte)Inner_ArrDr_Def[0]["Scale"];
                        Pq.pParameters.Add(Inner_Sp);
                    }
                }

                DataRow[] Inner_ArrDr_Pk;

                switch (cProcess)
                {
                    case eProcess.Process_Insert:
                        StringBuilder Sb_Query_Output = new StringBuilder();
                        StringBuilder Sb_Query_Output_Table = new StringBuilder();
                        string Query_Output = "";
                        char Query_Output_Comma = ' ';
                        string Query_Output_Table = "";
                        string Query_Output_Table_Select = "";

                        Inner_ArrDr_Pk = Dt_Def.Select("IsPK = 1 And IsIdentity = 1");
                        foreach (DataRow Inner_Dr in Inner_ArrDr_Pk)
                        {
                            Sb_Query_Output.Append(@" " + Query_Output_Comma + @" Inserted.[" + (string)Layer01_Methods.IsNull(Inner_Dr["ColumnName"], "") + @"] Into @Tb");
                            Sb_Query_Output_Table.Append(@" " + Query_Output_Comma + @" [" + (string)Layer01_Methods.IsNull(Inner_Dr["ColumnName"], "") + @"] " + (string)Layer01_Methods.IsNull(Inner_Dr["DataType"], ""));
                            Query_Output_Comma = ',';
                        }

                        Query_Output = Sb_Query_Output.ToString();
                        if (Query_Output.Trim() != "") Query_Output = " Output " + Query_Output;

                        Query_Output_Table = Sb_Query_Output_Table.ToString();
                        if (Query_Output_Table.Trim() != "")
                        {
                            Query_Output_Table = @" Declare @Tb As Table (" + Query_Output_Table + @"); ";
                            Query_Output_Table_Select = " Select * From @Tb ";
                        }

                        if (Query_InsertFields != "")
                        {
                            Query_InsertFields = "(" + Query_InsertFields + ")";
                            Query_InsertFieldsValues = " Values (" + Query_InsertFieldsValues + ") ";
                        }
                        else
                        {
                            //This path will be reached if the table to be inserted has only one field that is an identity field
                            Query_InsertFieldsValues = " Default Values ";
                        }

                        Pq.pQuery = Query_Output_Table + " Insert Into [" + SchemaName + "].[" + TableName + "] " + Query_InsertFields + " " + Query_Output + " " + Query_InsertFieldsValues + "; " + Query_Output_Table_Select;
                        break;
                    case eProcess.Process_Update:
                        string Query_UpdateCriteria = "";
                        Query_Comma = "";

                        Inner_ArrDr_Pk = Dt_Def.Select("IsPk = 1");
                        foreach (DataRow Inner_Dr in Inner_ArrDr_Pk)
                        {
                            DataRow[] Inner_ArrDr_TableDef = Dt_Def.Select(@"ColumnName = '" + (string)Inner_Dr["ColumnName"] + @"'");
                            Query_UpdateCriteria += " " + Query_Comma + " [" + Inner_Dr["ColumnName"] + "] = @" + ((string)Inner_Dr["ColumnName"]).Replace(" ", "_") + " ";
                            Query_Comma = "And";

                            SqlParameter Inner_Sp = new SqlParameter("@" + ((string)Inner_Dr["ColumnName"]).Replace(" ", "_"), this.SqlDataTypeLib((string)Inner_Dr["DataType"]), Convert.ToInt32(Inner_Dr["Length"]));
                            Inner_Sp.Direction = ParameterDirection.Input;
                            Inner_Sp.Precision = (byte)Inner_Dr["Precision"];
                            Inner_Sp.Scale = (byte)Inner_Dr["Scale"];
                            Pq.pParameters.Add(Inner_Sp);
                        }

                        Pq.pQuery = "Update [" + SchemaName + "].[" + TableName + "] Set " + Query_UpdateFields + " Where " + Query_UpdateCriteria;
                        break;
                    case eProcess.Process_Delete:
                        string Query_DeleteCriteria = "";
                        Query_Comma = "";

                        Inner_ArrDr_Pk = Dt_Def.Select("IsPk = 1");
                        foreach (DataRow Inner_Dr in Inner_ArrDr_Pk)
                        {
                            DataRow[] Inner_ArrDr_TableDef = Dt_Def.Select(@"ColumnName = '" + (string)Inner_Dr["ColumnName"] + @"'");
                            Query_DeleteCriteria += " " + Query_Comma + " [" + Inner_Dr["ColumnName"] + "] = @" + ((string)Inner_Dr["ColumnName"]).Replace(" ", "_") + " ";
                            Query_Comma = "And";

                            SqlParameter Inner_Sp = new SqlParameter("@" + ((string)Inner_Dr["ColumnName"]).Replace(" ", "_"), this.SqlDataTypeLib((string)Inner_Dr["DataType"]), Convert.ToInt32(Inner_Dr["Length"]));
                            Inner_Sp.Direction = ParameterDirection.Input;
                            Inner_Sp.Precision = (byte)Inner_Dr["Precision"];
                            Inner_Sp.Scale = (byte)Inner_Dr["Scale"];
                            Pq.pParameters.Add(Inner_Sp);
                        }

                        Pq.pQuery = "Delete [" + SchemaName + "].[" + TableName + "] Where " + Query_DeleteCriteria;
                        break;
                }

                Pq.Prepare();

                foreach (DataColumn Dc_ObjDataRow in ObjDataRow.Table.Columns)
                {
                    foreach (SqlParameter Inner_Sp in Pq.pParameters)
                    {
                        if ("@" + Dc_ObjDataRow.ColumnName.Replace(" ", "_") == Inner_Sp.ParameterName)
                        {
                            if (Information.IsDBNull(Dc_ObjDataRow)) Inner_Sp.Value = DBNull.Value;
                            else Inner_Sp.Value = this.SqlConvertDataType(ObjDataRow[Dc_ObjDataRow], Inner_Sp.SqlDbType.ToString());
                            continue;
                        }
                    }
                }

                DataSet Ds_Output;
                DataTable Dt_Output;

                Ds_Output = Pq.ExecuteQuery();
                if (Ds_Output.Tables.Count > 0)
                {
                    Dt_Output = Ds_Output.Tables[0];
                    foreach (DataColumn Inner_Dc in Dt_Output.Columns)
                    {
                        ObjDataRow[Inner_Dc.ColumnName] = Dt_Output.Rows[0][Inner_Dc.ColumnName];
                    }
                }
                return true;
        }
コード例 #26
0
 public void SetSystemParameter(string ParameterName, string ParameterValue)
 {
     ClsConnection_SqlServer Cn = new ClsConnection_SqlServer();
     try
     {
         Cn.Connect();
         this.SetSystemParameter(ParameterName, ParameterValue);
     }
     catch (Exception ex)
     { throw ex; }
     finally
     { Cn.Close(); }
 }
コード例 #27
0
        public static DataTable GetQuery(ClsConnection_SqlServer Da, string ViewObject, string Fields, ClsQueryCondition Condition, string Sort = "", Int64 Top = 0, Int32 Page = 0)
        {
            string Query_RowNumberSort = Sort;
            if (Query_RowNumberSort.Trim() == "") Query_RowNumberSort = "(Select 0)";

            string Query_Top = "";
            if (Top > 0) Query_Top = "Top " + Top.ToString();

            Int64 PageCondition = 0;
            if (Page > 0)
            { PageCondition = Top * (Page - 1); }

            if (ViewObject.Trim() != "") ViewObject = " From " + ViewObject + " ";
            if (Fields.Trim() == "") Fields = " * ";
            if (Sort.Trim() != "") Sort = " Order By " + Sort;

            ClsPreparedQuery Pq = new ClsPreparedQuery(Da);
            Pq.Add_Parameter("ViewObject", SqlDbType.VarChar, 8000, 0, 0, ViewObject);
            Pq.Add_Parameter("Fields", SqlDbType.VarChar, 8000, 0, 0, Fields);
            Pq.Add_Parameter("Sort", SqlDbType.VarChar, 8000, 0, 0, Sort);

            string Query_Condition = "";
            if (Condition != null)
            {
                Query_Condition = " Where 1 = 1 ";
                Query_Condition += " And " + Condition.GetQueryCondition();
                Pq.Add_Parameter(Condition.GetParameters());
            }

            Pq.pQuery = @"Select " + Query_Top + @" [Tb].* From ( Select Row_Number() Over (Order By " + Query_RowNumberSort + @") As [RowNumber], " + Fields + " " + ViewObject + " " + Query_Condition + @" ) As [Tb] Where [Tb].RowNumber > " + PageCondition + " " + Sort;
            Pq.Prepare();

            return Pq.ExecuteQuery().Tables[0];
        }