コード例 #1
0
ファイル: DBBarangay.cs プロジェクト: limweld/Retailers
        public static DBBarangays GetDataByName(string idx)
        {
            DBBarangays data = null;

            MySqlConnection con = DBConnection.ConnectLocalAddressDatabase();

            try
            {
                MySqlCommand    cmd    = new MySqlCommand("SELECT * FROM " + tablename + " WHERE barangay='" + idx + "'", con);
                MySqlDataReader reader = cmd.ExecuteReader();

                if (reader.HasRows)
                {
                    reader.Read();
                    data      = new DBBarangays();
                    data.ID   = reader.GetInt32(0);
                    data.NAME = reader.GetString(1);
                    data.CITY = reader.GetString(2);
                }

                reader.Close();
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
            finally
            {
                con.Close();
            }

            return(data);
        }
コード例 #2
0
ファイル: DBBarangay.cs プロジェクト: limweld/Retailers
        public static List <DBBarangays> GetDataByCity(int idx)
        {
            List <DBBarangays> data = new List <DBBarangays>();

            MySqlConnection con = DBConnection.ConnectLocalAddressDatabase();

            try
            {
                MySqlCommand    cmd    = new MySqlCommand("SELECT * FROM " + tablename + " WHERE city_id=" + idx, con);
                MySqlDataReader reader = cmd.ExecuteReader();

                if (reader.HasRows)
                {
                    while (reader.Read())
                    {
                        DBBarangays rawData = new DBBarangays();
                        rawData.ID   = reader.GetInt32(0);
                        rawData.NAME = reader.GetString(1);
                        rawData.CITY = reader.GetString(2);
                        data.Add(rawData);
                    }
                }

                reader.Close();
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
            finally
            {
                con.Close();
            }

            return(data);
        }