Пример #1
0
        public bool InsertDanhMuc(clsDanhMuc dm)
        {
            string sql = "Insert into tblDanhMuc(TenDanhMuc,TypeID,MoTa) values(@TenDM,@Type,@Mota)";
               bool st=false;
               clsDAConnection conn=new clsDAConnection();
               conn.openCon();
               using (SqlCommand com = conn.getCon().CreateCommand()) {
               com.CommandType = CommandType.Text;
               com.CommandText = sql;

               // Create a SqlParameter object for the title parameter.
               SqlParameter p1 = com.CreateParameter();
               p1.ParameterName = "@TenDM";
               p1.SqlDbType = SqlDbType.NVarChar;
               p1.Size = 50;
               p1.Value = dm.TenDanhMuc;
               com.Parameters.Add(p1);

               // Use a shorthand syntax to add the id parameter.
               com.Parameters.Add("@Type", SqlDbType.Int).Value = dm.MyType;
               com.Parameters.Add("@Mota", SqlDbType.NVarChar,1000).Value = dm.MoTa;
               // Execute the command and process the result.
               if (com.ExecuteNonQuery()==1)
               {
                   st = true;
               }
               conn.closeCon();
               return st;
               }
        }
        public static int getIDIdentity(string table)
        {
            clsDAConnection con = new clsDAConnection();
            try
            {
                string str = "select Max(id) as ID from " + table;
                SqlCommand com = new SqlCommand(str, con.getCon());
                con.openCon();
                int id = 0;
                SqlDataReader dr = com.ExecuteReader();
                if (dr.Read())
                {
                    if (dr["ID"]!=DBNull.Value)
                    id = Convert.ToInt32(dr["ID"]);
                }
                return id;
            }
            catch (Exception)
            {

                throw;
            }
            finally
            {
                con.closeCon();
            }
        }
 public DataTable GetDataTableSQL(string sql, string tbName)
 {
     DataTable tb = new DataTable(tbName);
     clsDAConnection conn = new clsDAConnection();
     conn.openCon();
     SqlDataAdapter apdapter = new SqlDataAdapter(sql, conn.getCon());
     apdapter.Fill(tb);
     conn.closeCon();
     return tb;
 }
Пример #4
0
        // Sua danh muc
        public bool EditTheLoai(clsTheLoai dm,int type)
        {
            string sql="";
            if (type==1)
            {
                sql = "Update tblTheloai set TenTheLoai=@TenTheLoai,MaDanhMuc=@MaDanhMuc,MaQuocGia=@MaQuocGia,Mota=@Mota,STT=@STT,Hot=@Hot,ImageTL=@ImageTL Where ID=@ID";

            }
            else if (type==2)
            {
                sql= "Update tblTheloai set TenTheLoai=@TenTheLoai,MaDanhMuc=@MaDanhMuc,MaQuocGia=@MaQuocGia,Mota=@Mota,STT=@STT,Hot=@Hot Where ID=@ID";

            }
              bool st = false;
            clsDAConnection conn = new clsDAConnection();
            conn.openCon();
            using (SqlCommand com = conn.getCon().CreateCommand())
            {
                com.CommandType = CommandType.Text;
                com.CommandText = sql;

                // Create a SqlParameter object for the title parameter.
                SqlParameter p1 = com.CreateParameter();
                p1.ParameterName = "@TenTheLoai";
                p1.SqlDbType = SqlDbType.NVarChar;
                p1.Size = 50;
                p1.Value = dm.TenTheLoai;
                com.Parameters.Add(p1);

                // Use a shorthand syntax to add the id parameter.
                com.Parameters.Add("@MaDanhMuc", SqlDbType.Int).Value = dm.MyDanhMuc;
                com.Parameters.Add("@MaQuocGia", SqlDbType.Int).Value = dm.MyQuocGia;
                com.Parameters.Add("@Mota", SqlDbType.NVarChar, 1000).Value = dm.MoTa;
                com.Parameters.Add("@STT", SqlDbType.Int).Value = dm.Stt;
                com.Parameters.Add("@Hot", SqlDbType.Int).Value = dm.Hot;
                com.Parameters.Add("@ID", SqlDbType.Int).Value = dm.Id;
                if (type==1)
                {
                    com.Parameters.Add("@ImageTL", SqlDbType.NVarChar).Value = dm.Images;
                }
                // Execute the command and process the result.
                if (com.ExecuteNonQuery() == 1)
                {
                    st = true;
                }
                conn.closeCon();
                return st;
            }
        }
