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