Esempio n. 1
0
 static public bool PutSettingDouble(string key, double doublevalue)
 {
     return(SQLiteConnectionUser.PutSettingDouble(key, doublevalue));
 }
Esempio n. 2
0
 static public bool GetSettingBool(string key, bool defaultvalue)
 {
     return(SQLiteConnectionUser.GetSettingBool(key, defaultvalue));
 }
Esempio n. 3
0
 static public double GetSettingDouble(string key, double defaultvalue)
 {
     return(SQLiteConnectionUser.GetSettingDouble(key, defaultvalue));
 }
Esempio n. 4
0
 static public bool PutSettingInt(string key, int intvalue)
 {
     return(SQLiteConnectionUser.PutSettingInt(key, intvalue));
 }
Esempio n. 5
0
 static public int GetSettingInt(string key, int defaultvalue)
 {
     return(SQLiteConnectionUser.GetSettingInt(key, defaultvalue));
 }
Esempio n. 6
0
 static public bool keyExists(string sKey)
 {
     return(SQLiteConnectionUser.keyExists(sKey));
 }
Esempio n. 7
0
 public UserDatabaseConnection()
 {
     Connection = new SQLiteConnectionUser();
 }