bumenxinxi.cpp
上传用户:xz12345
上传日期:2007-09-12
资源大小:7437k
文件大小:1k
- // bumenxinxi.cpp : implementation file
- //
- #include "stdafx.h"
- #include "工资.h"
- #include "bumenxinxi.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // bumenxinxi
- bumenxinxi::bumenxinxi()
- {
- }
- bumenxinxi::~bumenxinxi()
- {
- }
- /////////////////////////////////////////////////////////////////////////////
- // bumenxinxi message handlers
- void bumenxinxi::sql_insert()
- {
- ADOConn m_AdoConn;
- _bstr_t vSQL;
- vSQL ="INSERT INTO bumenjintie(bmid,bmname,bmjintie) VALUES('"+bmid+"', '"+bmname+"','"+bmjintie+ "')";
- m_AdoConn.OnInitADOConn();
- //执行INSERT语句
- m_AdoConn.ExecuteSQL(vSQL);
- //断开与数据库的连接
- m_AdoConn.ExitConnect();
- }
- void bumenxinxi::sql_delete()
- {
- ADOConn m_AdoConn;
- _bstr_t vSQL;
- vSQL = "DELETE FROM bumenjintie WHERE bmid=" + bmid;
- m_AdoConn.OnInitADOConn();
- //执行INSERT语句
- m_AdoConn.ExecuteSQL(vSQL);
- //断开与数据库的连接
- m_AdoConn.ExitConnect();
- }