Exemplo n.º 1
0
 /// <summary>
 /// Utility method which acquires the latest/highest bound of session IDs amongst sensor readings
 /// from the specified table in the connected database.
 /// </summary>
 /// <param name="tableName">Name of table which will be searched for the latest session ID.</param>
 /// <returns>The latest session ID from specified table in the connected database.</returns>
 public static int GetLatestSessionIDInDatabaseTable(string tableName)
 {
     return(dbInstance.GetLatestSessionIDInTable(tableName));
 }