Imported Upstream version 4.6.0.125

Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2016-08-03 10:59:49 +00:00
parent a569aebcfd
commit e79aa3c0ed
17047 changed files with 3137615 additions and 392334 deletions

View File

@@ -1,39 +0,0 @@
2009-07-18 Veerapuram Varadhan <vvaradhan@novell.com>
* AssemblyInfo.cs: Make internals visible to System.Web for 2.0 profile
2009-07-15 Veerapuram Varadhan <vvaradhan@novell.com>
* AssemblyInfo.cs: Make internals visible to System.Design for 2.0 profile.
2008-04-25 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* AssemblyInfo.cs: Take into account the 3.5 changes. Hopefully corecompare is wrong predicting add+remove
2008-04-15 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* AssemblyInfo.cs: Added missing attributes
2005-07-22 Raja R Harinath <rharinath@novell.com>
* Consts.cs (Consts.AssemblyMicrosoft_VSDesigner): Fix version to
match masterinfo.
2005-05-29 Boris Kirzner <borisk@mainsoft.com>
* AssemblyInfo.cs: added #if !TARGET_JVM for attribues not currently supported in TARGET_JVM.
2004-04-06 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* AssemblyInfo.cs: also remove the fixme
2004-04-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* AssemblyInfo.cs: missing bits from Gert's patch for CLS
compliance.
2003-07-18 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* AssemblyInfo.cs: Added
* ChangeLog: Added
* Locale.cs: Added

View File

@@ -1 +0,0 @@
8525330305c6b6e71a7c85f16527ad7931717bea

View File