Пример #5
0
 public bool DeleteTheLoai(clsTheLoai dm)
 {
     string sql = "Delete from tblTheLoai Where ID=@ID";
     bool st = false;
     clsDAConnection conn = new clsDAConnection();
     conn.openCon();
     using (SqlCommand com = conn.getCon().CreateCommand())
     {
         com.CommandType = CommandType.Text;
         com.CommandText = sql;
         com.Parameters.Add("@ID", SqlDbType.Int).Value = dm.Id;
         // Execute the command and process the result.
         if (com.ExecuteNonQuery() == 1)
         {
             st = true;
         }
         conn.closeCon();
         return st;
     }
 }
Пример #6
0
        // Sua danh muc
        public bool EditTour(clsTour to)
        {
            string sql = "Update tbltour set Tieude=@tieude,GhiChu=@ghichu,TheLoaiID=@tlID,Hot=@hot,STT=@stt,HinhAnh=@HinhAnh,SearchID=@SearchID Where ID=@ID";
            bool st = false;
            clsDAConnection conn = new clsDAConnection();
            conn.openCon();
            using (SqlCommand com = conn.getCon().CreateCommand())
            {
                com.CommandType = CommandType.Text;
                com.CommandText = sql;

                // Create a SqlParameter object for the title parameter.

                SqlParameter p1 = com.CreateParameter();
                p1.ParameterName = "@tieude";
                p1.SqlDbType = SqlDbType.NVarChar;
                p1.Size = 50;
                p1.Value = to.TieuDe;
                com.Parameters.Add(p1);

                // Use a shorthand syntax to add the id parameter.
                com.Parameters.Add("@tlID", SqlDbType.Int).Value = to.MyTheLoai;
                com.Parameters.Add("@ghichu", SqlDbType.NVarChar, 1000).Value = to.GhiChu;
                com.Parameters.Add("@stt", SqlDbType.Int).Value = to.Stt;
                com.Parameters.Add("@hot", SqlDbType.Int).Value = to.Hot;
                com.Parameters.Add("@HinhAnh", SqlDbType.NVarChar, 50).Value = to.HinhAnh;
                com.Parameters.Add("@ID", SqlDbType.Int).Value = to.Id;
                com.Parameters.Add("@SearchID", SqlDbType.Int).Value = to.SearchID;
                // Execute the command and process the result.
                if (com.ExecuteNonQuery() == 1)
                {
                    st = true;
                }
                conn.closeCon();
                return st;
            }
        }
Пример #7
0
        public clsTheLoai GetById(int id)
        {
            clsDAConnection con = new clsDAConnection();
            try
            {
                clsTheLoai obj = new clsTheLoai();
                string str = "select * from tblTheLoai where id=@id";
                SqlCommand com = new SqlCommand(str, con.getCon());
                com.Parameters.AddWithValue("@id", id);
                con.openCon();
                SqlDataReader dr = com.ExecuteReader();
                if (dr.Read())
                {

                    if (dr["tentheloai"] != DBNull.Value)
                    {
                        obj.TenTheLoai = dr["tentheloai"].ToString();
                    }
                    if (dr["stt"] != DBNull.Value)
                    {
                        obj.Stt = Convert.ToInt32(dr["stt"].ToString());
                    }
                    if (dr["MaQuocGia"] != DBNull.Value)
                    {
                        obj.QuocGia.Id = Convert.ToInt32(dr["MaQuocGia"].ToString());
                    }
                    if (dr["MaDanhMuc"] != DBNull.Value)
                    {
                        obj.DanhMuc.Id = Convert.ToInt32(dr["MaDanhMuc"].ToString());
                    }
                    if (dr["id"] != DBNull.Value)
                    {
                        obj.Id = Convert.ToInt32(dr["id"].ToString());
                    }
                }
                con.closeCon();
                return obj;
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                con.closeCon();
            }
        }
