#include #include #include "ErrorCode/ErrorCode.h" #include "DB_Commands.h" #include "StructPlayer.h" #include "SendMessage.h" bool DB_UpdateTitleCondition::proc( DBConnection & db ) { _CommandPtr cmd; if( db.CreateCommand( cmd ) == false ) throw XException( "DB_UpdateTitleCondition : CreateInstance(command) error" ); cmd->CommandType = adCmdStoredProc; cmd->CommandText = _bstr_t( "dbo.smp_update_title_condition" ); // Store the name of current stored-procedure for debugging szStoredProcedureName = "dbo.smp_update_title_condition"; cmd->Parameters->Append( cmd->CreateParameter( "IN_SID", adInteger, adParamInput, 4, m_nSID ) ); cmd->Parameters->Append( cmd->CreateParameter( "IN_COUNT", adBigInt, adParamInput, 8, m_nCount ) ); cmd->Execute(NULL,NULL,adCmdStoredProc); return true; } bool DB_UpdateTitleCondition::onProcess( DBConnection & db ) { proc( db ); m_pPlayer->onEndQuery(); return true; } void DB_UpdateTitleCondition::onFail( const _com_error & exception ) { m_pPlayer->onEndQuery(); IStreamSocketConnection * pConn = m_pPlayer->pConnection; if( pConn && pConn->IsConnected() ) { SendDisconnectDesc( pConn, TS_SC_DISCONNECT_DESC::DISCONNECT_TYPE_DB_ERROR ); pConn->Close(); } else { m_pPlayer->LogoutNowWithAccount( 9 ); } }