System.Data.Common.DbDataReader.GetChar(int)

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 7

1. Example

Project: EDDiscovery
Source File: SQLiteCommandED.cs
View license
public override char GetChar(int ordinal) { return InnerReader.GetChar(ordinal); }

2. Example

Project: Glimpse
Source File: GlimpseDbDataReader.cs
View license
public override char GetChar(int ordinal)
        {
            return InnerDataReader.GetChar(ordinal);
        }

3. Example

View license
public override char GetChar(int i)
            {
                return reader.GetChar(i);
            }

4. Example

Project: ALinq
Source File: DataReader.cs
View license
public override char GetChar(int ordinal)
        {
            return source.GetChar(ordinal);
        }

5. Example

Project: ALinq
Source File: Connection.cs
View license
public override char GetChar(int ordinal)
        {
            return source.GetChar(ordinal);
        }

6. Example

Project: nhibernate-core
Source File: ResultSetWrapper.cs
View license
public override char GetChar(int i)
		{
			return rs.GetChar(i);
		}

7. Example

View license
public override char GetChar(int i)
		{
			return reader.GetChar(i);
		}

8. Example

View license
public override char GetChar(int i)
		{
			return _reader.GetChar(i);
		}

9. Example

Project: NServiceKit
Source File: ProfiledDbDataReader.cs
View license
public override char GetChar(int ordinal)
        {
            return _reader.GetChar(ordinal);
        }

10. Example

View license
public override char GetChar(int ordinal)
        {
            return wrappedReader.GetChar(ordinal);
        }

11. Example

View license
public override char GetChar(int ordinal)
        {
            if (this.IsDBNull(ordinal))
                throw new SqlNullValueException(string.Format("Column contains {0} DBNull", ordinal));

            return _resultsReader.GetChar(ordinal);
        }

12. Example

View license
public override char GetChar(int ordinal)
        {
            InduceErrorIfClosed();
            WaitForReaderOrThrow();
            if (IsPseudoColumnReference(ordinal))
            {
                throw new NotSupportedException("GetChar not supported");
            }
            return this.GetCurrentDataReader().GetChar(ordinal);
        }

13. Example

View license
private Delegate GetValuesGetter(int ind, MemberInfo m)
			{
				var memberType = ReflectionUtils.Ge/n ..... /n //View Source file for more details /n }