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