示例#1
0
        public static System.Data.DataSet SelectedRowsDataSet(System.Data.DataView dv, ArrayList selectedRows)
        {
            System.Data.DataSet ds = new System.Data.DataSet();
            System.Data.DataTable dt = new System.Data.DataTable();
            System.Data.DataRowView[] selectedRowsView = new System.Data.DataRowView[selectedRows.Count];

            foreach(System.Data.DataColumn col in dv.Table.Columns)
            {
                dt.Columns.Add(col.ColumnName, col.DataType);
            }

            for (int i = 0; i < selectedRows.Count; i++)
            {
                dt.ImportRow(dv[(int)(selectedRows.ToArray())[i]].Row);
            }

            ds.Tables.Add(dt);

            return(ds);
        }
示例#2
0
        public int GoRelatory(List <object> obj)
        {
            string sqlcommand_l = @"SELECT  * FROM Legislacao
WHERE(Tipo LIKE 'LEI')
AND(Data BETWEEN @Data1 AND @Data2)
AND(Situacao LIKE @Situacao)
AND(Origem LIKE @Origem) AND(Excluido = 0)
ORDER BY Data DESC, Numero DESC";

            string sqlcommand_lc = @"SELECT  * FROM Legislacao
WHERE(Tipo LIKE 'LEI COMPLEMENTAR')
AND(Data BETWEEN @Data1 AND @Data2)
AND(Situacao LIKE @Situacao)
AND(Origem LIKE @Origem) AND(Excluido = 0)
ORDER BY Data DESC, Numero DESC";

            string sqlcommand_d = @"SELECT  * FROM Legislacao
WHERE(Tipo LIKE 'DECRETO')
AND(Data BETWEEN @Data1 AND @Data2)
AND(Situacao LIKE @Situacao)
AND(Origem LIKE @Origem) AND(Excluido = 0)
ORDER BY Data DESC, Numero DESC";

            var dataAccess = Data.Factory.Connecting(DataBase.Base.Governo);
            int total      = 0;

            DE.ResetValues();
            LO.ResetValues();
            LC.ResetValues();

            try
            {
                dataAccess.AddParameters("@Data1", (string)obj[3]);
                dataAccess.AddParameters("@Data2", (string)obj[4]);
                dataAccess.AddParameters("@Situacao", (string)obj[5]);
                dataAccess.AddParameters("@Origem", (string)obj[6]);

                var full_data = new System.Data.DataTable();
                var d_leis    = new System.Data.DataTable();
                var d_leis_c  = new System.Data.DataTable();
                var d_decs    = new System.Data.DataTable();

                full_data = dataAccess.Read("SELECT  * FROM Legislacao WHERE (Tipo LIKE 'ZERO')");
                full_data.Clear();

                if ((bool)obj[0])
                {
                    d_leis = dataAccess.Read(sqlcommand_l);
                }

                if ((bool)obj[0])
                {
                    d_leis_c = dataAccess.Read(sqlcommand_lc);
                }

                if ((bool)obj[0])
                {
                    d_decs = dataAccess.Read(sqlcommand_d);
                }

                foreach (System.Data.DataRow rl in d_leis.Rows)
                {
                    full_data.ImportRow(rl);
                }

                foreach (System.Data.DataRow rlc in d_leis_c.Rows)
                {
                    full_data.ImportRow(rlc);
                }

                foreach (System.Data.DataRow rd in d_decs.Rows)
                {
                    full_data.ImportRow(rd);
                }

                d_leis.Clear();
                d_leis_c.Clear();
                d_decs.Clear();
                d_leis   = null;
                d_leis_c = null;
                d_decs   = null;

                List <mTiposGenericos> leisClassificacao     = new List <mTiposGenericos>();
                List <mTiposGenericos> decretosClassificacao = new List <mTiposGenericos>();

                List <string> llotipo     = new List <string>();
                List <string> llosituacao = new List <string>();
                List <string> lloorigem   = new List <string>();
                List <string> lloautor    = new List <string>();
                List <string> lloclass    = new List <string>();

                List <string> llctipo     = new List <string>();
                List <string> llcsituacao = new List <string>();
                List <string> llcorigem   = new List <string>();
                List <string> llcautor    = new List <string>();
                List <string> llcclass    = new List <string>();

                List <string> ldctipo     = new List <string>();
                List <string> ldcsituacao = new List <string>();
                List <string> ldcorigem   = new List <string>();
                List <string> ldcautor    = new List <string>();
                List <string> ldcclass    = new List <string>();

                decretosClassificacao = new mListaTiposGenericos().GoList(SqlCollections.Class_D_All);
                leisClassificacao     = new mListaTiposGenericos().GoList(SqlCollections.Class_L_All);

                int cont_reg = 0;
                int vreg     = full_data.Rows.Count;

                foreach (System.Data.DataRow leg in full_data.Rows)
                {
                    cont_reg++;

                    total = leg.Table.Rows.Count;

                    var legislacao = new mLegislacao();

                    legislacao.Tipo = leg["Tipo"].ToString();

                    legislacao.Classificacao = leg["Classificado"].ToString();

                    legislacao.Situacao = leg["Situacao"].ToString();

                    legislacao.Origem = leg["Origem"].ToString();

                    legislacao.Autor = leg["Autor"].ToString();

                    switch (legislacao.Tipo)
                    {
                    case "LEI":
                        llotipo.Add(legislacao.Tipo);

                        if (legislacao.Situacao == 1.ToString())
                        {
                            llosituacao.Add("INALTERADA");
                        }

                        if (legislacao.Situacao == 2.ToString())
                        {
                            llosituacao.Add("ALTERADA");
                        }

                        if (legislacao.Situacao == 3.ToString())
                        {
                            llosituacao.Add("REVOGADA");
                        }

                        if (legislacao.Origem == 1.ToString())
                        {
                            lloorigem.Add("EXECUTIVO");
                        }

                        if (legislacao.Origem == 2.ToString())
                        {
                            lloorigem.Add("LEGISLATIVO");
                        }


                        if (legislacao.Autor == string.Empty)
                        {
                            lloautor.Add("SEM AUTOR");
                        }
                        else
                        {
                            lloautor.Add(legislacao.Autor);
                        }

                        for (int i = 0; i < leisClassificacao.Count; i++)
                        {
                            if (legislacao.Classificacao == i.ToString())
                            {
                                if (leisClassificacao[i].Nome == string.Empty ||
                                    leisClassificacao[i].Nome == "...")
                                {
                                    lloclass.Add("SEM CLASSIFICAÇÃO");
                                }
                                else
                                {
                                    lloclass.Add(leisClassificacao[i].Nome.ToUpper());
                                }
                            }
                        }

                        break;

                    case "LEI COMPLEMENTAR":
                        llctipo.Add(legislacao.Tipo);
                        if (legislacao.Situacao == 1.ToString())
                        {
                            llcsituacao.Add("INALTERADA");
                        }

                        if (legislacao.Situacao == 2.ToString())
                        {
                            llcsituacao.Add("ALTERADA");
                        }

                        if (legislacao.Situacao == 3.ToString())
                        {
                            llcsituacao.Add("REVOGADA");
                        }

                        if (legislacao.Origem == 1.ToString())
                        {
                            llcorigem.Add("EXECUTIVO");
                        }

                        if (legislacao.Origem == 2.ToString())
                        {
                            llcorigem.Add("LEGISLATIVO");
                        }

                        if (legislacao.Autor == string.Empty)
                        {
                            llcautor.Add("SEM AUTOR");
                        }
                        else
                        {
                            llcautor.Add(legislacao.Autor);
                        }

                        for (int i = 0; i < leisClassificacao.Count; i++)
                        {
                            if (legislacao.Classificacao == i.ToString())
                            {
                                if (leisClassificacao[i].Nome == string.Empty ||
                                    leisClassificacao[i].Nome == "...")
                                {
                                    llcclass.Add("SEM CLASSIFICAÇÃO");
                                }
                                else
                                {
                                    llcclass.Add(leisClassificacao[i].Nome.ToUpper());
                                }
                            }
                        }

                        break;

                    case "DECRETO":
                        ldctipo.Add(legislacao.Tipo);

                        if (legislacao.Situacao == 1.ToString())
                        {
                            ldcsituacao.Add("INALTERADO");
                        }

                        if (legislacao.Situacao == 2.ToString())
                        {
                            ldcsituacao.Add("ALTERADO");
                        }

                        if (legislacao.Situacao == 3.ToString())
                        {
                            ldcsituacao.Add("REVOGADO");
                        }

                        if (legislacao.Origem == 1.ToString())
                        {
                            ldcorigem.Add("EXECUTIVO");
                        }

                        if (legislacao.Origem == 2.ToString())
                        {
                            ldcorigem.Add("LEGISLATIVO");
                        }

                        if (legislacao.Origem != 2.ToString() && legislacao.Origem != 1.ToString())
                        {
                            ldcorigem.Add("SEM ORIGEM");
                        }

                        if (legislacao.Autor == string.Empty)
                        {
                            ldcautor.Add("SEM AUTOR");
                        }
                        else
                        {
                            ldcautor.Add(legislacao.Autor);
                        }

                        for (int i = 0; i < decretosClassificacao.Count; i++)
                        {
                            if (legislacao.Classificacao == i.ToString())
                            {
                                if (decretosClassificacao[i].Nome == string.Empty)
                                {
                                    ldcclass.Add("SEM CLASSIFICAÇÃO");
                                }
                                else
                                {
                                    ldcclass.Add(decretosClassificacao[i].Nome.ToUpper());
                                }
                            }
                        }

                        break;
                    }
                }

                // Lei
                var lotipo = from x in llotipo
                             group x by x into g
                             let count = g.Count()
                                         orderby count descending
                                         select new { Value = g.Key, Count = count };

                foreach (var x in lotipo)
                {
                    LO.Tipo.Add(new KeyValuePair <string, int>(x.Value, x.Count));
                }

                var losituacao = from x in llosituacao
                                 group x by x into g
                                 let count = g.Count()
                                             orderby count descending
                                             select new { Value = g.Key, Count = count };

                foreach (var x in losituacao)
                {
                    LO.Situacao.Add(new KeyValuePair <string, int>(x.Value, x.Count));
                }

                var loorigem = from x in lloorigem
                               group x by x into g
                               let count = g.Count()
                                           orderby count descending
                                           select new { Value = g.Key, Count = count };

                foreach (var x in loorigem)
                {
                    LO.Origem.Add(new KeyValuePair <string, int>(x.Value, x.Count));
                }

                var loautor = from x in lloautor
                              group x by x into g
                              let count = g.Count()
                                          orderby count descending
                                          select new { Value = g.Key, Count = count };

                foreach (var x in loautor)
                {
                    LO.Autor.Add(new KeyValuePair <string, int>(x.Value, x.Count));
                }


                var loclass = from x in lloclass
                              group x by x into g
                              let count = g.Count()
                                          orderby count descending
                                          select new { Value = g.Key, Count = count };

                foreach (var x in loclass)
                {
                    LO.Classificacao.Add(new KeyValuePair <string, int>(x.Value, x.Count));
                }

                // Leis Complementares
                var lctipo = from x in llctipo
                             group x by x into g
                             let count = g.Count()
                                         orderby count descending
                                         select new { Value = g.Key, Count = count };

                foreach (var x in lctipo)
                {
                    LC.Tipo.Add(new KeyValuePair <string, int>(x.Value, x.Count));
                }

                var lcsituacao = from x in llcsituacao
                                 group x by x into g
                                 let count = g.Count()
                                             orderby count descending
                                             select new { Value = g.Key, Count = count };

                foreach (var x in lcsituacao)
                {
                    LC.Situacao.Add(new KeyValuePair <string, int>(x.Value, x.Count));
                }

                var lcorigem = from x in llcorigem
                               group x by x into g
                               let count = g.Count()
                                           orderby count descending
                                           select new { Value = g.Key, Count = count };

                foreach (var x in lcorigem)
                {
                    LC.Origem.Add(new KeyValuePair <string, int>(x.Value, x.Count));
                }

                var lcautor = from x in llcautor
                              group x by x into g
                              let count = g.Count()
                                          orderby count descending
                                          select new { Value = g.Key, Count = count };

                foreach (var x in lcautor)
                {
                    LC.Autor.Add(new KeyValuePair <string, int>(x.Value, x.Count));
                }

                var lcclass = from x in llcclass
                              group x by x into g
                              let count = g.Count()
                                          orderby count descending
                                          select new { Value = g.Key, Count = count };

                foreach (var x in lcclass)
                {
                    LC.Classificacao.Add(new KeyValuePair <string, int>(x.Value, x.Count));
                }

                //Decretos
                var detipo = from x in ldctipo
                             group x by x into g
                             let count = g.Count()
                                         orderby count descending
                                         select new { Value = g.Key, Count = count };

                foreach (var x in detipo)
                {
                    DE.Tipo.Add(new KeyValuePair <string, int>(x.Value, x.Count));
                }

                var desituacao = from x in ldcsituacao
                                 group x by x into g
                                 let count = g.Count()
                                             orderby count descending
                                             select new { Value = g.Key, Count = count };

                foreach (var x in desituacao)
                {
                    DE.Situacao.Add(new KeyValuePair <string, int>(x.Value, x.Count));
                }

                var deorigem = from x in ldcorigem
                               group x by x into g
                               let count = g.Count()
                                           orderby count descending
                                           select new { Value = g.Key, Count = count };

                foreach (var x in deorigem)
                {
                    DE.Origem.Add(new KeyValuePair <string, int>(x.Value, x.Count));
                }

                var deautor = from x in ldcautor
                              group x by x into g
                              let count = g.Count()
                                          orderby count descending
                                          select new { Value = g.Key, Count = count };

                foreach (var x in deautor)
                {
                    DE.Autor.Add(new KeyValuePair <string, int>(x.Value, x.Count));
                }

                var declas = from x in ldcclass
                             group x by x into g
                             let count = g.Count()
                                         orderby count descending
                                         select new { Value = g.Key, Count = count };

                foreach (var x in declas)
                {
                    DE.Classificacao.Add(new KeyValuePair <string, int>(x.Value, x.Count));
                }

                return(total);
            }
            catch (Exception ex)
            {
                System.Windows.MessageBox.Show(ex.Message, "Sim.Alerta!");
                return(0);
            }
        }
