예제 #1
0
 public static int ReadInt32(this SQLiteDataReader reader, int idx)
 {
     return((int)DataReaders.ReadInt32(reader, idx));
 }
예제 #2
0
 public static int ReadInt32(this SQLiteDataReader reader, string name)
 {
     return((int)DataReaders.ReadInt32(reader, GetIndexOfField(reader, name)));
 }
예제 #3
0
 public static int ReadInt32(this SQLiteDataReader reader, string name)
 {
     return((int)DataReaders.ReadInt32(reader, reader.GetOrdinal(name)));
 }