C# Class SqliteRun, chronojump

Inheritance: Sqlite
Mostra file Open project: GNOME/chronojump Class Usage Examples

Public Methods

Method Description
Insert ( bool dbconOpened, string tableName, string uniqueID, int personID, int sessionID, string type, double distance, double time, string description, int simulated, bool initialSpeed ) : int
SelectRunData ( int uniqueID, bool dbconOpened ) : Run,
SelectRuns ( bool dbconOpened, int sessionID, int personID, string filterType, Orders_by order, int limit ) : string[]
SelectTestMaxStuff ( int personID, RunType, runType ) : string[]
SqliteRun ( ) : System
Update ( int runID, string type, string distance, string time, int personID, string description ) : void

Protected Methods

Method Description
createTable ( string tableName ) : void

Method Details

Insert() public static method

public static Insert ( bool dbconOpened, string tableName, string uniqueID, int personID, int sessionID, string type, double distance, double time, string description, int simulated, bool initialSpeed ) : int
dbconOpened bool
tableName string
uniqueID string
personID int
sessionID int
type string
distance double
time double
description string
simulated int
initialSpeed bool
return int

SelectRunData() public static method

public static SelectRunData ( int uniqueID, bool dbconOpened ) : Run,
uniqueID int
dbconOpened bool
return Run,

SelectRuns() public static method

public static SelectRuns ( bool dbconOpened, int sessionID, int personID, string filterType, Orders_by order, int limit ) : string[]
dbconOpened bool
sessionID int
personID int
filterType string
order Orders_by
limit int
return string[]

SelectTestMaxStuff() public static method

public static SelectTestMaxStuff ( int personID, RunType, runType ) : string[]
personID int
runType RunType,
return string[]

SqliteRun() public method

public SqliteRun ( ) : System
return System

Update() public static method

public static Update ( int runID, string type, string distance, string time, int personID, string description ) : void
runID int
type string
distance string
time string
personID int
description string
return void

createTable() protected method

protected createTable ( string tableName ) : void
tableName string
return void