示例#3
0
        /// <summary>
        /// Count all tables records.
        /// </summary>
        /// <param name="p_tables">List of table names.</param>
        /// <param name="p_filters">List of table filters.</param>
        public System.Data.DataTable CountTablesRecords(System.Collections.Generic.List <string> p_tables, System.Collections.Generic.List <string> p_filters)
        {
            System.Data.DataTable v_count_total_table = new System.Data.DataTable();

            int v_timeout = v_connection.v_timeout;

            v_connection.SetTimeout(0);

            string v_sql = "";

            bool v_first = true;

            int v_block_counter = 0;

            for (int j = 0; j < p_tables.Count; j++)
            {
                if (!v_first)
                {
                    v_sql += " union all ";
                }

                v_first = false;

                v_block_counter++;


                string v_table_name = "";

                if (v_has_schema)
                {
                    v_table_name = v_schema + "." + p_tables[j];
                }
                else
                {
                    v_table_name = p_tables[j];
                }


                v_sql += "select count(*) as total, " + v_trim_function + "('" + p_tables[j] + "') as table_name from " + v_table_name + " " + p_filters[j] + " ";



                if (v_block_counter >= 50 || (j == p_tables.Count - 1))
                {
                    if (v_count_total_table == null)
                    {
                        v_count_total_table = v_connection.Query(v_sql, "t1");
                    }
                    else
                    {
                        v_count_total_table.Merge(v_connection.Query(v_sql, "t1"));
                    }
                    v_first         = true;
                    v_block_counter = 0;

                    v_sql = "";
                }
            }

            System.Data.DataTable dt2 = v_count_total_table.Clone();
            dt2.Columns["total"].DataType = Type.GetType("System.Int32");

            foreach (System.Data.DataRow dr in v_count_total_table.Rows)
            {
                dt2.ImportRow(dr);
            }

            dt2.AcceptChanges();
            System.Data.DataView dv = dt2.DefaultView;
            dv.Sort = "total DESC";

            v_count_total_table = dv.ToTable();

            v_connection.SetTimeout(v_timeout);

            return(v_count_total_table);
        }