Пример #8
0
        public bool InsertTL(clsTheLoai dm)
        {
            string sql = "Insert into tblTheLoai(TenTheLoai,MaDanhMuc,MaQuocGia,MoTa,STT,Hot) values(@TenTheLoai,@MaDanhMuc,@MaQuocGia,@MoTa,@STT,@Hot)";
            bool st = false;
            clsDAConnection conn = new clsDAConnection();
            conn.openCon();
            using (SqlCommand com = conn.getCon().CreateCommand())
            {
                com.CommandType = CommandType.Text;
                com.CommandText = sql;

                // Create a SqlParameter object for the title parameter.
                SqlParameter p1 = com.CreateParameter();
                p1.ParameterName = "@TenTheLoai";
                p1.SqlDbType = SqlDbType.NVarChar;
                p1.Size = 50;
                p1.Value = dm.TenTheLoai;
                com.Parameters.Add(p1);

                // Use a shorthand syntax to add the id parameter.
                com.Parameters.Add("@MaDanhMuc", SqlDbType.Int).Value = dm.MyDanhMuc;
                com.Parameters.Add("@MaQuocGia", SqlDbType.Int).Value = dm.MyQuocGia;
                com.Parameters.Add("@Mota", SqlDbType.NVarChar, 1000).Value = dm.MoTa;
                com.Parameters.Add("@STT", SqlDbType.Int).Value = dm.Stt;
                com.Parameters.Add("@Hot", SqlDbType.Int).Value = dm.Hot;
                //com.Parameters.Add("@ImageTL", SqlDbType.NVarChar).Value = dm.Images;
                // Execute the command and process the result.
                if (com.ExecuteNonQuery() == 1)
                {
                    st = true;
                }
                conn.closeCon();
                return st;
            }
        }
Пример #9
0
 public List<clsTheLoai> GetByQuocGia2(int id)
 {
     clsDAConnection con = new clsDAConnection();
     try
     {
         List<clsTheLoai> list = new List<clsTheLoai>();
         string str = "select * from tblTheLoai where maquocgia=@maquocgia and madanhmuc<>1 and hot=1";
         SqlCommand com = new SqlCommand(str, con.getCon());
         com.Parameters.AddWithValue("@maquocgia", id);
         con.openCon();
         SqlDataReader dr = com.ExecuteReader();
         while (dr.Read())
         {
             clsTheLoai obj = new clsTheLoai();
             if (dr["tentheloai"] != DBNull.Value)
             {
                 obj.TenTheLoai = dr["tentheloai"].ToString();
             }
             if (dr["stt"] != DBNull.Value)
             {
                 obj.Stt = Convert.ToInt32(dr["stt"].ToString());
             }
             if (dr["MaQuocGia"] != DBNull.Value)
             {
                 obj.QuocGia.Id = Convert.ToInt32(dr["MaQuocGia"].ToString());
             }
             if (dr["MaDanhMuc"] != DBNull.Value)
             {
                 obj.DanhMuc.Id = Convert.ToInt32(dr["MaDanhMuc"].ToString());
             }
             if (dr["id"] != DBNull.Value)
             {
                 obj.Id = Convert.ToInt32(dr["id"].ToString());
             }
             list.Add(obj);
         }
         con.closeCon();
         return list;
     }
     catch (Exception)
     {
         throw;
     }
     finally
     {
         con.closeCon();
     }
 }