public static List <string> GetRecords(string dbFilepath, long startId, long?endId = null, string collectionName = null) { var readr = new TypelessDbReader1(); return(readr.GetRecords(dbFilepath, startId, endId, collectionName)); }
public static long GetMaxId(string dbFilepath, string collectionName = null) { var readr = new TypelessDbReader1(); return(readr.GetMaxId(dbFilepath, collectionName)); }