public static int ReadInt32(this SQLiteDataReader reader, int idx)
 {
     return((int)DataReaders.ReadInt32(reader, idx));
 }
 public static int ReadInt32(this SQLiteDataReader reader, string name)
 {
     return((int)DataReaders.ReadInt32(reader, GetIndexOfField(reader, name)));
 }
 public static int ReadInt32(this SQLiteDataReader reader, string name)
 {
     return((int)DataReaders.ReadInt32(reader, reader.GetOrdinal(name)));
 }