4 writes to Connection
System.Data (4)
fx\src\data\System\Data\Odbc\OdbcCommand.cs (4)
69Connection = connection; 74Connection = connection; 260Connection = (OdbcConnection)value; 439clone.Connection = this.Connection;
21 references to Connection
System.Data (21)
fx\src\data\System\Data\Odbc\OdbcCommand.cs (8)
257return Connection; 439clone.Connection = this.Connection; 569if(!Connection.ProviderInfo.NoQueryTimeout) { 578if(Connection.IsV3Driver) { 579if(!Connection.ProviderInfo.NoSqlSoptSSNoBrowseTable && !Connection.ProviderInfo.NoSqlSoptSSHiddenColumns) { 842Connection.FlagUnsupportedStmtAttr(stmtAttribute); 852OdbcConnection connection = Connection;
fx\src\data\System\Data\Odbc\OdbcCommandBuilder.cs (1)
125OdbcConnection connection = command.Connection;
fx\src\data\System\Data\Odbc\OdbcParameter.cs (12)
589!command.Connection.IsV3Driver // for non V3 driver we always do the conversion 590|| !command.Connection.TestTypeSupport(ODBC32.SQL_TYPE.NUMERIC) // otherwise we convert if the driver does not support numeric 591|| command.Connection.TestRestrictedSqlBindType(_bindtype._sql_type)// or the type is not supported 604if (!command.Connection.IsV3Driver){ 623if (!command.Connection.TestTypeSupport (_bindtype._sql_type)) { 640if (!command.Connection.IsV3Driver) { 767command.Connection.FlagRestrictedSqlBindType(_bindtype._sql_type); 773command.Connection.HandleError(hstmt, retcode); 793command.Connection.HandleError(hstmt, retcode); 804command.Connection.HandleError(hstmt, retcode); 815command.Connection.HandleError(hstmt, retcode); 824command.Connection.HandleError(hstmt, retcode);