| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341 |
- //
- // System.Data.Common.AbstractDataReader
- //
- // Authors:
- // Konstantin Triger <[email protected]>
- // Boris Kirzner <[email protected]>
- //
- // (C) 2005 Mainsoft Corporation (http://www.mainsoft.com)
- //
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System;
- using System.Data;
- using System.Collections;
- using System.Data.Common;
- using java.io;
- using java.sql;
- namespace System.Data.ProviderBase
- {
- public abstract class AbstractDataReader : DbDataReaderBase, ISafeDataRecord {
- #region Fields
- private ResultSetMetaData _resultsMetaData;
- protected AbstractDbCommand _command;
- private DataTable _schemaTable;
- private ReaderState _readerState = ReaderState.Uninitialized;
- private IReaderCacheContainer[] _readerCache;
- private int _currentCacheFilledPosition;
- private Stack _resultSetStack = new Stack();
- private bool _isClosed = false;
- [Flags]
- private enum ReaderState { Uninitialized = 0, Empty = 1, HasRows = 2, FirstRed = 4, Eof = 8, Fetching = 16 };
- protected internal enum SCHEMA_TABLE { ColumnName,
- ColumnOrdinal,
- ColumnSize,
- NumericPrecision,
- NumericScale,
- IsUnique,
- IsKey,
- BaseServerName,
- BaseCatalogName,
- BaseColumnName,
- BaseSchemaName,
- BaseTableName,
- DataType,
- AllowDBNull,
- ProviderType,
- IsAliased,
- IsExpression,
- IsIdentity,
- IsAutoIncrement,
- IsRowVersion,
- IsHidden,
- IsLong,
- IsReadOnly};
- #endregion // Fields
- #region Constructors
- protected AbstractDataReader() : base (CommandBehavior.Default) {
- }
-
- public AbstractDataReader(AbstractDbCommand command): base(command.Behavior) {
- _command = command;
- if (_command.Connection != null) {
- ((AbstractDBConnection)_command.Connection).AddReference(this);
- }
- }
- #endregion // Constructors
- #region Properties
- public override bool HasRows {
- get {
- if (IsClosed) {
- throw new InvalidOperationException("Invalid attempt to HasRows when reader is closed.");
- }
- try {
- if(null == Results)
- return false;
- }
- catch(SystemException) {
- //suppress
- return false;
- }
- return (_readerState & ReaderState.HasRows) != 0;
- }
- }
- public override int RecordsAffected
- {
- // MSDN : The RecordsAffected property is not set
- // until all rows are read and you close the reader.
- get {
- return _command.RecordsAffected;
- }
- }
- public override int FieldCount
- {
- get {
- if (ResultsMetaData == null)
- return 0;
- try {
- return ResultsMetaData.getColumnCount();
- }
- catch (SQLException exp) {
- throw CreateException(exp);
- }
- }
- }
- protected internal CommandBehavior Behavior
- {
- get {
- return _command.Behavior;
- }
- }
- public override Object this[String columnName]
- {
- get {
- try {
- int columnIndex = Results.findColumn(columnName) - 1;
- return this[columnIndex];
- }
- catch (SQLException exp) {
- throw new IndexOutOfRangeException(exp.Message, exp);
- }
- }
- }
- public override Object this[int columnIndex]
- {
- get { return GetValue(columnIndex); }
- }
- protected ResultSet Results
- {
- get {
- if (_readerState == ReaderState.Uninitialized) {
- if (_resultSetStack.Count == 0) {
- ResultSet resultSet = _command.CurrentResultSet;
- if (resultSet == null)
- return null;
- _resultSetStack.Push(resultSet);
- }
- _readerState = ReaderState.Fetching;
- for (;;) {
- try {
- Configuration.BooleanSetting prefetchSchema = Configuration.Switches.PrefetchSchema;
- if (prefetchSchema == Configuration.BooleanSetting.NotSet) {
- AbstractDBConnection conn = (AbstractDBConnection)((ICloneable)_command.Connection);
- string driverName = conn.JdbcConnection.getMetaData().getDriverName();
- if (driverName.IndexOf("DB2") >= 0)
- prefetchSchema = Configuration.BooleanSetting.True;
- }
- if (prefetchSchema == Configuration.BooleanSetting.True)
- GetSchemaTable();
- ResultSet resultSet = (ResultSet)_resultSetStack.Peek();
- if (resultSet.next()) {
- _readerState = (ReaderState.HasRows | ReaderState.FirstRed);
- ResultSetMetaData rsMetaData = ResultsMetaData;
- DbConvert.JavaSqlTypes javaSqlType = (DbConvert.JavaSqlTypes)rsMetaData.getColumnType(1);
- if (javaSqlType == DbConvert.JavaSqlTypes.OTHER) {
- object value = GetValue(0);
- if (value != null && value is ResultSet) {
- _resultsMetaData = null;
- _readerCache = null;
- SchemaTable = null;
- _readerState = ReaderState.Fetching;
- _resultSetStack.Push(value);
- continue;
- }
- }
- }
- else
- _readerState = ReaderState.Empty;
- break;
- }
- catch(SQLException e) {
- throw CreateException(e);
- }
- }
- }
- return (_resultSetStack.Count > 0) ? (ResultSet)_resultSetStack.Peek() : null;
- }
- }
- protected ResultSetMetaData ResultsMetaData
- {
- get {
- ResultSet results = Results;
- if (results == null) {
- return null;
- }
- if(_resultsMetaData == null) {
- _resultsMetaData = results.getMetaData();
- }
- return _resultsMetaData;
- }
- }
- protected DataTable SchemaTable
- {
- get {
- if (_schemaTable == null) {
- _schemaTable = ConstructSchemaTable();
- }
- return _schemaTable;
- }
- set {_schemaTable = value; }
- }
- internal protected IReaderCacheContainer[] ReaderCache
- {
- get {
- if (_readerCache == null) {
- _readerCache = CreateReaderCache();
- _currentCacheFilledPosition = -1;
- }
- return _readerCache;
- }
- }
- public override bool IsClosed {
- get { return _isClosed; }
- }
- #endregion // Properties
- #region Methods
- protected abstract int GetProviderType(int jdbcType);
- protected abstract SystemException CreateException(string message, SQLException e);
- protected abstract SystemException CreateException(IOException e);
- protected SystemException CreateException(SQLException e)
- {
- return CreateException(e.Message,e);
- }
- private bool CloseCurrentResultSet() {
- if (_resultSetStack.Count > 0) {
- try{
- _resultsMetaData = null;
- _readerCache = null;
- _readerState = ReaderState.Uninitialized;
- ResultSet rs = (ResultSet)_resultSetStack.Pop();
- rs.close();
- return true;
- }
- catch (SQLException exp) {
- throw CreateException(exp);
- }
- }
- return false;
- }
- // FIXME : add Close(bool readAllRecords) and pass this bool to skip looping over NextResult(), override AbstractDbCommand.ExecuteScalar
- public override void Close()
- {
- if (IsClosed)
- return;
- try {
- CloseCurrentResultSet();
- _command.OnReaderClosed(this);
- }
- finally {
- CloseInternal();
- }
- }
- internal void CloseInternal()
- {
- _resultsMetaData = null;
- _readerCache = null;
- _isClosed = true;
- }
- public override bool NextResult()
- {
- CloseCurrentResultSet();
- if ((_command.Behavior & CommandBehavior.SingleResult) != 0) {
- while (CloseCurrentResultSet());
- while (_command.NextResultSet());
- return false;
- }
- try {
- while (_resultSetStack.Count > 0) {
- ResultSet rs = (ResultSet)_resultSetStack.Peek();
- if(!rs.next()) {
- CloseCurrentResultSet();
- continue;
- }
- // must be a ResultSet
- object childRs = rs.getObject(1);
- if (childRs != null) {
- SchemaTable = null;
- _resultSetStack.Push(childRs);
- return true;
- }
- }
- }
- catch (SQLException exp) {
- throw CreateException(exp);
- }
-
- if (_command.NextResultSet()) {
- SchemaTable = null;
- return true;
- }
- return false;
- }
- public override bool Read()
- {
- if(null == Results ||
- (_readerState & (ReaderState.HasRows | ReaderState.Eof)) != ReaderState.HasRows)
- return false;
- bool firstRead = false;
- try {
- if ((_readerState & ReaderState.FirstRed) != 0) {
- firstRead = true;
- _readerState &= ~ReaderState.FirstRed;
- return true;
- }
- else {
- bool next = Results.next();
- if (!next)
- _readerState |= ReaderState.Eof;
- return next;
- }
- }
- catch (SQLException exp) {
- // suppress exception as .Net does
- return false;
- }
- finally {
- // in case of first read we could sampled the first value
- // to see whether there is a resultset, so _currentCacheFilledPosition
- // might be already inited
- if (!firstRead)
- _currentCacheFilledPosition = -1;
- }
- }
- public override bool GetBoolean(int columnIndex)
- {
- FillReaderCache(columnIndex);
- return ((BooleanReaderCacheContainer)ReaderCache[columnIndex]).GetBoolean();
- }
- public bool GetBooleanSafe(int columnIndex)
- {
- if (ReaderCache[columnIndex] is BooleanReaderCacheContainer) {
- return GetBoolean(columnIndex);
- }
- else {
- return Convert.ToBoolean(GetValue(columnIndex));
- }
- }
- public override byte GetByte(int columnIndex)
- {
- FillReaderCache(columnIndex);
- return ((ByteReaderCacheContainer)ReaderCache[columnIndex]).GetByte();
- }
- public byte GetByteSafe(int columnIndex)
- {
- if (ReaderCache[columnIndex] is ByteReaderCacheContainer) {
- return GetByte(columnIndex);
- }
- else {
- return Convert.ToByte(GetValue(columnIndex));
- }
- }
- public override long GetBytes(
- int columnIndex,
- long dataIndex,
- byte[] buffer,
- int bufferIndex,
- int length)
- {
- FillReaderCache(columnIndex);
- return ((BytesReaderCacheContainer)ReaderCache[columnIndex])
- .GetBytes(dataIndex, buffer, bufferIndex, length);
- }
- public virtual byte[] GetBytes(int columnIndex)
- {
- FillReaderCache(columnIndex);
- return ((BytesReaderCacheContainer)ReaderCache[columnIndex]).GetBytes();
- }
- public override char GetChar(int columnIndex)
- {
- FillReaderCache(columnIndex);
- string s = ((StringReaderCacheContainer)ReaderCache[columnIndex]).GetString();
- if(s == null) {
- return '\0';
- }
- return s[0];
- }
- public char GetCharSafe(int columnIndex)
- {
- if (ReaderCache[columnIndex] is StringReaderCacheContainer) {
- return GetChar(columnIndex);
- }
- else {
- return Convert.ToChar(GetValue(columnIndex));
- }
- }
- public override long GetChars(
- int columnIndex,
- long dataIndex,
- char[] buffer,
- int bufferIndex,
- int length)
- {
- FillReaderCache(columnIndex);
- return ((CharsReaderCacheContainer)ReaderCache[columnIndex])
- .GetChars(dataIndex, buffer, bufferIndex, length);
- }
- public override string GetDataTypeName(int columnIndex)
- {
- try {
- if (ResultsMetaData == null) {
- return String.Empty;
- }
- return ResultsMetaData.getColumnTypeName(columnIndex + 1);
- }
- catch (SQLException exp) {
- throw CreateException(exp);
- }
- }
- public override DateTime GetDateTime(int columnIndex)
- {
- return GetDateTimeUnsafe(columnIndex);
- }
- DateTime GetDateTimeUnsafe(int columnIndex)
- {
- FillReaderCache(columnIndex);
- return ((DateTimeReaderCacheContainer)ReaderCache[columnIndex]).GetDateTime();
- }
- public DateTime GetDateTimeSafe(int columnIndex)
- {
- if (ReaderCache[columnIndex] is DateTimeReaderCacheContainer) {
- return GetDateTimeUnsafe(columnIndex);
- }
- else {
- return Convert.ToDateTime(GetValue(columnIndex));
- }
- }
- public virtual TimeSpan GetTimeSpan(int columnIndex)
- {
- FillReaderCache(columnIndex);
- return ((TimeSpanReaderCacheContainer)ReaderCache[columnIndex]).GetTimeSpan();
- }
- public override Guid GetGuid(int columnIndex)
- {
- FillReaderCache(columnIndex);
- return ((GuidReaderCacheContainer)ReaderCache[columnIndex]).GetGuid();
- }
- public override decimal GetDecimal(int columnIndex)
- {
- return GetDecimalUnsafe(columnIndex);
- }
- decimal GetDecimalUnsafe(int columnIndex)
- {
- FillReaderCache(columnIndex);
- return ((DecimalReaderCacheContainer)ReaderCache[columnIndex]).GetDecimal();
- }
- public decimal GetDecimalSafe(int columnIndex)
- {
- if (ReaderCache[columnIndex] is DecimalReaderCacheContainer) {
- return GetDecimalUnsafe(columnIndex);
- }
- else {
- return Convert.ToDecimal(GetValue(columnIndex));
- }
- }
- public override double GetDouble(int columnIndex)
- {
- return GetDoubleUnsafe(columnIndex);
- }
- double GetDoubleUnsafe(int columnIndex)
- {
- FillReaderCache(columnIndex);
- return ((DoubleReaderCacheContainer)ReaderCache[columnIndex]).GetDouble();
- }
- public double GetDoubleSafe(int columnIndex)
- {
- if (ReaderCache[columnIndex] is DoubleReaderCacheContainer) {
- return GetDoubleUnsafe(columnIndex);
- }
- else {
- return Convert.ToDouble(GetValue(columnIndex));
- }
- }
- public override float GetFloat(int columnIndex)
- {
- return GetFloatUnsafe(columnIndex);
- }
- float GetFloatUnsafe(int columnIndex)
- {
- FillReaderCache(columnIndex);
- return ((FloatReaderCacheContainer)ReaderCache[columnIndex]).GetFloat();
- }
- public float GetFloatSafe(int columnIndex)
- {
- if (ReaderCache[columnIndex] is FloatReaderCacheContainer) {
- return GetFloatUnsafe(columnIndex);
- }
- else {
- return Convert.ToSingle(GetValue(columnIndex));
- }
- }
- public override short GetInt16(int columnIndex)
- {
- return GetInt16Unsafe(columnIndex);
- }
- short GetInt16Unsafe(int columnIndex)
- {
- FillReaderCache(columnIndex);
- return ((Int16ReaderCacheContainer)ReaderCache[columnIndex]).GetInt16();
- }
- public short GetInt16Safe(int columnIndex)
- {
- if (ReaderCache[columnIndex] is Int16ReaderCacheContainer) {
- return GetInt16Unsafe(columnIndex);
- }
- else {
- return Convert.ToInt16(GetValue(columnIndex));
- }
- }
- public override int GetInt32(int columnIndex)
- {
- return GetInt32Unsafe(columnIndex);
- }
- int GetInt32Unsafe(int columnIndex)
- {
- FillReaderCache(columnIndex);
- return ((Int32ReaderCacheContainer)ReaderCache[columnIndex]).GetInt32();
- }
- public int GetInt32Safe(int columnIndex)
- {
- if (ReaderCache[columnIndex] is Int32ReaderCacheContainer) {
- return GetInt32Unsafe(columnIndex);
- }
- else {
- return Convert.ToInt32(GetValue(columnIndex));
- }
- }
- public override long GetInt64(int columnIndex)
- {
- return GetInt64Unsafe(columnIndex);
- }
- long GetInt64Unsafe(int columnIndex)
- {
- FillReaderCache(columnIndex);
- return ((Int64ReaderCacheContainer)ReaderCache[columnIndex]).GetInt64();
- }
- public long GetInt64Safe(int columnIndex)
- {
- if (ReaderCache[columnIndex] is Int64ReaderCacheContainer) {
- return GetInt64Unsafe(columnIndex);
- }
- else {
- return Convert.ToInt64(GetValue(columnIndex));
- }
- }
- public override string GetName(int columnIndex)
- {
- try {
- if (ResultsMetaData == null) {
- return String.Empty;
- }
- return ResultsMetaData.getColumnName(columnIndex + 1);
- }
- catch (SQLException exp) {
- throw new IndexOutOfRangeException(exp.Message, exp);
- }
- }
- public override int GetOrdinal(String columnName)
- {
- try {
- int retVal = Results.findColumn(columnName);
- if(retVal != -1) {
- retVal -= 1;
- }
- return retVal;
- }
- catch (SQLException exp) {
- throw new IndexOutOfRangeException(exp.Message, exp);
- }
- }
- public override string GetString(int columnIndex)
- {
- return GetStringUnsafe(columnIndex);
- }
- string GetStringUnsafe(int columnIndex)
- {
- FillReaderCache(columnIndex);
- return ((StringReaderCacheContainer)ReaderCache[columnIndex]).GetString();
- }
- public string GetStringSafe(int columnIndex) {
- if (ReaderCache[columnIndex] is StringReaderCacheContainer) {
- return GetStringUnsafe(columnIndex);
- }
- else {
- return Convert.ToString(GetValue(columnIndex));
- }
- }
- public override object GetValue(int columnIndex)
- {
- FillReaderCache(columnIndex);
- if (ReaderCache[columnIndex].IsNull()) {
- return DBNull.Value;
- }
- return ReaderCache[columnIndex].GetValue();
- }
- public override int GetValues(Object[] values)
- {
- int columnCount = FieldCount;
- int i = 0;
- for (; i < values.Length && i < columnCount; i++) {
- values[i] = GetValue(i);
- }
- return i;
- }
- private void FillReaderCache(int columnIndex)
- {
- try {
- IReaderCacheContainer[] readerCache = ReaderCache;
- if ((Behavior & CommandBehavior.SequentialAccess) == 0) {
- while (_currentCacheFilledPosition < columnIndex) {
- _currentCacheFilledPosition++;
- readerCache[_currentCacheFilledPosition].Fetch(Results,_currentCacheFilledPosition, false);
- }
- }
- else {
- readerCache[columnIndex].Fetch(Results,columnIndex, true);
- }
- }
- catch(SQLException e) {
- _currentCacheFilledPosition = -1;
- throw CreateException(e);
- }
- catch (IOException e) {
- _currentCacheFilledPosition = -1;
- throw CreateException(e);
- }
- }
- protected virtual IReaderCacheContainer CreateReaderCacheContainer(int jdbcType, int columnIndex) {
- switch ((DbConvert.JavaSqlTypes)jdbcType) {
- case DbConvert.JavaSqlTypes.ARRAY :
- return new ArrayReaderCacheContainer();
- case DbConvert.JavaSqlTypes.BIGINT :
- return new Int64ReaderCacheContainer();
- case DbConvert.JavaSqlTypes.BINARY :
- case DbConvert.JavaSqlTypes.VARBINARY :
- case DbConvert.JavaSqlTypes.LONGVARBINARY :
- return new BytesReaderCacheContainer();
- case DbConvert.JavaSqlTypes.BIT :
- return new BooleanReaderCacheContainer();
- case DbConvert.JavaSqlTypes.BLOB :
- return new BlobReaderCacheContainer();
- case DbConvert.JavaSqlTypes.CHAR :
- if (String.CompareOrdinal("uniqueidentifier", ResultsMetaData.getColumnTypeName(columnIndex)) == 0) {
- return new GuidReaderCacheContainer();
- }
- else {
- return new StringReaderCacheContainer();
- }
- case DbConvert.JavaSqlTypes.CLOB :
- return new ClobReaderCacheContainer();
- case DbConvert.JavaSqlTypes.TIME :
- return new TimeSpanReaderCacheContainer();
- case DbConvert.JavaSqlTypes.DATE :
- AbstractDBConnection conn = (AbstractDBConnection)((ICloneable)_command.Connection);
- string driverName = conn.JdbcConnection.getMetaData().getDriverName();
- if (driverName.StartsWith("PostgreSQL")) {
- return new DateTimeReaderCacheContainer();
- }
- else
- goto case DbConvert.JavaSqlTypes.TIMESTAMP;
- case DbConvert.JavaSqlTypes.TIMESTAMP :
- return new TimestampReaderCacheContainer();
- case DbConvert.JavaSqlTypes.DECIMAL :
- case DbConvert.JavaSqlTypes.NUMERIC :
- // jdbc driver for oracle identitfies both FLOAT and NUMBEr columns as
- // java.sql.Types.NUMERIC (2), columnTypeName NUMBER, columnClassName java.math.BigDecimal
- // therefore we relay on scale
- int scale = ResultsMetaData.getScale(columnIndex);
- if (scale == -127) {
- // Oracle db type FLOAT
- return new DoubleReaderCacheContainer();
- }
- else {
- return new DecimalReaderCacheContainer();
- }
- case DbConvert.JavaSqlTypes.DOUBLE :
- case DbConvert.JavaSqlTypes.FLOAT :
- return new DoubleReaderCacheContainer();
- case DbConvert.JavaSqlTypes.INTEGER :
- return new Int32ReaderCacheContainer();
- case DbConvert.JavaSqlTypes.LONGVARCHAR :
- case DbConvert.JavaSqlTypes.VARCHAR :
- return new StringReaderCacheContainer();
- case DbConvert.JavaSqlTypes.NULL :
- return new NullReaderCacheContainer();
- case DbConvert.JavaSqlTypes.REAL :
- return new FloatReaderCacheContainer();
- case DbConvert.JavaSqlTypes.REF :
- return new RefReaderCacheContainer();
- case DbConvert.JavaSqlTypes.SMALLINT :
- return new Int16ReaderCacheContainer();
- case DbConvert.JavaSqlTypes.TINYINT :
- return new ByteReaderCacheContainer();
- case DbConvert.JavaSqlTypes.DISTINCT :
- case DbConvert.JavaSqlTypes.JAVA_OBJECT :
- case DbConvert.JavaSqlTypes.OTHER :
- case DbConvert.JavaSqlTypes.STRUCT :
- default :
- return new ObjectReaderCacheContainer();
- }
- }
- private IReaderCacheContainer[] CreateReaderCache()
- {
- try {
- IReaderCacheContainer[] readerCache = new IReaderCacheContainer[FieldCount];
- for(int i=1; i <= readerCache.Length; i++)
- readerCache[i-1] = CreateReaderCacheContainer(ResultsMetaData.getColumnType(i), i);
- return readerCache;
- }
- catch(SQLException e) {
- throw CreateException(e);
- }
- }
- protected bool IsNumeric(int columnIndex)
- {
- return ReaderCache[columnIndex].IsNumeric();
- }
- public override bool IsDBNull(int columnIndex)
- {
- FillReaderCache(columnIndex);
- return ReaderCache[columnIndex].IsNull();
- }
- public override Type GetFieldType(int i)
- {
- try {
- int javaSqlType = ResultsMetaData.getColumnType(i + 1);
- return DbConvert.JavaSqlTypeToClrType(javaSqlType);
- }
- catch (SQLException exp) {
- throw new IndexOutOfRangeException(exp.Message, exp);
- }
- }
- public IDataReader GetData(int i)
- {
- throw new NotSupportedException();
- }
- protected virtual void SetSchemaType(DataRow schemaRow, ResultSetMetaData metaData, int columnIndex) {
- DbConvert.JavaSqlTypes columnType = (DbConvert.JavaSqlTypes)metaData.getColumnType(columnIndex);
- switch (columnType) {
- case DbConvert.JavaSqlTypes.ARRAY: {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = typeof (java.sql.Array);
- schemaRow [(int)SCHEMA_TABLE.IsLong] = false;
- break;
- }
- case DbConvert.JavaSqlTypes.BIGINT: {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfInt64;
- schemaRow [(int)SCHEMA_TABLE.IsLong] = false;
- break;
- }
- case DbConvert.JavaSqlTypes.BINARY: {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfByteArray;
- schemaRow [(int)SCHEMA_TABLE.IsLong] = true;
- break;
- }
- case DbConvert.JavaSqlTypes.BIT: {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfBoolean;
- schemaRow [(int)SCHEMA_TABLE.IsLong] = false;
- break;
- }
- case DbConvert.JavaSqlTypes.BLOB: {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfByteArray;
- schemaRow [(int)SCHEMA_TABLE.IsLong] = true;
- break;
- }
- case DbConvert.JavaSqlTypes.CHAR: {
- // FIXME : specific for Microsoft SQl Server driver
- if (metaData.getColumnTypeName(columnIndex).Equals("uniqueidentifier")) {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = DbType.Guid;
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfGuid;
- schemaRow [(int)SCHEMA_TABLE.IsLong] = false;
- }
- else {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfString;
- schemaRow [(int)SCHEMA_TABLE.IsLong] = false;
- }
- break;
- }
- case DbConvert.JavaSqlTypes.CLOB: {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfString; // instead og .java.sql.Clob
- schemaRow [(int)SCHEMA_TABLE.IsLong] = true;
- break;
- }
- case DbConvert.JavaSqlTypes.DATE: {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfDateTime;
- schemaRow [(int)SCHEMA_TABLE.IsLong] = false;
- break;
- }
- // else if(DbConvert.JavaSqlTypes.DISTINCT)
- // {
- // schemaRow ["ProviderType = (int)GetProviderType((int)columnType);
- // schemaRow ["DataType = typeof (?);
- // schemaRow ["IsLong = false;
- // }
- case DbConvert.JavaSqlTypes.DOUBLE: {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfDouble; // was typeof(float)
- schemaRow [(int)SCHEMA_TABLE.IsLong] = false;
- break;
- }
- case DbConvert.JavaSqlTypes.FLOAT: {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfDouble;
- schemaRow [(int)SCHEMA_TABLE.IsLong] = false;
- break;
- }
- case DbConvert.JavaSqlTypes.REAL: {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfFloat;
- schemaRow [(int)SCHEMA_TABLE.IsLong] = false;
- break;
- }
- case DbConvert.JavaSqlTypes.INTEGER: {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfInt32;
- schemaRow [(int)SCHEMA_TABLE.IsLong] = false;
- break;
- }
- case DbConvert.JavaSqlTypes.JAVA_OBJECT: {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfObject;
- schemaRow [(int)SCHEMA_TABLE.IsLong] = false;
- break;
- }
- case DbConvert.JavaSqlTypes.LONGVARBINARY: {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfByteArray;
- schemaRow [(int)SCHEMA_TABLE.IsLong] = true;
- break;
- }
- case DbConvert.JavaSqlTypes.LONGVARCHAR: {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfString;
- schemaRow [(int)SCHEMA_TABLE.IsLong] = true;
- break;
- }
- case DbConvert.JavaSqlTypes.DECIMAL:
- case DbConvert.JavaSqlTypes.NUMERIC: {
- int scale = ResultsMetaData.getScale(columnIndex);
- if (scale == -127) {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfDouble;
- schemaRow [(int)SCHEMA_TABLE.IsLong] = false;
- }
- else {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfDecimal;
- schemaRow [(int)SCHEMA_TABLE.IsLong] = false;
- }
- break;
- }
- case DbConvert.JavaSqlTypes.REF: {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = typeof (java.sql.Ref);
- schemaRow [(int)SCHEMA_TABLE.IsLong] = true;
- break;
- }
- case DbConvert.JavaSqlTypes.SMALLINT: {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfInt16;
- schemaRow [(int)SCHEMA_TABLE.IsLong] = false;
- break;
- }
- case DbConvert.JavaSqlTypes.STRUCT: {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = typeof (java.sql.Struct);
- schemaRow [(int)SCHEMA_TABLE.IsLong] = false;
- break;
- }
- case DbConvert.JavaSqlTypes.TIME: {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfTimespan;
- schemaRow [(int)SCHEMA_TABLE.IsLong] = false;
- break;
- }
- case DbConvert.JavaSqlTypes.TIMESTAMP: {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfDateTime;
- schemaRow [(int)SCHEMA_TABLE.IsLong] = false;
- break;
- }
- case DbConvert.JavaSqlTypes.TINYINT: {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfByte;
- schemaRow [(int)SCHEMA_TABLE.IsLong] = false;
- break;
- }
- case DbConvert.JavaSqlTypes.VARBINARY: {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfByteArray;
- schemaRow [(int)SCHEMA_TABLE.IsLong] = true;
- break;
- }
- case DbConvert.JavaSqlTypes.VARCHAR: {
- // FIXME : specific for Microsoft SQl Server driver
- if (metaData.getColumnTypeName(columnIndex).Equals("sql_variant")) {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = DbType.Object;
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfObject;
- schemaRow [(int)SCHEMA_TABLE.IsLong] = false;
- }
- else {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = GetProviderType((int)columnType);
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfString;// (char[]);
- schemaRow [(int)SCHEMA_TABLE.IsLong] = false;//true;
- }
- break;
- }
- // else if(columnType == -8 && metaData.getColumnTypeName(columnIndex).Equals("ROWID")) {
- // // FIXME : specific for Oracle JDBC driver : OracleTypes.ROWID
- // schemaRow [(int)SCHEMA_TABLE.ProviderType] = DbType.String;
- // schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfString;
- // schemaRow [(int)SCHEMA_TABLE.IsLong] = false;
- // }
- default: {
- schemaRow [(int)SCHEMA_TABLE.ProviderType] = DbType.Object;
- schemaRow [(int)SCHEMA_TABLE.DataType] = DbTypes.TypeOfObject;
- schemaRow [(int)SCHEMA_TABLE.IsLong] = true;
- break;
- }
- }
- }
- public override DataTable GetSchemaTable()
- {
- if (SchemaTable.Rows != null && SchemaTable.Rows.Count > 0) {
- return SchemaTable;
- }
-
- ResultSetMetaData metaData;
- if (Behavior == CommandBehavior.SchemaOnly) {
- try {
- metaData = ((PreparedStatement)_command.Statement).getMetaData();
- }
- catch(SQLException e) {
- throw CreateException("CommandBehaviour.SchemaOnly is not supported by the JDBC driver.",e);
- }
- }
- else {
- metaData = ResultsMetaData;
- }
- if (metaData == null) {
- return SchemaTable;
- }
- DatabaseMetaData dbMetaData = null;
- AbstractDBConnection clonedConnection = null;
- if ((_command.Behavior & CommandBehavior.KeyInfo) != 0) {
- clonedConnection = (AbstractDBConnection)((ICloneable)_command.Connection).Clone();
- try {
- clonedConnection.Open();
- dbMetaData = clonedConnection.JdbcConnection.getMetaData();
- }
- catch {
- //suppress
- if (clonedConnection != null) {
- clonedConnection.Close();
- }
- }
- }
-
- try {
- int tmp;
- for(int i = 1; i <= metaData.getColumnCount(); i++) {
- DataRow row = SchemaTable.NewRow ();
- string columnName = metaData.getColumnLabel(i);
- string baseColumnName = metaData.getColumnName(i);
-
- row [(int)SCHEMA_TABLE.ColumnName] = columnName; // maybe we should use metaData.getColumnLabel(i);
- row [(int)SCHEMA_TABLE.ColumnSize] = metaData.getColumnDisplaySize(i);
- row [(int)SCHEMA_TABLE.ColumnOrdinal] = i - 1;
- try {
- // FIXME : workaround for Oracle JDBC driver bug
- // getPrecision on BLOB, CLOB, NCLOB throws NumberFormatException
- tmp = metaData.getPrecision(i);
- }
- catch(java.lang.NumberFormatException e) {
- // supress exception
- tmp = 255;
- }
- row [(int)SCHEMA_TABLE.NumericPrecision] = Convert.ToInt16(tmp > 255 ? 255 : tmp);
- tmp = metaData.getScale(i);
- row [(int)SCHEMA_TABLE.NumericScale] = Convert.ToInt16(tmp > 255 ? 255 : tmp);
- row [(int)SCHEMA_TABLE.BaseServerName] = DBNull.Value;
-
- string catalog = null;
- try {
- catalog = metaData.getCatalogName(i);
- }
- catch (Exception e) {
- // supress exception
- }
- if (catalog != null && catalog.Length == 0)
- catalog = ((AbstractDBConnection)_command.Connection).JdbcConnection.getCatalog();
- row [(int)SCHEMA_TABLE.BaseCatalogName] = catalog;
- row [(int)SCHEMA_TABLE.BaseColumnName] = baseColumnName;
- string schemaName;
- string tableName;
- try {
- tableName = metaData.getTableName(i);
- }
- catch {
- tableName = null;
- }
- try {
- schemaName = metaData.getSchemaName(i);
- }
- catch {
- schemaName = null;
- }
- if (tableName != null && tableName.Length == 0)
- tableName = null;
- if (schemaName != null && schemaName.Length == 0)
- schemaName = null;
- row [(int)SCHEMA_TABLE.BaseSchemaName] = schemaName;
- row [(int)SCHEMA_TABLE.BaseTableName] = tableName;
- row [(int)SCHEMA_TABLE.AllowDBNull] = Convert.ToBoolean(metaData.isNullable(i));
-
- InitKeyInfo(row, dbMetaData, catalog, schemaName, tableName);
-
- row [(int)SCHEMA_TABLE.IsAliased] = columnName != baseColumnName;
- row [(int)SCHEMA_TABLE.IsExpression] = false;
- row [(int)SCHEMA_TABLE.IsAutoIncrement] = metaData.isAutoIncrement(i);
- row [(int)SCHEMA_TABLE.IsHidden] = false;
- row [(int)SCHEMA_TABLE.IsReadOnly] = metaData.isReadOnly(i);
- SetSchemaType(row, metaData, i);
- SchemaTable.Rows.Add (row);
- }
- }
- catch (SQLException e) {
- throw CreateException(e);
- }
- finally {
- if (clonedConnection != null) {
- clonedConnection.Close();
- }
- }
- return SchemaTable;
- }
- private void InitKeyInfo(DataRow row, DatabaseMetaData dbMetaData, String catalog, String schema, String table) {
- string column = (string)row [(int)SCHEMA_TABLE.BaseColumnName];
- row [(int)SCHEMA_TABLE.IsUnique] = false;
- row [(int)SCHEMA_TABLE.IsKey] = false;
- row [(int)SCHEMA_TABLE.IsIdentity] = false;
- row [(int)SCHEMA_TABLE.IsRowVersion] = false;
- if ((_command.Behavior & CommandBehavior.KeyInfo) == 0)
- return;
- if(table == null || column == null || dbMetaData == null)
- return;
- ResultSet versionCol = dbMetaData.getVersionColumns(catalog, schema, table);
- try {
- while(versionCol.next()) {
- if(versionCol.getString("COLUMN_NAME") == column) {
- if (DatabaseMetaData__Finals.versionColumnPseudo == versionCol.getShort("PSEUDO_COLUMN")) {
- row [(int)SCHEMA_TABLE.IsIdentity] = true;
- row [(int)SCHEMA_TABLE.IsRowVersion] = true;
- }
- }
- }
- }
- finally {
- versionCol.close();
- }
- ResultSet primaryKeys = dbMetaData.getPrimaryKeys(catalog,schema,table);
- bool primaryKeyExists = false;
- int columnCount = 0;
- try {
- while(primaryKeys.next()) {
- columnCount++;
- if(primaryKeys.getString("COLUMN_NAME") == column) {
- row [(int)SCHEMA_TABLE.IsKey] = true;
- primaryKeyExists = true;
- }
- }
- // column constitutes a key by itself, so it should be marked as unique
- if ((columnCount == 1) && (((bool)row [(int)SCHEMA_TABLE.IsKey]) == true)) {
- row [(int)SCHEMA_TABLE.IsUnique] = true;
- }
- }
- finally {
- primaryKeys.close();
- }
- ResultSet indexInfoRes = dbMetaData.getIndexInfo(catalog,schema,table,true,false);
- string currentIndexName = null;
- columnCount = 0;
- bool belongsToCurrentIndex = false;
- bool atFirstIndex = true;
- bool uniqueKeyExists = false;
- try {
- while(indexInfoRes.next()) {
- if (indexInfoRes.getShort("TYPE") == DatabaseMetaData__Finals.tableIndexStatistic) {
- // index of type tableIndexStatistic identifies table statistics - ignore it
- continue;
- }
-
- uniqueKeyExists = true;
- string iname = indexInfoRes.getString("INDEX_NAME");
- if (currentIndexName == iname) {
- // we're within the rows of the same index
- columnCount++;
- }
- else {
- // we jump to row of new index
- if (belongsToCurrentIndex && columnCount == 1) {
- // there is a constraint of type UNIQUE that applies only to this column
- row [(int)SCHEMA_TABLE.IsUnique] = true;
- }
- if (currentIndexName != null) {
- atFirstIndex = false;
- }
- currentIndexName = iname;
- columnCount = 1;
- belongsToCurrentIndex = false;
- }
- if(indexInfoRes.getString("COLUMN_NAME") == column) {
- // FIXME : this will cause "spare" columns marked as IsKey. Needs future investigation.
- // only the first index we met should be marked as a key
- //if (atFirstIndex) {
- row [(int)SCHEMA_TABLE.IsKey] = true;
- //}
- belongsToCurrentIndex = true;
- }
- }
- // the column appears in the last index, which is single-column
- if (belongsToCurrentIndex && columnCount == 1) {
- // there is a constraint of type UNIQUE that applies only to this column
- row [(int)SCHEMA_TABLE.IsUnique] = true;
- }
- }
- finally {
- indexInfoRes.close();
- }
- if(!primaryKeyExists && !uniqueKeyExists) {
- ResultSet bestRowId = dbMetaData.getBestRowIdentifier(catalog, schema, table, DatabaseMetaData__Finals.bestRowTemporary, false);
- try {
- while(bestRowId.next()) {
- if(bestRowId.getString("COLUMN_NAME") == column)
- row [(int)SCHEMA_TABLE.IsKey] = true;
- }
- }
- finally {
- bestRowId.close();
- }
- }
- }
- protected static DataTable ConstructSchemaTable ()
- {
- Type booleanType = DbTypes.TypeOfBoolean;
- Type stringType = DbTypes.TypeOfString;
- Type intType = DbTypes.TypeOfInt32;
- Type typeType = DbTypes.TypeOfType;
- Type shortType = DbTypes.TypeOfInt16;
- DataTable schemaTable = new DataTable ("SchemaTable");
- schemaTable.Columns.Add ("ColumnName", stringType);
- schemaTable.Columns.Add ("ColumnOrdinal", intType);
- schemaTable.Columns.Add ("ColumnSize", intType);
- schemaTable.Columns.Add ("NumericPrecision", shortType);
- schemaTable.Columns.Add ("NumericScale", shortType);
- schemaTable.Columns.Add ("IsUnique", booleanType);
- schemaTable.Columns.Add ("IsKey", booleanType);
- schemaTable.Columns.Add ("BaseServerName", stringType);
- schemaTable.Columns.Add ("BaseCatalogName", stringType);
- schemaTable.Columns.Add ("BaseColumnName", stringType);
- schemaTable.Columns.Add ("BaseSchemaName", stringType);
- schemaTable.Columns.Add ("BaseTableName", stringType);
- schemaTable.Columns.Add ("DataType", typeType);
- schemaTable.Columns.Add ("AllowDBNull", booleanType);
- schemaTable.Columns.Add ("ProviderType", intType);
- schemaTable.Columns.Add ("IsAliased", booleanType);
- schemaTable.Columns.Add ("IsExpression", booleanType);
- schemaTable.Columns.Add ("IsIdentity", booleanType);
- schemaTable.Columns.Add ("IsAutoIncrement", booleanType);
- schemaTable.Columns.Add ("IsRowVersion", booleanType);
- schemaTable.Columns.Add ("IsHidden", booleanType);
- schemaTable.Columns.Add ("IsLong", booleanType);
- schemaTable.Columns.Add ("IsReadOnly", booleanType);
- return schemaTable;
- }
- #endregion // Methods
- }
- }
|