@@ -26,9 +26,10 @@ BUILT_SOURCES = \
gen_OleDbParameterCollection.cs
endif
RESOURCE_STRINGS = ../../../external/referencesource/System.Data/system.data.txt
TXT_RESOURCE_STRINGS = ../referencesource/System.Data/system.data.txt
TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -r:System.Core.dll -r:Mono.Data.Sqlite.dll -nowarn:618,169,612,219,168
TEST_LIB_REFS = System.Core Mono.Data.Sqlite
TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -nowarn:618,169,612,219,168
TEST_MONO_PATH = .
@@ -37,48 +38,47 @@ EXTRA_DISTFILES = \
$(wildcard Test/System.Data/*.xsd) \
$(wildcard Test/System.Xml/*.xml) \
$(wildcard Test/System.Xml/*.xsd) \
Test/System.Data/schemas/ChangeLog \
$(wildcard Test/System.Data/schemas/*.xsd) \
app_test_net_4_x.config \
Test/System.Data/binserialize/*.bin \
SqliteTest.db \
referencesource.sources
gen_OdbcConnection.cs: ../../../external/referencesource/System.Data/System/Data/ProviderBase/DbConnectionHelper.cs
gen_OdbcConnection.cs: ../referencesource/System.Data/System/Data/ProviderBase/DbConnectionHelper.cs
sed -e "s/NAMESPACE/System.Data.Odbc/g" $< |\
sed -e "s/CONNECTIONFACTORYOBJECTNAME/OdbcConnectionFactory.SingletonInstance/g" |\
sed -e "s/CONNECTIONOBJECTNAME/OdbcConnection/g" >$@
gen_OleDbConnection.cs: ../../../external/referencesource/System.Data/System/Data/ProviderBase/DbConnectionHelper.cs
gen_OleDbConnection.cs: ../referencesource/System.Data/System/Data/ProviderBase/DbConnectionHelper.cs
sed -e s/NAMESPACE/System.Data.OleDb/g $< |\
sed -e s/CONNECTIONFACTORYOBJECTNAME/OleDbConnectionFactory.SingletonInstance/g |\
sed -e s/CONNECTIONOBJECTNAME/OleDbConnection/g >$@
gen_SqlConnection.cs: ../../../external/referencesource/System.Data/System/Data/ProviderBase/DbConnectionHelper.cs
gen_SqlConnection.cs: ../referencesource/System.Data/System/Data/ProviderBase/DbConnectionHelper.cs
sed -e s/NAMESPACE/System.Data.SqlClient/g $< |\
sed -e s/CONNECTIONFACTORYOBJECTNAME/SqlConnectionFactory.SingletonInstance/g |\
sed -e s/CONNECTIONOBJECTNAME/SqlConnection/g >$@
gen_OdbcParameter.cs: ../../../external/referencesource/System.Data/System/Data/ProviderBase/DbParameterHelper.cs
gen_OdbcParameter.cs: ../referencesource/System.Data/System/Data/ProviderBase/DbParameterHelper.cs
sed -e s/RESNAMESPACE/System.Data/g $< |\
sed -e s/NAMESPACE/System.Data.Odbc/g |\
sed -e s/PARAMETEROBJECTNAME/OdbcParameter/g >$@
gen_OleDbParameter.cs: ../../../external/referencesource/System.Data/System/Data/ProviderBase/DbParameterHelper.cs
gen_OleDbParameter.cs: ../referencesource/System.Data/System/Data/ProviderBase/DbParameterHelper.cs
sed -e s/RESNAMESPACE/System.Data/g $< |\
sed -e s/NAMESPACE/System.Data.OleDb/g |\
sed -e s/PARAMETEROBJECTNAME/OleDbParameter/g >$@
gen_SqlParameter.cs: ../../../external/referencesource/System.Data/System/Data/ProviderBase/DbParameterHelper.cs
gen_SqlParameter.cs: ../referencesource/System.Data/System/Data/ProviderBase/DbParameterHelper.cs
sed -e s/RESNAMESPACE/System.Data/g $< |\
sed -e s/NAMESPACE/System.Data.SqlClient/g |\
sed -e s/PARAMETEROBJECTNAME/SqlParameter/g >$@
gen_OdbcParameterCollection.cs: ../../../external/referencesource/System.Data/System/Data/ProviderBase/DbParameterCollectionHelper.cs
gen_OdbcParameterCollection.cs: ../referencesource/System.Data/System/Data/ProviderBase/DbParameterCollectionHelper.cs
sed -e s/RESNAMESPACE/System.Data/g $< |\
sed -e s/NAMESPACE/System.Data.Odbc/g |\
sed -e s/PARAMETERCOLLECTIONOBJECTNAME/OdbcParameterCollection/g |\
sed -e s/PARAMETEROBJECTNAME/OdbcParameter/g >$@
gen_OleDbParameterCollection.cs: ../../../external/referencesource/System.Data/System/Data/ProviderBase/DbParameterCollectionHelper.cs
gen_OleDbParameterCollection.cs: ../referencesource/System.Data/System/Data/ProviderBase/DbParameterCollectionHelper.cs
sed -e s/RESNAMESPACE/System.Data/g $< |\
sed -e s/NAMESPACE/System.Data.OleDb/g |\
sed -e s/PARAMETERCOLLECTIONOBJECTNAME/OleDbParameterCollection/g |\
sed -e s/PARAMETEROBJECTNAME/OleDbParameter/g >$@
gen_SqlParameterCollection.cs: ../../../external/referencesource/System.Data/System/Data/ProviderBase/DbParameterCollectionHelper.cs
gen_SqlParameterCollection.cs: ../referencesource/System.Data/System/Data/ProviderBase/DbParameterCollectionHelper.cs
sed -e s/RESNAMESPACE/System.Data/g $< |\
sed -e s/NAMESPACE/System.Data.SqlClient/g |\
sed -e s/PARAMETERCOLLECTIONOBJECTNAME/SqlParameterCollection/g |\

View File

@@ -1,57 +0,0 @@
2007-09-27 Nagappan A <anagappan@novell.com>
* SqlMetaData.cs: Implemented an overloaded constructor, missing
properties (DbType, XmlSchemaCollectionDatabase,
XmlSchemaCollectionName, XmlSchemaCollectionOwningSchema).
2007-09-26 Nagappan A <anagappan@novell.com>
* SqlMetaData.cs (Adjust, InferFromValue): Implemented overloaded
methods, constructors.
2007-09-26 Nagappan A <anagappan@novell.com>
* SqlMethodAttribute.cs: Added appropriate option to AttributeUsage.
* SqlFacetAttribute.cs: Added appropriate option to AttributeUsage.
* Format.cs: Removed extra enum entries.
* SqlTriggerContext.cs: Code Alignment.
* TriggerAction.cs: Updated appropriate enum entries based on 2.0
profile.
* SqlUserDefinedTypeAttribute.cs: Added appropriate option to
AttributeUsage.
* Removed public variable.
* Removed set from Format property.
* SystemDataAccessKind.cs: Added Serializable attribute.
* SqlUserDefinedAggregateAttribute.cs: Removed set from Format
property.
2007-09-26 Nagappan A <anagappan@novell.com>
* DataAccessKind.cs: Added serializable attribute.
2006-02-17 Chris Toshok <toshok@ximian.com>
* InvalidUdtException.cs: fix namespace typo, and mark all ctors
as internal (since none are public in corcompare.)
2005-09-02 Umadevi S <sumadevi@novell.com>
* Added SqlTriggerContext.cs,SqlProcedureAttribute.cs,SqlTriggerAttribute.cs
2005-09-02 Umadevi S <sumadevi@novell.com>
* Corrected couple of files, added Format.cs and DataAccessKind.cs
2005-09-02 Umadevi S <sumadevi@novell.com>
* Added files IBinarySerialize.cs,InvalidUdtException.cs,SqlFacetAttribute.cs
SqlFunctionAttribute.cs,SqlMetaData.cs, SqlMethodAttribute.cs, SqlUserDefined
AggregateAttribute.cs, SqlUserDefinedTypeAttribute.cs, SystemDataAccessKind.cs,
TriggerAction.cs
(Note these files are moved from System.Data.Sql)

View File

@@ -33,131 +33,135 @@ using System.Data.SqlTypes;
namespace Microsoft.SqlServer.Server
{
public sealed class SqlDataRecord : IDataRecord
public class SqlDataRecord : IDataRecord
{
public bool GetBoolean (int ordinal)
public SqlDataRecord (params SqlMetaData[] metaData)
{
}
public virtual bool GetBoolean (int ordinal)
{
throw new NotImplementedException ();
}
public byte GetByte (int ordinal)
public virtual byte GetByte (int ordinal)
{
throw new NotImplementedException ();
}
public long GetBytes (int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length)
public virtual long GetBytes (int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length)
{
throw new NotImplementedException ();
}
public char GetChar (int ordinal)
public virtual char GetChar (int ordinal)
{
throw new NotImplementedException ();
}
public long GetChars (int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length)
public virtual long GetChars (int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length)
{
throw new NotImplementedException ();
}
public IDataReader GetData (int ordinal)
public virtual IDataReader GetData (int ordinal)
{
throw new NotImplementedException ();
}
public string GetDataTypeName (int ordinal)
public virtual string GetDataTypeName (int ordinal)
{
throw new NotImplementedException ();
}
public DateTime GetDateTime (int ordinal)
public virtual DateTime GetDateTime (int ordinal)
{
throw new NotImplementedException ();
}
public decimal GetDecimal (int ordinal)
public virtual decimal GetDecimal (int ordinal)
{
throw new NotImplementedException ();
}
public double GetDouble (int ordinal)
public virtual double GetDouble (int ordinal)
{
throw new NotImplementedException ();
}
public System.Type GetFieldType (int ordinal)
public virtual System.Type GetFieldType (int ordinal)
{
throw new NotImplementedException ();
}
public float GetFloat (int ordinal)
public virtual float GetFloat (int ordinal)
{
throw new NotImplementedException ();
}
public Guid GetGuid (int ordinal)
public virtual Guid GetGuid (int ordinal)
{
throw new NotImplementedException ();
}
public short GetInt16 (int ordinal)
public virtual short GetInt16 (int ordinal)
{
throw new NotImplementedException ();
}
public int GetInt32 (int ordinal)
public virtual int GetInt32 (int ordinal)
{
throw new NotImplementedException ();
}
public long GetInt64 (int ordinal)
public virtual long GetInt64 (int ordinal)
{
throw new NotImplementedException ();
}
public string GetName (int ordinal)
public virtual string GetName (int ordinal)
{
throw new NotImplementedException ();
}
public int GetOrdinal (string name)
public virtual int GetOrdinal (string name)
{
throw new NotImplementedException ();
}
public string GetString (int ordinal)
public virtual string GetString (int ordinal)
{
throw new NotImplementedException ();
}
public object GetValue (int ordinal)
public virtual object GetValue (int ordinal)
{
throw new NotImplementedException ();
}
public int GetValues (object[] values)
public virtual int GetValues (object[] values)
{
throw new NotImplementedException ();
}
public bool IsDBNull (int ordinal)
public virtual bool IsDBNull (int ordinal)
{
throw new NotImplementedException ();
}
public int FieldCount {
public virtual int FieldCount {
get {
throw new NotImplementedException ();
}
}
public object this [string name] {
public virtual object this [string name] {
get {
throw new NotImplementedException ();
}
}
public object this [int ordinal] {
public virtual object this [int ordinal] {
get {
throw new NotImplementedException ();
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1 @@
1fce5dcce82839c44d1805b58f449849591dc318

View File

@@ -0,0 +1,126 @@
namespace System.Data {
static partial class Res {
public const string ADP_InvalidMixedUsageOfAccessTokenAndAuthentication = "ADP_InvalidMixedUsageOfAccessTokenAndAuthentication";
public const string ADP_InvalidMixedUsageOfAccessTokenAndContextConnection = "ADP_InvalidMixedUsageOfAccessTokenAndContextConnection";
public const string ADP_InvalidMixedUsageOfAccessTokenAndCredential = "ADP_InvalidMixedUsageOfAccessTokenAndCredential";
public const string ADP_InvalidMixedUsageOfAccessTokenAndIntegratedSecurity = "ADP_InvalidMixedUsageOfAccessTokenAndIntegratedSecurity";
public const string ADP_InvalidMixedUsageOfAccessTokenAndUserIDPassword = "ADP_InvalidMixedUsageOfAccessTokenAndUserIDPassword";
public const string ADP_InvalidMixedUsageOfCredentialAndAccessToken = "ADP_InvalidMixedUsageOfCredentialAndAccessToken";
public const string DbConnectionString_Authentication = "DbConnectionString_Authentication";
public const string SQL_AuthenticationAndIntegratedSecurity = "SQL_AuthenticationAndIntegratedSecurity";
public const string SQL_CredentialsNotProvided = "SQL_CredentialsNotProvided";
public const string SQL_IntegratedWithUserIDAndPassword = "SQL_IntegratedWithUserIDAndPassword";
public const string SQL_ParsingErrorAuthLibraryType = "SQL_ParsingErrorAuthLibraryType";
public const string SQL_ParsingErrorFeatureId = "SQL_ParsingErrorFeatureId";
public const string SQL_ParsingErrorLength = "SQL_ParsingErrorLength";
public const string SQL_ParsingErrorOffset = "SQL_ParsingErrorOffset";
public const string SQL_ParsingErrorStatus = "SQL_ParsingErrorStatus";
public const string SQL_ParsingErrorToken = "SQL_ParsingErrorToken";
public const string SQL_ParsingErrorValue = "SQL_ParsingErrorValue";
public const string SQL_ParsingErrorWithState = "SQL_ParsingErrorWithState";
public const string SQL_SettingCredentialWithIntegrated = "SQL_SettingCredentialWithIntegrated";
public const string SQL_SettingIntegratedWithCredential = "SQL_SettingIntegratedWithCredential";
public const string TCE_BatchedUpdateColumnEncryptionSettingMismatch = "TCE_BatchedUpdateColumnEncryptionSettingMismatch";
public const string TCE_CanOnlyCallOnce = "TCE_CanOnlyCallOnce";
public const string TCE_CertificateNotFound = "TCE_CertificateNotFound";
public const string TCE_CertificateNotFoundSysErr = "TCE_CertificateNotFoundSysErr";
public const string TCE_CertificateWithNoPrivateKey = "TCE_CertificateWithNoPrivateKey";
public const string TCE_CertificateWithNoPrivateKeySysErr = "TCE_CertificateWithNoPrivateKeySysErr";
public const string TCE_ColumnDecryptionFailed = "TCE_ColumnDecryptionFailed";
public const string TCE_DbConnectionString_ColumnEncryptionSetting = "TCE_DbConnectionString_ColumnEncryptionSetting";
public const string TCE_DecryptionFailed = "TCE_DecryptionFailed";
public const string TCE_EmptyCertificateThumbprint = "TCE_EmptyCertificateThumbprint";
public const string TCE_EmptyCertificateThumbprintSysErr = "TCE_EmptyCertificateThumbprintSysErr";
public const string TCE_EmptyColumnEncryptionKey = "TCE_EmptyColumnEncryptionKey";
public const string TCE_EmptyEncryptedColumnEncryptionKey = "TCE_EmptyEncryptedColumnEncryptionKey";
public const string TCE_EmptyProviderName = "TCE_EmptyProviderName";
public const string TCE_InvalidAlgorithmVersion = "TCE_InvalidAlgorithmVersion";
public const string TCE_InvalidAlgorithmVersionInEncryptedCEK = "TCE_InvalidAlgorithmVersionInEncryptedCEK";
public const string TCE_InvalidAuthenticationTag = "TCE_InvalidAuthenticationTag";
public const string TCE_InvalidCertificateLocation = "TCE_InvalidCertificateLocation";
public const string TCE_InvalidCertificateLocationSysErr = "TCE_InvalidCertificateLocationSysErr";
public const string TCE_InvalidCertificatePath = "TCE_InvalidCertificatePath";
public const string TCE_InvalidCertificatePathSysErr = "TCE_InvalidCertificatePathSysErr";
public const string TCE_InvalidCertificateSignature = "TCE_InvalidCertificateSignature";
public const string TCE_InvalidCertificateStore = "TCE_InvalidCertificateStore";
public const string TCE_InvalidCertificateStoreSysErr = "TCE_InvalidCertificateStoreSysErr";
public const string TCE_InvalidCipherTextSize = "TCE_InvalidCipherTextSize";
public const string TCE_InvalidCiphertextLengthInEncryptedCEK = "TCE_InvalidCiphertextLengthInEncryptedCEK";
public const string TCE_InvalidCustomKeyStoreProviderName = "TCE_InvalidCustomKeyStoreProviderName";
public const string TCE_InvalidEncryptionKeyOrdinal = "TCE_InvalidEncryptionKeyOrdinal";
public const string TCE_InvalidEncryptionType = "TCE_InvalidEncryptionType";
public const string TCE_InvalidKeyEncryptionAlgorithm = "TCE_InvalidKeyEncryptionAlgorithm";
public const string TCE_InvalidKeyEncryptionAlgorithmSysErr = "TCE_InvalidKeyEncryptionAlgorithmSysErr";
public const string TCE_InvalidKeySize = "TCE_InvalidKeySize";
public const string TCE_InvalidSignatureInEncryptedCEK = "TCE_InvalidSignatureInEncryptedCEK";
public const string TCE_KeyDecryptionFailed = "TCE_KeyDecryptionFailed";
public const string TCE_KeyDecryptionFailedCertStore = "TCE_KeyDecryptionFailedCertStore";
public const string TCE_LargeCertificatePathLength = "TCE_LargeCertificatePathLength";
public const string TCE_LargeCertificatePathLengthSysErr = "TCE_LargeCertificatePathLengthSysErr";
public const string TCE_NotSupportedByServer = "TCE_NotSupportedByServer";
public const string TCE_NullCertificatePath = "TCE_NullCertificatePath";
public const string TCE_NullCertificatePathSysErr = "TCE_NullCertificatePathSysErr";
public const string TCE_NullCipherText = "TCE_NullCipherText";
public const string TCE_NullColumnEncryptionAlgorithm = "TCE_NullColumnEncryptionAlgorithm";
public const string TCE_NullColumnEncryptionKey = "TCE_NullColumnEncryptionKey";
public const string TCE_NullColumnEncryptionKeySysErr = "TCE_NullColumnEncryptionKeySysErr";
public const string TCE_NullCustomKeyStoreProviderDictionary = "TCE_NullCustomKeyStoreProviderDictionary";
public const string TCE_NullEncryptedColumnEncryptionKey = "TCE_NullEncryptedColumnEncryptionKey";
public const string TCE_NullKeyEncryptionAlgorithm = "TCE_NullKeyEncryptionAlgorithm";
public const string TCE_NullKeyEncryptionAlgorithmSysErr = "TCE_NullKeyEncryptionAlgorithmSysErr";
public const string TCE_NullPlainText = "TCE_NullPlainText";
public const string TCE_NullProviderValue = "TCE_NullProviderValue";
public const string TCE_ParamDecryptionFailed = "TCE_ParamDecryptionFailed";
public const string TCE_ParamEncryptionFailed = "TCE_ParamEncryptionFailed";
public const string TCE_ParamEncryptionMetaDataMissing = "TCE_ParamEncryptionMetaDataMissing";
public const string TCE_ParamInvalidForceColumnEncryptionSetting = "TCE_ParamInvalidForceColumnEncryptionSetting";
public const string TCE_ParamUnExpectedEncryptionMetadata = "TCE_ParamUnExpectedEncryptionMetadata";
public const string TCE_ProcEncryptionMetaDataMissing = "TCE_ProcEncryptionMetaDataMissing";
public const string TCE_SequentialAccessNotSupportedOnEncryptedColumn = "TCE_SequentialAccessNotSupportedOnEncryptedColumn";
public const string TCE_SqlCommand_ColumnEncryptionSetting = "TCE_SqlCommand_ColumnEncryptionSetting";
public const string TCE_SqlConnection_TrustedColumnMasterKeyPaths = "TCE_SqlConnection_TrustedColumnMasterKeyPaths";
public const string TCE_SqlParameter_ForceColumnEncryption = "TCE_SqlParameter_ForceColumnEncryption";
public const string TCE_StreamNotSupportOnEncryptedColumn = "TCE_StreamNotSupportOnEncryptedColumn";
public const string TCE_UnexpectedDescribeParamFormat = "TCE_UnexpectedDescribeParamFormat";
public const string TCE_UnknownColumnEncryptionAlgorithm = "TCE_UnknownColumnEncryptionAlgorithm";
public const string TCE_UnknownColumnEncryptionAlgorithmId = "TCE_UnknownColumnEncryptionAlgorithmId";
public const string TCE_UnrecognizedKeyStoreProviderName = "TCE_UnrecognizedKeyStoreProviderName";
public const string TCE_UnsupportedDatatype = "TCE_UnsupportedDatatype";
public const string TCE_UnsupportedNormalizationVersion = "TCE_UnsupportedNormalizationVersion";
public const string TCE_UntrustedKeyPath = "TCE_UntrustedKeyPath";
public const string TCE_VeryLargeCiphertext = "TCE_VeryLargeCiphertext";
public const string DbConnectionString_TransparentNetworkIPResolution = "DbConnectionString_TransparentNetworkIPResolution";
public const string TCE_NullCspPathSysErr = "TCE_NullCspPathSysErr";
public const string TCE_NullCspPath = "TCE_NullCspPath";
public const string TCE_NullCngPathSysErr = "TCE_NullCngPathSysErr";
public const string TCE_NullCngPath = "TCE_NullCngPath";
public const string TCE_InvalidCspPathSysErr = "TCE_InvalidCspPathSysErr";
public const string TCE_InvalidCspPath = "TCE_InvalidCspPath";
public const string TCE_InvalidCngPathSysErr = "TCE_InvalidCngPathSysErr";
public const string TCE_InvalidCngPath = "TCE_InvalidCngPath";
public const string TCE_EmptyCspNameSysErr = "TCE_EmptyCspNameSysErr";
public const string TCE_EmptyCspName = "TCE_EmptyCspName";
public const string TCE_EmptyCngNameSysErr = "TCE_EmptyCngNameSysErr";
public const string TCE_EmptyCngName = "TCE_EmptyCngName";
public const string TCE_EmptyCspKeyIdSysErr = "TCE_EmptyCspKeyIdSysErr";
public const string TCE_EmptyCspKeyId = "TCE_EmptyCspKeyId";
public const string TCE_EmptyCngKeyIdSysErr = "TCE_EmptyCngKeyIdSysErr";
public const string TCE_EmptyCngKeyId = "TCE_EmptyCngKeyId";
public const string TCE_InvalidCspNameSysErr = "TCE_InvalidCspNameSysErr";
public const string TCE_InvalidCspName = "TCE_InvalidCspName";
public const string TCE_InvalidCspKeyIdSysErr = "TCE_InvalidCspKeyIdSysErr";
public const string TCE_InvalidCspKeyId = "TCE_InvalidCspKeyId";
public const string TCE_InvalidCngKeySysErr = "TCE_InvalidCngKeySysErr";
public const string TCE_InvalidCngKey = "TCE_InvalidCngKey";
public const string TCE_InvalidCiphertextLengthInEncryptedCEKCsp = "TCE_InvalidCiphertextLengthInEncryptedCEKCsp";
public const string TCE_InvalidCiphertextLengthInEncryptedCEKCng = "TCE_InvalidCiphertextLengthInEncryptedCEKCng";
public const string TCE_InvalidSignatureInEncryptedCEKCsp = "TCE_InvalidSignatureInEncryptedCEKCsp";
public const string TCE_InvalidSignatureInEncryptedCEKCng = "TCE_InvalidSignatureInEncryptedCEKCng";
public const string TCE_InvalidSignature = "TCE_InvalidSignature";
public const string GT_Disabled = "GT_Disabled";
public const string GT_UnsupportedSysTxVersion = "GT_UnsupportedSysTxVersion";
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -587,7 +587,7 @@ namespace System.Data.SqlClient {
public void WriteToServer (IDataReader reader)
{
DataTable table = new DataTable ();
DataTable table = new DataTable ("SourceTable");
SqlDataAdapter adapter = new SqlDataAdapter ();
adapter.FillInternal (table, reader);
BulkCopyToServer (table, 0);

View File

@@ -1,26 +0,0 @@
2010-01-21 Jonathan Pobst <monkey@jpobst.com>
* DateComparisonTest.cs: Failing test TestDateComparisonLeft
marked NotWorking. Bug filed as 572725.
2009-08-18 Veerapuram Varadhan <vvaradhan@novell.com>
* DateComparisonTest.cs: Fix test-data xml path.
2009-07-23 Adam Wendt <adam@awendtconsulting.com>
* DateComparisonTest.cs
(TestDateComparisonRight, TestDateComparisonLeft): Test case to
check that comparison of date and string works regardless of which
side the existing date is.
2007-06-06 Nagappan A <anagappan@novell.com>
* DataColumnExpressionTest.cs (DataColumnCharTest): Test case to
check if the data column of type char. Bug # 81625.
2006-12-07 Nagappan A <anagappan@novell.com>
* Mono.Data.SqlExpressions/DataColumnExpressionTest.cs
(TestDataColumnExpr1, TestDataColumnExpr2): Added two functions to
test Data Column Expression.

View File

@@ -1,152 +0,0 @@
2009-07-13 Atsushi Enomoto <atsushi@ximian.com>
* DataContainerTest.cs, DataColumnMappingCollectionTest.cs,
DataTableMappingCollectionTest.cs :
migration to newer nunit style.
2009-01-03 Gert Driesen <drieseng@users.sourceforge.net>
* DbCommandBuilderTest.cs: Added test for QuoteIdentifier.
2008-12-30 Gert Driesen <drieseng@users.sourceforge.net>
* DbCommandBuilderTest.cs: Added tests for properties.
2008-12-30 Gert Driesen <drieseng@users.sourceforge.net>
* DbCommandBuilderTest.cs: Added tests for QuotePrefix and
QuoteSuffix.
* DbConnectionStringBuilderTest.cs: Added tests for both odbc and
non-odbc rules.
2008-10-07 Daniel Morgan <monodanmorg@yahoo.com>
* DbConnectionStringBuilderTest.cs: add tests
EmbeddedCharTest1, 2, 3, and 4 for testing setting and getting
various connection strings you would find for SqlClient, Odbc,
or Oracle. Fix test ICollectionCopyToTest to index
into the collection in order.
2008-03-23 Gert Driesen <drieseng@users.sourceforge.net>
* DataContainerTest.cs: Code formatting.
* DbDataAdapterTest.cs: Added test for 2.0 methods.
2007-10-21 Gert Driesen <drieseng@users.sourceforge.net>
* DBDataPermissionAttributeTest.cs: Improved test for invalid
KeyRestrictionBehavior. Fixed line endings.
2007-10-20 Gert Driesen <drieseng@users.sourceforge.net>
* DbDataAdapterTest.cs: Added test for UpdateBatchSize.
* DataAdapterTest.cs: Added tests for AcceptChangesDuringFile,
AcceptChangesDuringUpdate, ContinueUpdateOnError, FillLoadOption,
MissingMappingAction, MissingSchemaAction and
ReturnProviderSpecificTypes.
2007-10-19 Gert Driesen <drieseng@users.sourceforge.net>
* DbTransactionTest.cs: Enabled test for bug #325397.
2007-10-16 Gert Driesen <drieseng@users.sourceforge.net>
* DbTransactionTest.cs: Added test for bug #325397.
2007-03-03 Gert Driesen <drieseng@users.sourceforge.net>
* DbProviderFactoriesConfigurationHandlerTest.cs: Changed test to also
verify behavior for clear and remove nodes.
2007-03-03 Gert Driesen <drieseng@users.sourceforge.net>
* DbProviderFactoriesConfigurationHandlerTest.cs: Fixed tests to
pass on MS. Added NotWorking test to check whether DbProviderFactories
that are defined on machine config are available.
2007-02-19 Atsushi Enomoto <atsushi@ximian.com>
* DbProviderFactoriesConfigurationHandlerTest.cs : test for #80894.
2006-07-13 Senganal T <tsenganal@novell.com>
* DBDataPermissionTest.cs : Removed invalid tests
2006-03-19 Boris Kirzner <borisk@mainsoft.com>
* DataColumnMappingCollectionTest.cs, DataTableMappingCollectionTest.cs,
DBDataPermissionAttributeTest.cs: ifdef code that is not supposed
to work in TARGET_JVM by now.
2006-02-18 Raja R Harinath <harinath@gmail.com>
* DbConnectionStringBuilderTest.cs
(ICollectionCopyToTest, NegICollectionCopyToTest): Enable.
(IDictionaryCopyToTest, NegIDictionaryCopyToTest): Delete.
2005-09-22 Sebastien Pouliot <sebastien@ximian.com>
* DBDataPermissionAttributeTest.cs: Removed *Choice security actions.
2005-04-04 Sureshkumar T <tsureshkumar@novell.com>
* DbConnectionStringBuilderTest.cs: few more tests ignored for now
because of gmcs incompatiability with csc. generic types are not
being able to be assigned to non-generic types though implements
non-generic interface.
2005-02-22 Sureshkumar T <tsureshkumar@novell.com>
* ConnectionStringsSectionTest.cs: Added file. Tests for
System.Configuration.ConnectionStringsSection class. This is used
for managing connection strings information for provider factory.
2005-02-22 Sureshkumar T <tsureshkumar@novell.com>
* DbProviderFactoriesConfigurationHandlerTest.cs: Tests for
DbProviderFactoriesConfigurationHandler class.
2005-01-14 Atsushi Enomoto <atsushi@ximian.com>
* DBDataPermissionTest.cs, DBDataPermissionAttributeTest.cs:
Fixed some incompatible type of exception between 2.0 and 1.1.
2005-01-14 Atsushi Enomoto <atsushi@ximian.com>
* DataTableMappingCollectionTest.cs,
DataColumnMappingCollectionTests.cs : Equals() and Remove() contains
invalid attempt to add one map to two collections, which is rejected
under MS.NET 1.1 sp1.
2004-11-22 Sureshkumar T <tsureshkumar@novell.com>
* DbConnectionStringBuilderTest.cs: Test cases for
DbConnectionStringBuilder class. These are independant tests.
2004-09-14 Sebastien Pouliot <sebastien@ximian.com>
* DBDataPermissionTest.cs: New. Unit tests for DBDataPermission.
2004-09-13 Sebastien Pouliot <sebastien@ximian.com>
* DBDataPermissionAttributeTest.cs: New. Unit tests for DBData
PermissionAttribute.
2004-08-13 Umadevi S <sumadevi@novell.com>
* Added File DataContainerTest
2004-06-10 Umadevi S <sumadevi@novell.com>
* Corrected GetTableMappingBySchemaAction for DataTableMappingCollectionTest
2004-06-09 Umadevi S <sumadevi@novell.com>
* Correct Add, InserAt testcases for DataTableMappingCollection
2004-06-09 Umadevi S <sumadevi@novell.com>
* Corrected Remove method testcase for DataColumnMappingCollection
2004-06-08 Umadevi S <sumadevi@novell.com>
* Corrected the contains testcase to test for invalidcastexception for DataColumnMappingCollection
2004-05-27 Umadevi S <sumadevi@novell.com>
* Added Classes DataColumnMappingCollectionTest and DataTableMappingCollectionTest

View File

@@ -1,137 +0,0 @@
2009-07-13 Atsushi Enomoto <atsushi@ximian.com>
* OdbcDataReaderTest.cs : migration to newer nunit style.
2009-01-18 Gert Driesen <drieseng@users.sourceforge.net>
* OdbcCommandTest.cs: Added tests for CommandTimeout,
UpdatedRowSource, Dispose and ResetCommandTimeout. Added
ExecuteNonQuery/ExecuteReader/ExecuteScalar tests for a connection
that is not initialized or closed.
2009-01-03 Gert Driesen <drieseng@users.sourceforge.net>
* OdbcCommandBuilderTest.cs: Enabled test for QuoteIdentifier.
2008-12-30 Gert Driesen <drieseng@users.sourceforge.net>
* OdbcCommandBuilderTest.cs: Added tests for properties.
2008-12-30 Gert Driesen <drieseng@users.sourceforge.net>
* OdbcCommandBuilder.cs: Added test for ConflictOption default value.
2008-12-29 Gert Driesen <drieseng@users.sourceforge.net>
* OdbcCommandBuilderTest.cs: Added tests for QuotePrefix and
QuoteSuffix. Added tests for QuoteIdentifier (some still marked
NotWorking).
* OdbcConnectionStringBuilderTest.cs: Moved from ProviderTests.
Added and improved tests.
2008-08-26 Veerapuram Varadhan <vvaradhan@novell.com>
* OdbcParameterTest.cs (OdbcTypeTest): Added test case for Binary
type check.
2008-07-03 Gert Driesen <drieseng@users.sourceforge.net>
* OdbcDataAdapterTest.cs: Added test for UpdateBatchSize.
2008-03-03 Ankit Jain <jankit@novell.com>
* OdbcMetaDataCollectionNamesTest.cs: New.
2007-10-21 Gert Driesen <drieseng@users.sourceforge.net>
* OdbcDataAdapterTest.cs: Added tests for ctors, DeleteCommand,
InsertCommand, SelectCommand, UpdateCommand and Dispose.
* OdbcDataReaderTest.cs: fixed line endings.
* OdbcCommandTest.cs: Added tests for ctors and CommantText.
* OdbcConnectionTest.cs: Removed original test that relied on MySQL.
Added ctor tests. Added tests for BeginTransaction, GetSchema and
ServerVersion with connection that is closed.
2007-06-08 Nagappan A <anagappan@novell.com>
* OdbcParameterTest.cs (OdbcTypeTest): The default data type of
OdbcParameter is changed to NVarChar.
2005-10-08 Sureshkumar T <tsureshkumar@novell.com>
* OdbcParameterTest.cs (OdbcTypeTest): Disconnected Tests for
OdbcParameter class.
2005-09-22 Sebastien Pouliot <sebastien@ximian.com>
* OdbcPermissionAttributeTest.cs: Removed *Choice security actions.
2005-09-01 Sureshkumar T <tsureshkumar@novell.com>
* OdbcDataAdapterTest.cs: moved to ProviderTests and integrated
with connected more framework.
* OdbcCommandTest.cs: -- do --.
* OdbcParameterCollectionTest.cs: Removed ParameterLengthTrimTest
to ProviderTests.
2005-02-15 Sureshkumar T <tsureshkumar@novell.com>
* OdbcParameterCollectionTest.cs: fix for namespace collision
MonoTests.System & corlib System.
* OdbcDataReaderTest.cs: --do--
2005-01-14 Atsushi Enomoto <atsushi@ximian.com>
* OdbcPermissionTest.cs, OdbcPermissionAttributeTest.cs:
Fixed some incompatible type of exception between 2.0 and 1.1.
2004-11-26 Sureshkumar T <tsureshkumar@novell.com>
* OdbcParameterCollectionTest.cs: New file for testing
OdbcParameterCollection's Add method.
2004-09-15 Sebastien Pouliot <sebastien@ximian.com>
* OdbcPermissionTest.cs: New. Unit tests for OdbcPermission.
2004-09-13 Sebastien Pouliot <sebastien@ximian.com>
* OdbcPermissionAttributeTest.cs: New. Unit tests for OdbcPermission
Attribute.
2004-08-31 Umadevi S <sumadevi@novell.com>
* OdbcDataReaderTest.cs - Added a test for Numeric Type
2004-08-27 Sureshkumar T <tsureshkumar@novell.com>
* OdbcDataReader.cs - Added a test for TinyInt
2004-08-26 Sureshkumar T <tsureshkumar@novell.com>
* OdbcDataReaderTest.cs - Added a test for DateTime - GetDateTimeTest
* OdbcCommandTest.cs - Syntax Error Fix
2004-07-29 Umadevi S <sumadevi@novell.com>
* OdbcCommandTest.cs - Added testcase for bug 62046. ExecuteNonQuery
2004-07-28 Umadevi S <sumadevi@novell.com>
* OdbcCommandTest.cs - Added testcase for bug 61968. String values passed with quotes
2004-07-01 Sureshkumar T <tsureshkumar@novell.com>
* Added test case for OdbcCommand.ExecuteScalar Method
* New files:
OdbcCommandTest.cs - test suite for OdbcCommand class.
2004-06-23 Sureshkumar T <TSureshkumar@novell.com>
* Added test to check whether the OdbcConnection.Close method closes
all the handles.
* New files:
OdbcConnectionTest.cs - test suite for OdbcConnection class.
2004-06-16 Sureshkumar T <TSureshkumar@novell.com>
* Added Odbc tests using MySql test database
* New files:
ChangeLog
OdbcDataReaderTest.cs - test suite for OdbcDataReader class.
OdbcDataAdapterTest.cs - test suite for OdbcDataAdapter class.

View File

@@ -1,44 +0,0 @@
2008-03-03 Ankit Jain <jankit@novell.com>
* OleDbMetaDataCollectionNamesTest.cs: New.
2007-10-21 Gert Driesen <drieseng@users.sourceforge.net>
* OleDbDataAdapterTest.cs: Added tests for ctors, DeleteCommand,
InsertCommand, SelectCommand, UpdateCommand and Dispose.
* OleDbCommandTest.cs: Added tests for ctors and CommandText.
* OleDbConnectionTest.cs: Added tests for ctors and ConnectionString.
Added tests for BeginTransaction, GetSchema and ServerVersion with
connection that is closed.
2007-02-22 Raja R Harinath <rharinath@novell.com>
* OleDbParameterCollectionTest.cs: Fix compile error in 1.1 profile.
2007-02-20 Frederik Carlier <frederik.carlier@carlier-online.be>
* OleDbParameterCollectionTest.cs: New. Unit tests for OleDbParameterCollection.
2005-09-22 Sebastien Pouliot <sebastien@ximian.com>
* OleDbPermissionAttributeTest.cs: Removed *Choice security actions.
2005-01-14 Atsushi Enomoto <atsushi@ximian.com>
* OleDbPermissionTest.cs, OleDbPermissionAttributeTest.cs:
Fixed some incompatible type of exception between 2.0 and 1.1.
2004-09-15 Sebastien Pouliot <sebastien@ximian.com>
* OleDbPermissionTest.cs: New. Unit tests for OleDbPermission.
2004-09-14 Sebastien Pouliot <sebastien@ximian.com>
* OleDbPermissionAttributeTest.cs: Added unit tests for Provider
property (unused and hidden in Fx 2.0).
2004-09-13 Sebastien Pouliot <sebastien@ximian.com>
* ChangeLog: New.
* OleDbPermissionAttributeTest.cs: New. Unit tests for OleDbPermission
Attribute.

View File

@@ -1,3 +0,0 @@
2008-07-28 Gert Driesen <drieseng@users.sourceforge.net>
* SqlNotificationRequestTest.cs: Added ctor and property tests.

View File

@@ -1,166 +0,0 @@
2009-07-29 Veerapuram Varadhan <vvaradhan@novell.com>
* SqlParameterTest.cs: Marked SqlChars/SqlBytes tests for SqlValue
as NotWorking as these types are considered as SqlString/SqlBinary
respectively.
2009-07-26 Gert Driesen <drieseng@users.sourceforge.net>
* SqlParameterTest.cs: Added/improved tests for SqlValue, and
SqlTypes. Improved tests for char and char [] type inferrence.
2009-01-03 Gert Driesen <drieseng@users.sourceforge.net>
* SqlParameterTest.cs: Added .ctor tests. Improved
ParameterType and ResetDbType tests. Added ParameterName,
SourceColumn and Value tests. Partially enable SqlValue
test.
2009-01-03 Gert Driesen <drieseng@users.sourceforge.net>
* SqlCommandBuilderTest.cs: Added tests for CatalogLocation,
CatalogSeparator, ConflictOption, QuoteIdentifier, QuotePrefix,
QuoteSuffix and SchemaSeparator.
* SqlParameterTest.cs: Moved existing tests from ProviderTests
to increase their visibility. Added tests for type inference.
2008-11-09 Gert Driesen <drieseng@users.sourceforge.net>
* SqlConnectionTest.cs: Added test for null check in ClearPool.
2008-08-14 Gert Driesen <drieseng@users.sourceforge.net>
* SqlConnectionTest.cs: Enabled connection string related tests that
previously failed. Added/improved connection string tests.
2008-07-28 Gert Driesen <drieseng@users.sourceforge.net>
* SqlConnectionTest.cs: Enabled tests for ChangePassword argument
checks.
2008-07-28 Gert Driesen <drieseng@users.sourceforge.net>
* SqlCommandTest.cs: Enabled CommandTimeout test. Enabled test for
Prepare with NULL connection. Enabled test for bug #412586.
2008-07-28 Gert Driesen <drieseng@users.sourceforge.net>
* SqlCommandTest.cs: Enabled and improved tests for Execute* with
closed connection.
2008-07-28 Gert Driesen <drieseng@users.sourceforge.net>
* SqlCommandTest.cs: Enabled test for bug #412584.
2008-07-28 Gert Driesen <drieseng@users.sourceforge.net>
* SqlCommandTest.cs: Added tests for bug #412584, #412586, Moved tests
that do not require connection from ProviderTests.
* SqlConnectionTest.cs: Moved tests that do not require connection
from ProviderTests.
2008-07-03 Gert Driesen <drieseng@users.sourceforge.net>
* SqlCommandTest.cs: Removed extra tabs. Update bug number.
2008-04-19 Robert Jordan <robertj@gmx.net>
* SqlCommandTest.cs: Add test case for bug #381100.
2008-03-03 Ankit Jain <jankit@novell.com>
* SqlClientMetaDataCollectionNamesTest.cs: New.
2007-10-21 Gert Driesen <drieseng@users.sourceforge.net>
* SqlCommandTest.cs: Added tests for ctors and CommantText.
* SqlConnectionTest.cs: Added tests for ctors, ConnectionString and
ServerVersion.
* SqlDataAdapterTest.cs: Added tests for ctors, DeleteCommand,
InsertCommand, SelectCommand, UpdateCommand, UpdateBatchSize and
Dispose.
2007-10-18 Gert Driesen <drieseng@users.sourceforge.net>
* SqlConnectionTest.cs: Added tests for BeginTransaction and GetSchema
when connection is closed.
2007-05-29 Gert Driesen <drieseng@users.sourceforge.net>
* SqlCommandTest.cs: Added test for bug #81710.
2005-09-22 Sebastien Pouliot <sebastien@ximian.com>
* SqlClientPermissionAttributeTest.cs: Removed *Choice security
actions.
2005-09-22 Sureshkumar T <tsureshkumar@novell.com>
* SqlConnectionTest.cs (OtherConnectionStringKeywords): marked
Persist security info keyword as not implmented.
2005-09-01 Sureshkumar T <tsureshkumar@novell.com>
* SqlDataReaderTest.cs: moved to ProviderTests and integrated with
connected mode tests
* SqlCommandTest.cs: -- do --
* SqlConnectionTest.cs: -- do --
* SqlTransactionTest.cs: -- do --
* SqlDataAdapterTest.cs: -- do --
2005-06-23 Sureshkumar T <tsureshkumar@novell.com>
* SqlConnectionStringBuilderTest.cs: Added few more tests.
2005-06-21 Sureshkumar T <tsureshkumar@novell.com>
* SqlConnectionStringBuilderTest.cs: Added some preliminary tests.
2005-05-20 Kornél Pál <http://www.kornelpal.hu/>
* SqlDataReaderTest.cs: Corrected and extended bigint test
2005-01-14 Atsushi Enomoto <atsushi@ximian.com>
* SqlClientPermissionTest.cs, SqlClientPermissionAttributeTest.cs:
Fixed some incompatible type of exception between 2.0 and 1.1.
2004-11-01 Gert Driesen <drieseng@users.sourceforge.net>
* SqlCommandTest.cs: Added testcase for bug #66630.
2004-10-30 Umadevi S <sumadevi@novell.com>
* SqlDataAdapterTest.cs - Added testcase for nullguid
2004-10-15 Umadevi S <sumadevi@novell.com>
* SqlDataReaderTest.cs: Added testcase for reading emptyntextfield
2004-10-14 Umadevi S <sumadevi@novell.com>
* SqlCommandTest.cs - added Test for clone method
2004-09-24 Umadevi S <sumadevi@novell.com>
* SqlTransactionTest.cs -new file .unit testing for SqlTransaction
2004-09-15 Sebastien Pouliot <sebastien@ximian.com>
* SqlClientPermissionTest.cs: New. Unit tests for SqlClientPermission.
2004-09-13 Sebastien Pouliot <sebastien@ximian.com>
* SqlClientPermissionAttributeTest.cs: New. Unit tests for SqlClient
PermissionAttribute.
2004-09-02 Umadevi S <sumadevi@novell.com>
* SqlCommandTest.cs - added file. Testing ExecuteNonQuery
2004-09-02 Umadevi S <sumadevi@novell.com>
* SqlDataReaderTest.cs - added file
2004-08-20 Umadevi S <sumadevi@novell.com>
* Added testcase in SqlDataAdapter.cs for Fillschema
2004-08-19 Gert Driesen <drieseng@users.souceforge.net>
* SqlConnectionTest.cs: Added testcases for bug #63165.
2004-08-19 Umadevi S <sumadevi@novell.com>
* Added file SqlDataAdapterTest.cs - to test update method on a
datatable

View File

@@ -1,213 +0,0 @@
2009-07-13 Atsushi Enomoto <atsushi@ximian.com>
* SqlGuidTest.cs, SqlDateTimeTest.cs, SqlBinaryTest.cs :
migration to newer nunit style.
2008-12-30 Gert Driesen <drieseng@users.sourceforge.net>
* SqlXmlTest.cs: Minor improvements to tests. Marked tests as
NotWorking/NotDotNet to fix test failures on MS.
2008-12-30 Gert Driesen <drieseng@users.sourceforge.net>
* SqlDecimalTest.cs
* SqlInt32Test.cs
* SqlCharsTest.cs
* SqlInt16Test.cs
* SqlInt64Test.cs
* SqlDoubleTest.cs: Change spaces to tabs, and remove extra tabs.
Restore original culture on teardown. Removed CWLs.
2008-12-29 Gert Driesen <drieseng@users.sourceforge.net>
* SqlStringTest.cs: Change spaces to tabs. Restore original culture
on teardown. Enable commented-out tests. Removed CWLs.
* SqlGuidTest.cs: Fixed line endings.
2008-12-23 Veerapuram Varadhan <vvaradhan@novell.com>
* SqlXmlTest.cs: Available only in 2.0 and above
2008-12-21 Veerapuram Varadhan <vvaradhan@novell.com>
* SqlXmlTest.cs: Tests for SqlXml type. New addition.
2008-06-12 Atsushi Enomoto <atsushi@ximian.com>
* SqlBooleanTest.cs : oops, was running wrong test harness. Fixed it.
2008-06-12 Atsushi Enomoto <atsushi@ximian.com>
* SqlBooleanTest.cs : added test for comparison with Null.
2007-10-01 Veerapuram Varadhan <vvaradhan@novell.com>
* SqlCharsTest.cs (Read_*, Write_*): Tests for Newly implemented
Read and Write APIs.
* SqlBytesTest.cs (Read_*, Write_*): Ditto.
2007-09-27 Veerapuram Varadhan <vvaradhan@novell.com>
* SqlStringTest.cs (ReadWriteXmlTest): Change the root node of the
test xml from <SqlString> to <string>
* SqlCharsTest.cs (ReadWriteXmlTest): Ditto.
2007-09-25 Veerapuram Varadhan <vvaradhan@novell.com>
* SqlInt16Test.cs (ReadWriteXmlTestInternal, ReadWriteXmlTest):
New tests.
* SqlInt32Test.cs (ReadWriteXmlTestInternal, ReadWriteXmlTest):
New tests.
* SqlInt64Test.cs (ReadWriteXmlTestInternal, ReadWriteXmlTest):
New tests.
* SqlChars.cs (ReadWriteXmlTestInternal, ReadWriteXmlTest):
New tests.
* SqlDecimal.cs (ReadWriteXmlTestInternal, ReadWriteXmlTest):
New tests.
* SqlDouble.cs (ReadWriteXmlTestInternal, ReadWriteXmlTest):
New tests.
* SqlString.cs (ReadWriteXmlTestInternal, ReadWriteXmlTest):
New tests.
2007-06-21 Nagappan A <anagappan@novell.com>
* SqlBooleanTest.cs (EqualityOperator): Fixed compiler warnings.
(InequalityOperator): Fixed compiler warnings.
2007-05-04 Raja R Harinath <rharinath@novell.com>
* SqlDateTimeTest.cs (TicksRoundTrip, EffingBilisecond): New tests.
2007-03-09 Nagappan A <anagappan@novell.com>
* SqlBooleanTest.cs (GetXsdTypeTest, GreaterThanTest)
(GreaterThanOrEqualTest, LessThanEqualTest, LessThanOrEqualTest):
Added new tests.
* SqlBinaryTest.cs (GetXsdTypeTest): Added new test.
* SqlByteTest.cs (GetXsdTypeTest): Added new test.
* SqlBytesTest.cs (GetXsdTypeTest): Added new test.
* SqlDateTimeTest.cs (GetXsdTypeTest): Added new test.
* SqlDecimalTest.cs (GetXsdTypeTest): Added new test.
* SqlGuidTest.cs (GetXsdTypeTest): Added new test.
* SqlInt16Test.cs (GetXsdTypeTest): Added new test.
* SqlInt32Test.cs (GetXsdTypeTest): Added new test.
* SqlInt64Test.cs (GetXsdTypeTest): Added new test.
* SqlMoneyTest.cs (GetXsdTypeTest): Added new test.
* SqlSingleTest.cs (GetXsdTypeTest): Added new test.
* SqlStringTest.cs (GetXsdTypeTest): Added new test.
2007-02-09 Nagappan A <anagappan@novell.com>
* SqlBytesTest.cs: Added new tests
* SqlCharsTest.cs: Added new tests
2006-07-19 Senganal T <tsenganal@novell.com>
* SqlDecimalTest.cs :
- ArithmeticOperators, ConvertPrecToScale,
ArithmeticMethods, LessThanOrEqualOperators :
Removed for NotWorking Category and added more tests
Thanks to Harish Kumar Singh for the patch
2006-02-03 Senganal T <tsenganal@novell.com>
* SqlStringTest.cs : Removed NotWorking attribute for testcases fixed
2005-08-25 Sureshkumar T <tsureshkumar@novell.com>
* SqlDecimalTest.cs: use Assert rather than derive from Assertion.
* SqlBooleanTest.cs: use Assert rather than derive from Assertion.
* SqlInt32Test.cs: use Assert rather than derive from Assertion.
* SqlInt16Test.cs: use Assert rather than derive from Assertion.
* SqlSingleTest.cs: use Assert rather than derive from Assertion.
* SqlByteTest.cs: use Assert rather than derive from Assertion.
* SqlInt64Test.cs: use Assert rather than derive from Assertion.
* SqlStringTest.cs: use Assert rather than derive from Assertion.
* SqlMoneyTest.cs: use Assert rather than derive from Assertion.
* SqlDoubleTest.cs: use Assert rather than derive from Assertion.
2005-01-19 Atsushi Enomoto <atsushi@ximian.com>
* SqlGuidTest.cs : missing run-test-ondotnet fix.
2004-11-25 Marek Safar <marek.safar@seznam.cz>
* SqlDecimalTest.cs: Hide constant behind variable to avoid
compiler check.
2004-07-20 Umadevi S <sumadevi@novell.com>
* SqlInt16Test.cs,SqlInt32Test.cs, SqlInt64Test.cs - added testcase for Modulus method (.NET 2.0)
2004-07-14 Umadevi S <sumadevi@novell.com>
* SqlStringTest.cs - Added testcase for Add method (.NET2.0)
2004-06-10 Umadevi S <sumadevi@novell.com>
* SqlGuidTest.cs - corrected the CompareTo method
2004-05-18 Atsushi Enomoto <atsushi@ximian.com>
* SqlDecimalTest.cs : Don't use unreliable SqlDecimal to test
Truncate(). Just use decimal.
2004-05-18 Atsushi Enomoto <atsushi@ximian.com>
* SqlDecimalTest.cs :
Don't catch all kind of exception. That hides the exact error info.
Don't use ToSqlString() in AdjustScale() test (to make which is
wrong).
MS.NET's ToSqlInt32() is buggy; no worth following the behavior.
Added test for parsing "999999..." (SqlDecimal.MaxValue).
2004-04-12 Atsushi Enomoto <atsushi@ximian.com>
* SqlDateTimeTest.cs : ToStringTest() is locale dependent.
2004-04-12 Atsushi Enomoto <atsushi@ximian.com>
* SqlStringTest.cs : Removed locale-dependent test.
* SqlDecimalTest.cs : Removed runtime-dependent test.
2003-06-02 Ville Palo <vi64pa@kolumbus.fi>
* All files except SqlGuidTest.cs: Now works fine on ms.net 1.1
2003-06-02 Ville Palo <vi64pa@kolumbus.fi>
* SqlStringTest.cs: exception tests to nunit2
2003-06-02 Ville Palo <vi64pa@kolumbus.fi>
* SqlStringTest.cs: added one exception test. And some exception tests
to nunit2
2003-06-01 Ville Palo <vi64pa@kolumbus.fi>
* SqlStringTest.cs: one exception test to nunit2
2003-05-13 Martin Willemoes Hansen <mwh@sysrq.dk>
* All tests inherits from Assertion and Assertion. prefixes removed
2002-11-08 Nick Drochak <ndrochak@gol.com>
* SqlSingleTest.cs : Remove debug statement that was breaking the build

View File

@@ -1,2 +0,0 @@
2005-05-26 Eyal Alaluf <eyala@mainsoft.com>
* DataProvider.cs: Utiltilty class for creating different types of DataTables.

File diff suppressed because it is too large Load Diff

View File

@@ -1158,6 +1158,9 @@ namespace MonoTests.System.Data
Assert.AreEqual (-1, evProp.NewIndex, "#10");
Assert.AreEqual (-1, evProp.OldIndex, "#11");
Assert.AreEqual (ListChangedType.Reset, evProp.lstType, "#12");
// Keep the view alive otherwise we might miss events
GC.KeepAlive (view);
}
[Test]

Some files were not shown because too many files have changed in this diff Show More