public static DateTime ReadDateTime(this SQLiteDataReader reader, string name)
 {
     return((DateTime)DataReaders.ReadDateTime(reader, GetIndexOfField(reader, name)));
 }
 public static float ReadFloat(this SQLiteDataReader reader, int idx)
 {
     return((float)DataReaders.ReadFloat(reader, idx));
 }
 public static bool ReadBoolean(this SQLiteDataReader reader, string name)
 {
     return((bool)DataReaders.ReadBoolean(reader, GetIndexOfField(reader, name)));
 }
 public static DateTime ReadDateTime(this SQLiteDataReader reader, int idx)
 {
     return((DateTime)DataReaders.ReadDateTime(reader, idx));
 }
 public static IList <string> ReadPipeList(this SQLiteDataReader reader, string name)
 {
     return((IList <string>)DataReaders.ReadPipeList(reader, GetIndexOfField(reader, name)));
 }
 public static string ReadString(this SQLiteDataReader reader, string name)
 {
     return((string)DataReaders.ReadString(reader, reader.GetOrdinal(name)));
 }
 public static int ReadInt32(this SQLiteDataReader reader, int idx)
 {
     return((int)DataReaders.ReadInt32(reader, idx));
 }
 public static IList <string> ReadList(this SQLiteDataReader reader, string name, char separator)
 {
     return((IList <string>)DataReaders.ReadList(reader, GetIndexOfField(reader, name), separator));
 }
 public static IList <string> ReadList(this SQLiteDataReader reader, string name, char separator)
 {
     return((IList <string>)DataReaders.ReadList(reader, reader.GetOrdinal(name), separator));
 }
 public static IList <string> ReadPipeList(this SQLiteDataReader reader, string name)
 {
     return((IList <string>)DataReaders.ReadPipeList(reader, reader.GetOrdinal(name)));
 }
 public static float ReadFloat(this SQLiteDataReader reader, string name)
 {
     return((float)DataReaders.ReadFloat(reader, reader.GetOrdinal(name)));
 }
 public static DateTime ReadDateTime(this SQLiteDataReader reader, string name)
 {
     return((DateTime)DataReaders.ReadDateTime(reader, reader.GetOrdinal(name)));
 }
 public static bool ReadBoolean(this SQLiteDataReader reader, string name)
 {
     return((bool)DataReaders.ReadBoolean(reader, reader.GetOrdinal(name)));
 }
 public static float ReadFloat(this SQLiteDataReader reader, string name)
 {
     return((float)DataReaders.ReadFloat(reader, GetIndexOfField(reader, name)));
 }
 public static int ReadInt32(this SQLiteDataReader reader, string name)
 {
     return((int)DataReaders.ReadInt32(reader, GetIndexOfField(reader, name)));
 }
 public static IList <string> ReadList(this SQLiteDataReader reader, int idx, char separator)
 {
     return((IList <string>)DataReaders.ReadList(reader, idx, separator));
 }
 public static string ReadString(this SQLiteDataReader reader, string name)
 {
     return((string)DataReaders.ReadString(reader, GetIndexOfField(reader, name)));
 }
 public static IList <string> ReadPipeList(this SQLiteDataReader reader, int idx)
 {
     return((IList <string>)DataReaders.ReadPipeList(reader, idx));
 }
 public static bool ReadBoolean(this SQLiteDataReader reader, int idx)
 {
     return((bool)DataReaders.ReadBoolean(reader, idx));
 }
 public static string ReadIntAsString(this SQLiteDataReader reader, int idx)
 {
     return((string)DataReaders.ReadIntAsString(reader, idx));
 }
 public static int ReadInt32(this SQLiteDataReader reader, string name)
 {
     return((int)DataReaders.ReadInt32(reader, reader.GetOrdinal(name)));
 }