C# Class SqlitePreferences, chronojump

Inheritance: Sqlite
Mostrar archivo Open project: GNOME/chronojump Class Usage Examples

Public Methods

Method Description
Insert ( string myName, string myValue ) : void
Insert ( string myName, string myValue, SqliteCommand mycmd ) : void
Select ( string myName ) : string
Select ( string myName, bool dbconOpened ) : string
SelectAll ( ) : Preferences,
Update ( string myName, string myValue, bool dbconOpened ) : void

Protected Methods

Method Description
createTable ( ) : void
initializeTable ( string databaseVersion, bool creatingBlankDatabase ) : void

Method Details

Insert() public static method

public static Insert ( string myName, string myValue ) : void
myName string
myValue string
return void

Insert() public static method

public static Insert ( string myName, string myValue, SqliteCommand mycmd ) : void
myName string
myValue string
mycmd Mono.Data.Sqlite.SqliteCommand
return void

Select() public static method

public static Select ( string myName ) : string
myName string
return string

Select() public static method

public static Select ( string myName, bool dbconOpened ) : string
myName string
dbconOpened bool
return string

SelectAll() public static method

public static SelectAll ( ) : Preferences,
return Preferences,

Update() public static method

public static Update ( string myName, string myValue, bool dbconOpened ) : void
myName string
myValue string
dbconOpened bool
return void

createTable() protected static method

protected static createTable ( ) : void
return void

initializeTable() protected static method

protected static initializeTable ( string databaseVersion, bool creatingBlankDatabase ) : void
databaseVersion string
creatingBlankDatabase bool
return void