Index: System.Data.SQLite/SQLiteConnection.cs
==================================================================
--- System.Data.SQLite/SQLiteConnection.cs
+++ System.Data.SQLite/SQLiteConnection.cs
@@ -2596,23 +2596,21 @@
set { CheckDisposed(); _flags = value; }
}
///
/// Gets/sets the default database type for this connection. This value
- /// will only be used if the
- /// flag is set.
+ /// will only be used when not null.
///
public DbType? DefaultDbType
{
get { CheckDisposed(); return _defaultDbType; }
set { CheckDisposed(); _defaultDbType = value; }
}
///
- /// Gets/sets the default database type name for this connection. This value
- /// will only be used if the
- /// flag is set.
+ /// Gets/sets the default database type name for this connection. This
+ /// value will only be used when not null.
///
public string DefaultTypeName
{
get { CheckDisposed(); return _defaultTypeName; }
set { CheckDisposed(); _defaultTypeName = value; }