Ejemplo n.º 1
0
 public static bool OLUSTURULAN_TESTLER_Guncelle(OLUSTURULAN_TESTLER Tablo)
 {
     try
     {
         var conn = new SQLiteConnection(System.IO.Path.Combine(documentsFolder(), "TestBang.db"), false);
         conn.Update(Tablo);
         conn.Close();
         return(true);
     }
     catch (Exception e)
     {
         string ee = e.ToString();
         return(false);
     }
 }
Ejemplo n.º 2
0
 public static bool OLUSTURULAN_TESTLER_EKLE(OLUSTURULAN_TESTLER GelenDoluTablo)
 {
     try
     {
         var conn = new SQLiteConnection(System.IO.Path.Combine(documentsFolder(), "TestBang.db"), false);
         conn.Insert(GelenDoluTablo);
         conn.Close();
         return(true);
     }
     catch (Exception Ex)
     {
         var aa = Ex.Message;
         return(false);
     }
 }