-
Notifications
You must be signed in to change notification settings - Fork 0
/
AnyThing.cpp
58 lines (46 loc) · 1.1 KB
/
AnyThing.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// AnyThing.cpp : implementation file
//
#include "stdafx.h"
#include "EnvEditor.h"
#include "AnyThing.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CAnyThing
IMPLEMENT_DYNAMIC(CAnyThing, CRecordset)
CAnyThing::CAnyThing(CDatabase* pdb)
: CRecordset(pdb)
{
//{{AFX_FIELD_INIT(CAnyThing)
//}}AFX_FIELD_INIT
m_nDefaultType = snapshot;
}
CString CAnyThing::GetDefaultConnect()
{
return _T("ODBC;DSN=C:\My Documents\Statistics.mdb");
}
CString CAnyThing::GetDefaultSQL()
{
return _T("");
}
void CAnyThing::DoFieldExchange(CFieldExchange* pFX)
{
//{{AFX_FIELD_MAP(CAnyThing)
pFX->SetFieldType(CFieldExchange::outputColumn);
//}}AFX_FIELD_MAP
}
/////////////////////////////////////////////////////////////////////////////
// CAnyThing diagnostics
#ifdef _DEBUG
void CAnyThing::AssertValid() const
{
CRecordset::AssertValid();
}
void CAnyThing::Dump(CDumpContext& dc) const
{
CRecordset::Dump(dc);
}
#endif //_DEBUG