Here are the examples of the csharp api class System.Data.Common.DbDataReader.GetChar(int) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
13 Examples
0
1. Example
View licensepublic override char GetChar(int ordinal) { return InnerReader.GetChar(ordinal); }
0
2. Example
View licensepublic override char GetChar(int ordinal) { return InnerDataReader.GetChar(ordinal); }
0
0
0
0
0
0
0
9. Example
View licensepublic override char GetChar(int ordinal) { return _reader.GetChar(ordinal); }
0
10. Example
View licensepublic override char GetChar(int ordinal) { return wrappedReader.GetChar(ordinal); }
0
11. Example
View licensepublic override char GetChar(int ordinal) { if (this.IsDBNull(ordinal)) throw new SqlNullValueException(string.Format("Column contains {0} DBNull", ordinal)); return _resultsReader.GetChar(ordinal); }
0
12. Example
View licensepublic override char GetChar(int ordinal) { InduceErrorIfClosed(); WaitForReaderOrThrow(); if (IsPseudoColumnReference(ordinal)) { throw new NotSupportedException("GetChar not supported"); } return this.GetCurrentDataReader().GetChar(ordinal); }
0
13. Example
View licenseprivate Delegate GetValuesGetter(int ind, MemberInfo m) { var memberType = ReflectionUtils.Ge/n ..... /n //View Source file for more details /n }