Example #1
0
 public static bool YUKLENECEK_SABLON_Guncelle(YUKLENECEK_SABLON Tablo)
 {
     try
     {
         var conn = new SQLiteConnection(System.IO.Path.Combine(documentsFolder(), "Contento.db"), false);
         conn.Update(Tablo);
         conn.Close();
         return(true);
     }
     catch (Exception e)
     {
         string ee = e.ToString();
         return(false);
     }
 }
Example #2
0
 public static bool YUKLENECEK_SABLON_EKLE(YUKLENECEK_SABLON GelenDoluTablo)
 {
     try
     {
         var conn = new SQLiteConnection(System.IO.Path.Combine(documentsFolder(), "Contento.db"), false);
         conn.Insert(GelenDoluTablo);
         conn.Close();
         return(true);
     }
     catch (Exception Ex)
     {
         var aa = Ex.Message;
         return(false);
     }
 }