You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
4.2 KiB
94 lines
4.2 KiB
// Microsoft Foundation Classes C++ library.
|
|
// Copyright (C) 1993 Microsoft Corporation,
|
|
// All rights reserved.
|
|
|
|
// This source code is only intended as a supplement to the
|
|
// Microsoft Foundation Classes Reference and Microsoft
|
|
// QuickHelp and/or WinHelp documentation provided with the library.
|
|
// See these sources for detailed information regarding the
|
|
// Microsoft Foundation Classes product.
|
|
|
|
// Inlines for AFXDB.H
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// General database inlines
|
|
|
|
#ifdef _AFXDBCORE_INLINE
|
|
|
|
// CDatabase inlines
|
|
_AFXDBCORE_INLINE BOOL CDatabase::IsOpen() const
|
|
{ ASSERT_VALID(this); return m_hdbc != SQL_NULL_HDBC; }
|
|
_AFXDBCORE_INLINE BOOL CDatabase::CanUpdate() const
|
|
{ ASSERT(IsOpen()); return m_bUpdatable; }
|
|
_AFXDBCORE_INLINE BOOL CDatabase::CanTransact() const
|
|
{ ASSERT(IsOpen()); return m_bTransactions; }
|
|
_AFXDBCORE_INLINE void CDatabase::SetLoginTimeout(DWORD dwSeconds)
|
|
{ ASSERT_VALID(this); m_dwLoginTimeout = dwSeconds; }
|
|
_AFXDBCORE_INLINE void CDatabase::SetQueryTimeout(DWORD dwSeconds)
|
|
{ ASSERT_VALID(this); m_dwQueryTimeout = dwSeconds; }
|
|
_AFXDBCORE_INLINE void CDatabase::SetSynchronousMode(BOOL bSynchronous)
|
|
{ ASSERT_VALID(this); m_bAsync = !bSynchronous; }
|
|
_AFXDBCORE_INLINE const CString& CDatabase::GetConnect() const
|
|
{ ASSERT_VALID(this); return m_strConnect; }
|
|
_AFXDBCORE_INLINE void CDatabase::ThrowDBException(RETCODE nRetCode)
|
|
{ ASSERT_VALID(this); AfxThrowDBException(nRetCode, this, m_hstmt); }
|
|
|
|
// CRecordset inlines
|
|
_AFXDBCORE_INLINE BOOL CRecordset::IsOpen() const
|
|
{ ASSERT_VALID(this); return m_hstmt != SQL_NULL_HSTMT; }
|
|
_AFXDBCORE_INLINE const CString& CRecordset::GetSQL() const
|
|
{ ASSERT(IsOpen()); return m_strSQL; }
|
|
_AFXDBCORE_INLINE const CString& CRecordset::GetTableName() const
|
|
{ ASSERT(IsOpen()); return m_strTableName; }
|
|
_AFXDBCORE_INLINE BOOL CRecordset::IsBOF() const
|
|
{ ASSERT(IsOpen()); return m_bBOF; }
|
|
_AFXDBCORE_INLINE BOOL CRecordset::IsEOF() const
|
|
{ ASSERT(IsOpen()); return m_bEOF; }
|
|
_AFXDBCORE_INLINE BOOL CRecordset::IsDeleted() const
|
|
{ ASSERT(IsOpen()); return m_bDeleted; }
|
|
_AFXDBCORE_INLINE BOOL CRecordset::CanUpdate() const
|
|
{ ASSERT(IsOpen()); return m_bUpdatable; }
|
|
_AFXDBCORE_INLINE BOOL CRecordset::CanScroll() const
|
|
{ ASSERT(IsOpen()); return m_bScrollable; }
|
|
_AFXDBCORE_INLINE BOOL CRecordset::CanAppend() const
|
|
{ ASSERT(IsOpen()); return m_bAppendable; }
|
|
_AFXDBCORE_INLINE BOOL CRecordset::CanRestart() const
|
|
{ ASSERT(IsOpen()); return TRUE; }
|
|
_AFXDBCORE_INLINE BOOL CRecordset::CanTransact() const
|
|
{ ASSERT(IsOpen());return m_pDatabase->m_bTransactions; }
|
|
_AFXDBCORE_INLINE long CRecordset::GetRecordCount() const
|
|
{ ASSERT(IsOpen()); return m_lRecordCount; }
|
|
_AFXDBCORE_INLINE void CRecordset::GetStatus(CRecordsetStatus& rStatus) const
|
|
{ ASSERT(IsOpen());
|
|
rStatus.m_lCurrentRecord = m_lCurrentRecord;
|
|
rStatus.m_bRecordCountFinal = m_bEOFSeen; }
|
|
_AFXDBCORE_INLINE void CRecordset::ThrowDBException(RETCODE nRetCode, HSTMT hstmt)
|
|
{ ASSERT_VALID(this); AfxThrowDBException(nRetCode, m_pDatabase,
|
|
(hstmt == SQL_NULL_HSTMT)? m_hstmt : hstmt); }
|
|
_AFXDBCORE_INLINE void CRecordset::MoveNext()
|
|
{ ASSERT(IsOpen()); Move(AFX_MOVE_NEXT); }
|
|
_AFXDBCORE_INLINE void CRecordset::MovePrev()
|
|
{ ASSERT(IsOpen()); Move(AFX_MOVE_PREVIOUS); }
|
|
_AFXDBCORE_INLINE void CRecordset::MoveFirst()
|
|
{ ASSERT(IsOpen()); Move(AFX_MOVE_FIRST); }
|
|
_AFXDBCORE_INLINE void CRecordset::MoveLast()
|
|
{ ASSERT(IsOpen()); Move(AFX_MOVE_LAST); }
|
|
_AFXDBCORE_INLINE BOOL CRecordset::IsFieldFlagNull(UINT nColumn, UINT nFieldType)
|
|
{ ASSERT_VALID(this);
|
|
return (GetFieldFlags(nColumn, nFieldType) & AFX_SQL_FIELD_FLAG_NULL) != 0; }
|
|
_AFXDBCORE_INLINE BOOL CRecordset::IsFieldFlagDirty(UINT nColumn, UINT nFieldType)
|
|
{ ASSERT_VALID(this);
|
|
return (GetFieldFlags(nColumn, nFieldType) & AFX_SQL_FIELD_FLAG_DIRTY) != 0; }
|
|
|
|
#endif //_AFXDBCORE_INLINE
|
|
|
|
|
|
#ifdef _AFXDBRFX_INLINE
|
|
|
|
_AFXDBRFX_INLINE void CFieldExchange::SetFieldType(UINT nFieldType)
|
|
{ ASSERT(nFieldType == outputColumn || nFieldType == param);
|
|
m_nFieldType = nFieldType; }
|
|
|
|
#endif //_AFXDBRFX_INLINE
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|