//////////////cpp部分
BOOL Subjectdlg::OnInitDialog()
{
CDialog::OnInitDialog()
// TODO: Add extra initialization here
CString sqlStr
sqlStr="SELECT * FROM tb_subject"
mysubjectset = new Subjectinfo(&((CStudentsysApp*)AfxGetApp())->m_DB)
if(!mysubjectset->Open(AFX_DB_USE_DEFAULT_TYPE,sqlStr)) //打开数据表
{
AfxMessageBox("tb_subject表打开失败!")
}
return TRUE // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
bool Subjectdlg::DisplayRecord()
{
if(mysubjectset->IsEOF()&&mysubjectset->IsBOF()) //判断是否移动到了开头和结尾
{
m_subjectname = ""
m_subjectid = ""
}
else
{
if(mysubjectset->IsBOF()) //移动到了开头,就向后移动
{
mysubjectset->MoveNext()
}
else //否则前移
{
if(mysubjectset->IsEOF())
{
mysubjectset->MovePrev()
}
}
}
m_subjectname = mysubjectset->m_subject//对应变量赋值
m_subjectid = mysubjectset->m_code
UpdateData(FALSE)
return TRUE
}
////////////那几个指针
Subjectinfo* mysubjectset
Subjectinfo* mysubjectset_find
Subjectinfo* myclass_subject_findref
///////////
subjectinfo是连接数据源的那个类
1.首先,你的机器上要保证有sql server,并能正确进入并创建数据库,表等。2.建议把那个SA的密码自己重新设定一下,设定方法:打开sql server 2005 SQL Server Management Studio,进去后在那个安全性--登录名--右键点击SA属性,设置密码,状态里面改成,授予 启用。3.将ADO代码库引入到工程中,需要在stdafx.h或TEST.h(这个MFC项目的头文件)中添加如下代码,注意不同的 *** 作系统在安装时这个路径可能不一样,所以必须先在系统中找到msado15.dll文件的路径:加入代码:#import "C:Program FilesCommon FilesSystemadomsado15.dll" no_namespace rename("EOF","adoEOF")?(通过以上代码就可以将ADO代码库引入到当前工程中)?4.在TEST工程中的TEST.h中加入如下代码:(蓝色为所加入的) class CSQL_TESTApp : public CWinApp{public:?_ConnectionPtr m_pAppConn?//连接对象指针CString m_AppConnString?//连接字符串的声明
bool m_bConnected//连接标志 public:
CSQL_TESTApp()// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CSQL_TESTApp)public:virtual BOOL InitInstance()
。。。。}?5.在TEST工程的TEST.CPP文件中加入如下代码:(蓝色为所加入的)BOOL CSQL_TESTApp::InitInstance(){AfxEnableControlContainer()?HRESULT hRestry{hRes=m_pAppConn.CreateInstance(_T("ADODB.Connection"))
m_pAppConn->Open(_bstr_t((LPCTSTR) m_AppConnString) , _T("") , _T("") , adModeUnknown)
if(SUCCEEDED(hRes)){m_bConnected = TRUE//连接成功设置标志位}}catch(_com_error e){CString errormessage
errormessage.FormatMessage(_T("连接数据库失败 %s"),e.ErrorMessage())
AfxMessageBox(errormessage)//显示错误信息
return FALSE?}
1. 由于使用的是ADO架构 首先需要在StdAfx.h文件中导入msado15.dll 和 oledb32.dll连个动态连接库文件倒入方式为:#import "msado15.dll" no_namespace rename ("EOF", "adoEOF")
#import "oledb32.dll" no_namespace
两个文件的实际所在位置由于系统安装的位置不同而不同。
no_namespace 使用无名命名空间 程序段比较短关联较少的话可以这样使用 否则请使用命名空间以免发生冲突,
rename ("EOF", "adoEOF") 重命名 EOF为 adoEOF 以免常量冲突。
2. 关于SQL Server以及的一些要求 首先安装SQL Server的机器必须是 NT架构以上的系统 如果使用的是Windows XP SP2 的话需要对SQL Server打上SP4补丁方可网络访问。
3. 最好建立一个单独的数据库 *** 作类 使程序中需要对数据库进行 *** 作的地方继承这个类。
4. 类成员如下
_ConnectionPtr m_pConnection// 数据库
_RecordsetPtrm_pRecordset// 命令
_CommandPtrm_pCommand// 记录
5. 方法如下
bool connect2database()
bool check_user(_bstr_t name, _bstr_t pwd)
bool CBugListCommon::connect2database()
{
_bstr_t ConnectionString = "Provider=sqloledbData Source='SQLSERVER'Integrated Security='SSPI'Initial Catalog='Test'User Id='sa'Password='sa'"
//Data Source 数据库实例名
//Initial Catalog表名
//User Id 用户名
//Password 密码
if(FAILED(CoInitialize(NULL)))
return FALSE
m_pConnection.CreateInstance(__uuidof(Connection))
try
{
m_pConnection->Open(ConnectionString , "", "", adConnectUnspecified)
return TRUE
}
catch(_com_error e)
{
AfxMessageBox("数据库连接失败")
return FALSE
}
return FALSE
}
bool CBugListCommon::check_user(_bstr_t name, _bstr_t pwd)
{
_bstr_t cmdtxt = "SELECT User_Name, User_PassWord FROM User_Table WHERE (User_Name = N'"
cmdtxt = cmdtxt + name + "')"
// cmdtxt == SELECT User_Name, User_PassWord FROM User_Table WHERE (User_Name = N'name')
m_pCommand.CreateInstance("ADODB.Command")
m_pCommand->ActiveConnection = m_pConnection
m_pCommand->CommandText = cmdtxt
m_pRecordset = m_pCommand->Execute(NULL, NULL, adCmdText)
if(!m_pRecordset->adoEOF)
{
_bstr_t tn
tn = m_pRecordset->GetCollect("User_PassWord")
if(tn == pwd)
return TRUE
else
return FALSE
}
return FALSE
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)