-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMydb3.h
48 lines (40 loc) · 1.22 KB
/
Mydb3.h
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
#if !defined(AFX_MYDB3_H__C784BD00_68A9_4520_8CB9_5F741803328F__INCLUDED_)
#define AFX_MYDB3_H__C784BD00_68A9_4520_8CB9_5F741803328F__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// Mydb3.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// Mydb3 recordset
#include "afxdb.h"
class Mydb3 : public CRecordset
{
public:
Mydb3(CDatabase* pDatabase = NULL);
DECLARE_DYNAMIC(Mydb3)
// Field/Param Data
//{{AFX_FIELD(Mydb3, CRecordset)
int m_id;
CString m_column1;
CString m_column2;
CString p2;
CString p3;
//}}AFX_FIELD
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(Mydb3)
public:
virtual CString GetDefaultConnect(); // Default connection string
virtual CString GetDefaultSQL(); // Default SQL for Recordset
virtual void DoFieldExchange(CFieldExchange* pFX); // RFX support
//}}AFX_VIRTUAL
// Implementation
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_MYDB3_H__C784BD00_68A9_4520_8CB9_5F741803328F__INCLUDED_)