Exemplo n.º 1
0
        public int tablo_iade_duzenleme(int kitapid, int ogrenciid, string islemturu)
        {
            //almaverme tablosundaki verileri güncellemek için sorgumuzu gönderiyoruz.
            int Sonuc = dl1.EkleSilGuncelle("update almaverme set islemturu='" + islemturu + "' where ogrenciid=" + ogrenciid + " and kitapid = " + kitapid + "", System.Data.CommandType.Text);

            return(Sonuc);
        }
Exemplo n.º 2
0
        public int emanet_islemi(int kitapid, int ogrenciid, DateTime emanettarihi, DateTime iadetarihi, string islemturu)
        {
            //emanet vermek için almaverme tablosuna gerekli verileri yolluyoruz.
            int Sonuc = dl2.EkleSilGuncelle("insert into almaverme (kitapid,ogrenciid,emanettarihi,iadetarihi,islemturu) values (" + kitapid + "," + ogrenciid + ",'" + emanettarihi + "','" + iadetarihi + "','" + islemturu + "')", System.Data.CommandType.Text);

            return(Sonuc);
        }
        public int ogr_sil(int ogrenciid)
        {
            //öğrenciyi silmek için sorgumuzu fonksiyona değerler ile birlikte gönderiyoruz.
            int sonuc = dl5.EkleSilGuncelle("DELETE from ogrenciler where ogrenciid =" + ogrenciid + "", System.Data.CommandType.Text);

            return(sonuc);
        }
        public int ogr_guncelle(int ogrenciid, string isim, string numara, string bolum)
        {
            //öğrenci güncellemek için sorgumuzu fonksiyona değerler ile birlikte gönderiyoruz.
            int sonuc = dl4.EkleSilGuncelle("UPDATE ogrenciler SET isim='" + isim + "', numara='" + numara + "', bolum='" + bolum + "' WHERE ogrenciid=" + ogrenciid + "", System.Data.CommandType.Text);

            return(sonuc);
        }
        public int ogr_ekle(string isim, string numara, string bolum)
        {
            //öğrenci eklemek için sorgumuzu fonksiyona değerler ile birlikte gönderiyoruz.
            int sonuc = dl3.EkleSilGuncelle("INSERT into ogrenciler (isim,numara,bolum) VALUES ('" + isim + "','" + numara + "','" + bolum + "')", System.Data.CommandType.Text);

            return(sonuc);
        }
        public int ogr_guncelle(int ogrenciid, string tc, string adsoyad, string telefon, string adres, string email)
        {
            //öğrenci güncellemek için sorgumuzu fonksiyona değerler ile birlikte gönderiyoruz.
            int sonuc = dl4.EkleSilGuncelle("UPDATE ogrenciler SET tc='" + tc + "', adsoyad='" + adsoyad + "', telefon='" + telefon + "', adres='" + adres + "', email='" + email + "' WHERE ogrenciid=" + ogrenciid + "", System.Data.CommandType.Text);

            return(sonuc);
        }
        public int ogr_ekle(string tc, string adsoyad, string telefon, string adres, string email)
        {
            //öğrenci eklemek için sorgumuzu fonksiyona değerler ile birlikte gönderiyoruz.
            int sonuc = dl3.EkleSilGuncelle("INSERT into ogrenciler (tc,adsoyad,telefon,adres,email) VALUES ('" + tc + "','" + adsoyad + "','" + telefon + "','" + adres + "','" + email + "')", System.Data.CommandType.Text);

            return(sonuc);
        }