示例#4
0
 /// <summary>
 /// Gets a description of the tables available for the catalog
 /// </summary>
 /// <param name="catalog">A catalog, retrieves those without a catalog</param>
 /// <param name="schemaPattern">Schema pattern, retrieves those without the schema</param>
 /// <param name="tableNamePattern">A table name pattern</param>
 /// <param name="types">a list of table types to include</param>
 /// <returns>Each row</returns>
 public System.Data.DataTable GetTables(System.String catalog, System.String schemaPattern, System.String tableNamePattern, System.String[] types)
 {
     OpenConnection();
     schemaData = this.Connection.GetOleDbSchemaTable(System.Data.OleDb.OleDbSchemaGuid.Tables, new System.Object[] { catalog, schemaPattern, tableNamePattern, types[0] });
     if (types != null)
     {
         for (int i = 1; i < types.Length; i++)
         {
             System.Data.DataTable temp_Table = this.Connection.GetOleDbSchemaTable(System.Data.OleDb.OleDbSchemaGuid.Tables, new System.Object[] { catalog, schemaPattern, tableNamePattern, types[i] });
             for (int j = 0; j < temp_Table.Rows.Count; j++)
             {
                 schemaData.ImportRow(temp_Table.Rows[j]);
             }
         }
     }
     CloseConnection();
     return schemaData;
 }