示例#1
0
 public static DateTime ReadDateTime(this SQLiteDataReader reader, string name)
 {
     return((DateTime)DataReaders.ReadDateTime(reader, GetIndexOfField(reader, name)));
 }
示例#2
0
 public static float ReadFloat(this SQLiteDataReader reader, int idx)
 {
     return((float)DataReaders.ReadFloat(reader, idx));
 }
示例#3
0
 public static bool ReadBoolean(this SQLiteDataReader reader, string name)
 {
     return((bool)DataReaders.ReadBoolean(reader, GetIndexOfField(reader, name)));
 }
示例#4
0
 public static DateTime ReadDateTime(this SQLiteDataReader reader, int idx)
 {
     return((DateTime)DataReaders.ReadDateTime(reader, idx));
 }
示例#5
0
 public static IList <string> ReadPipeList(this SQLiteDataReader reader, string name)
 {
     return((IList <string>)DataReaders.ReadPipeList(reader, GetIndexOfField(reader, name)));
 }
示例#6
0
 public static string ReadString(this SQLiteDataReader reader, string name)
 {
     return((string)DataReaders.ReadString(reader, reader.GetOrdinal(name)));
 }
示例#7
0
 public static int ReadInt32(this SQLiteDataReader reader, int idx)
 {
     return((int)DataReaders.ReadInt32(reader, idx));
 }
示例#8
0
 public static IList <string> ReadList(this SQLiteDataReader reader, string name, char separator)
 {
     return((IList <string>)DataReaders.ReadList(reader, GetIndexOfField(reader, name), separator));
 }
示例#9
0
 public static IList <string> ReadList(this SQLiteDataReader reader, string name, char separator)
 {
     return((IList <string>)DataReaders.ReadList(reader, reader.GetOrdinal(name), separator));
 }
示例#10
0
 public static IList <string> ReadPipeList(this SQLiteDataReader reader, string name)
 {
     return((IList <string>)DataReaders.ReadPipeList(reader, reader.GetOrdinal(name)));
 }
示例#11
0
 public static float ReadFloat(this SQLiteDataReader reader, string name)
 {
     return((float)DataReaders.ReadFloat(reader, reader.GetOrdinal(name)));
 }
示例#12
0
 public static DateTime ReadDateTime(this SQLiteDataReader reader, string name)
 {
     return((DateTime)DataReaders.ReadDateTime(reader, reader.GetOrdinal(name)));
 }
示例#13
0
 public static bool ReadBoolean(this SQLiteDataReader reader, string name)
 {
     return((bool)DataReaders.ReadBoolean(reader, reader.GetOrdinal(name)));
 }
示例#14
0
 public static float ReadFloat(this SQLiteDataReader reader, string name)
 {
     return((float)DataReaders.ReadFloat(reader, GetIndexOfField(reader, name)));
 }
示例#15
0
 public static int ReadInt32(this SQLiteDataReader reader, string name)
 {
     return((int)DataReaders.ReadInt32(reader, GetIndexOfField(reader, name)));
 }
示例#16
0
 public static IList <string> ReadList(this SQLiteDataReader reader, int idx, char separator)
 {
     return((IList <string>)DataReaders.ReadList(reader, idx, separator));
 }
示例#17
0
 public static string ReadString(this SQLiteDataReader reader, string name)
 {
     return((string)DataReaders.ReadString(reader, GetIndexOfField(reader, name)));
 }
示例#18
0
 public static IList <string> ReadPipeList(this SQLiteDataReader reader, int idx)
 {
     return((IList <string>)DataReaders.ReadPipeList(reader, idx));
 }
示例#19
0
 public static bool ReadBoolean(this SQLiteDataReader reader, int idx)
 {
     return((bool)DataReaders.ReadBoolean(reader, idx));
 }
示例#20
0
 public static string ReadIntAsString(this SQLiteDataReader reader, int idx)
 {
     return((string)DataReaders.ReadIntAsString(reader, idx));
 }
示例#21
0
 public static int ReadInt32(this SQLiteDataReader reader, string name)
 {
     return((int)DataReaders.ReadInt32(reader, reader.GetOrdinal(name)));
 }