-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMydb.h
53 lines (45 loc) · 1.32 KB
/
Mydb.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
49
50
51
52
53
#if !defined(AFX_MYDB_H__FE48C7EE_B60F_43D2_80D0_204B80BAD711__INCLUDED_)
#define AFX_MYDB_H__FE48C7EE_B60F_43D2_80D0_204B80BAD711__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// Mydb.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// Mydb recordset
#include "afxdb.h"
class Mydb : public CRecordset
{
public:
Mydb(CDatabase* pDatabase = NULL);
DECLARE_DYNAMIC(Mydb)
// Field/Param Data
//{{AFX_FIELD(Mydb, CRecordset)
int m_id;
CString m_column1;
CString m_column2;
CString m_column3;
CString m_column4;
CString m_column5;
CString m_column6;
CString m_column7;
CString p1;
CRecordset::m_nParams;
//}}AFX_FIELD
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(Mydb)
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_MYDB_H__FE48C7EE_B60F_43D2_80D0_204B80BAD711__INCLUDED_)