| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383 |
- //
- // Microsoft.SqlServer.Server.SqlMetaData
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- //
- // Copyright (C) 2004 Novell, Inc (http://www.novell.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.
- //
- #if NET_2_0
- using System;
- using System.Data;
- using System.Data.SqlTypes;
- namespace Microsoft.SqlServer.Server {
- public sealed class SqlMetaData
- {
- #region Fields
- public const long x_lMax = -1;
- SqlCompareOptions compareOptions = SqlCompareOptions.None;
- string databaseName = null;
- bool isPartialLength = false;
- long localeId = 0L;
- long maxLength = 4L;
- string name;
- byte precision = 10;
- byte scale = 0;
- string schemaName = null;
- SqlDbType sqlDbType = SqlDbType.Int;
- #endregion // Fields
- #region Constructors
- [MonoTODO]
- public SqlMetaData (string name, SqlDbType type)
- {
- this.name = name;
- this.sqlDbType = type;
- }
- [MonoTODO]
- public SqlMetaData (string name, SqlDbType type, long maxLength)
- {
- this.maxLength = maxLength;
- this.name = name;
- this.sqlDbType = type;
- }
- [MonoTODO]
- public SqlMetaData (string name, SqlDbType type, SqlMetaData[] columnMetaData)
- {
- this.sqlDbType = type;
- }
- [MonoTODO]
- public SqlMetaData (string name, SqlDbType type, byte precision, byte scale)
- {
- this.name = name;
- this.precision = precision;
- this.scale = scale;
- this.sqlDbType = type;
- }
- [MonoTODO]
- public SqlMetaData (string strName, long maxLength, long localeId, SqlCompareOptions compareOptions, string udtTypeName)
- {
- this.compareOptions = compareOptions;
- this.localeId = localeId;
- this.maxLength = maxLength;
- this.name = strName;
- }
- [MonoTODO]
- public SqlMetaData (string name, SqlDbType type, long maxLength, long locale, SqlCompareOptions compareOptions)
- {
- this.compareOptions = compareOptions;
- this.localeId = locale;
- this.maxLength = maxLength;
- this.name = name;
- this.sqlDbType = type;
- }
- [MonoTODO]
- public SqlMetaData (string name, SqlDbType type, long maxLength, byte precision, byte scale, long localeId, SqlCompareOptions compareOptions, string DatabaseName, string SchemaName, bool PartialLength, string udtTypeName)
- {
- this.compareOptions = compareOptions;
- this.databaseName = DatabaseName;
- this.isPartialLength = PartialLength;
- this.localeId = localeId;
- this.maxLength = maxLength;
- this.name = name;
- this.precision = precision;
- this.scale = scale;
- this.schemaName = SchemaName;
- this.sqlDbType = type;
- }
- #endregion // Constructors
- #region Properties
- public SqlCompareOptions CompareOptions {
- get { return compareOptions; }
- }
- public string DatabaseName {
- get { return databaseName; }
- }
- [MonoTODO]
- public DbType DbType {
- get { throw new NotImplementedException (); }
- }
- public bool IsPartialLength {
- get { return isPartialLength; }
- }
- public long LocaleId {
- get { return localeId; }
- }
- public static long MAX {
- get { return x_lMax; }
- }
- public long MaxLength {
- get { return maxLength; }
- }
- public string Name {
- get { return name; }
- }
- public byte Precision {
- get { return precision; }
- }
- public byte Scale {
- get { return scale; }
- }
- public string SchemaName {
- get { return schemaName; }
- }
- public SqlDbType SqlDbType {
- get { return sqlDbType; }
- }
- [MonoTODO]
- public string TypeName {
- get { throw new NotImplementedException (); }
- }
- #endregion // Properties
- #region Methods
- [MonoTODO]
- public bool Adjust (bool value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public byte Adjust (byte value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public byte[] Adjust (byte[] value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public char Adjust (char value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public char[] Adjust (char[] value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public DateTime Adjust (DateTime value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public decimal Adjust (decimal value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public double Adjust (double value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public Guid Adjust (Guid value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public short Adjust (short value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public int Adjust (int value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public long Adjust (long value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public object Adjust (object value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public float Adjust (float value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SqlBinary Adjust (SqlBinary value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SqlBoolean Adjust (SqlBoolean value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SqlByte Adjust (SqlByte value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SqlBytes Adjust (SqlBytes value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SqlChars Adjust (SqlChars value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SqlDateTime Adjust (SqlDateTime value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SqlDecimal Adjust (SqlDecimal value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SqlDouble Adjust (SqlDouble value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SqlGuid Adjust (SqlGuid value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SqlInt16 Adjust (SqlInt16 value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SqlInt32 Adjust (SqlInt32 value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SqlInt64 Adjust (SqlInt64 value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SqlMoney Adjust (SqlMoney value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SqlSingle Adjust (SqlSingle value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SqlString Adjust (SqlString value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public string Adjust (string value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SqlMetaData GetMetaData (int i)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static SqlMetaData InferFromValue (object value, string name)
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
- #endif
|