当前位置:   article > 正文

C++数据库操作

c++数据库

新手C++对于数据库操作

首先需要新建一个access文件。
在这里插入图片描述

//主函数
#include<iostream>
#include<map>
#include <string>
#include "inquire.h"
using namespace std;
void main()
{
	CoInitialize(NULL);	//初始化环境
	inquire Inquire("xxx.mdb");//填自己存放的access文件地址,记得不能写错。
	if ((Inquire.getmyerror().length() )!= 0)
	{
		cout << "数据库连接失败";
		cout << Inquire.getmyerror();
		getchar();

	}

	//下面是三种操作对数据库进行添加删除和转化为数组形式查询
	//① 添加操作
/*	map<int, string> add;	
		cin >> add[0];
		cin >> add[1];
		cin >> add[2];
		Inquire.insertion("表1",add);
		if (Inquire.getmyerror().length() == 0)
		{
			cout << "插入成功\n";
			getchar();
		}
		else
		{
			cout <<Inquire.getmyerror();
			getchar();
		}
*/

	//② 删除操作
/*		
		map<int, string> delet;
		cin >> delet[0];//表名
		cin >> delet[1];//删除条件
		if(!Inquire.Delete(delet[0],delet[1]))
		{
		cout<<"删除失败";
		cout<<Inquire.getmyerror();
		getchar();
		}	

	*/	
	
	//③查询表格	
		
/*	map<int ,map<int,string>>check;
	Inquire.check_table(check);		
	 if (Inquire.getmyerror().length() == 0)
	 {

		 for (int i = 0; i < check.size(); i++)
		 {
			 map<int, string> aaa = check[i];
			 for (size_t u = 0; u < aaa.size(); u++)
			 {
				 string str = aaa[u];
				 cout << str.c_str()<<"\t";

			 }
			 cout << "\n";
		 }
		 getchar();

	 }
	 else
	 {
		 cout << Inquire.getmyerror();
		 getchar();
	 }
	 */
	 	CoUninitialize();
	
	return  ;
}

//类的头文件
#pragma once
#include<map>
#include<iostream>
#include<string>
#import "c:\program files\common files\system\ado\msado15.dll"  no_namespace  rename ("EOF", "adoEOF")
using namespace std;
class inquire
{
public:
	inquire(string phat);
	~inquire();
	string getmyerror();
	void insertion(string, map<int, string>);
	bool Delete(string,string);
	void check_table(map<int, map<int, string>> &mp);
private:
	_ConnectionPtr m_pConnection;
	_RecordsetPtr m_pRecordset;
	HRESULT hr;
	string m_error;

};


//函数的类

#include "inquire.h"

inquire::inquire(string phat)

{
	m_error = "";
	try {
		hr = m_pConnection.CreateInstance("ADODB.Connection");//ADO方式连接

		if (SUCCEEDED(hr))
		{
			m_pConnection->ConnectionTimeout = 5;
			string 路径;
			路径 = " Provider = Microsoft.Jet.OLEDB.4.0; Data Source =" + phat;
			hr = m_pConnection->Open(路径.c_str(), "", "", adModeUnknown);
		}
	}
	catch (_com_error e)///捕捉异常
	{
		string m_error= e.ErrorMessage();		
	}

}

inquire::~inquire()
{
	if (m_pConnection->State)
	{
		m_pConnection->Close();
		m_pConnection = NULL;
	}
}


string inquire::getmyerror()
{
	return m_error;
}


void inquire::insertion(string table_name,map<int,string> train_value)
{
	m_error = "";
	try {
		_variant_t RecordsAffected;
		string sql;
		sql = "INSERT INTO " + table_name + "( name,old,height)VALUES(";
		for (size_t i = 0; i < train_value.size(); i++)
		{
			sql += train_value[i] + ",";
		}
		sql = sql.substr(0, sql.length() - 1) + ")";

		m_pConnection->Execute(sql.c_str(), &RecordsAffected, adCmdText);
		
	}

	catch (_com_error e)///捕捉异常
	{
		 m_error = e.ErrorMessage();
	}
}

bool inquire::Delete(string table_name, string condition)//删除
{
	m_error = "";
	try
	{
	
		_variant_t RecordsAffected;
		string shanchu;
		shanchu = "DELETE FROM " + table_name + " WHERE " + condition;
		m_pConnection->Execute(shanchu.c_str(), &RecordsAffected, adCmdText);
		return true;
	}
	catch (_com_error e)///捕捉异常
	{
		m_error = e.ErrorMessage();
		return false;
	}
}

void inquire::check_table(map<int, map<int, string>> &mp)
{
	try
	{
		m_error = "";
		m_pRecordset.CreateInstance(_uuidof(Recordset));
		char sql[300];
		memset(sql, 0, 300);
		strcat(sql, "SELECT * FROM 表1");
		m_pRecordset->Open(sql, (IDispatch*)m_pConnection, adOpenDynamic, adLockOptimistic, adCmdText);

	}
	catch (_com_error e)///捕捉异常
	{
		m_error = e.ErrorMessage();
	}
	try
	{

		if (m_pRecordset->BOF)
		{
			printf("表内数据为空");
			if (m_pConnection->State)
			{
				m_pRecordset->Close();
				m_pRecordset = NULL;
				m_pConnection->Close();
				m_pConnection = NULL;
			}
			CoUninitialize();
			return;

		}
		cout << "this is my database \n";
		m_pRecordset->MoveFirst();
		int i,u=0 ;
		while (!m_pRecordset->adoEOF)
		{
			int row = m_pRecordset->GetFields()->Count;
			_variant_t var[100];
			for (i = 0; i < row; i++)
			{
				var[i] = m_pRecordset->GetCollect(_variant_t((long)i));
				if (var[i].vt != VT_NULL)
				{
					mp[u][i] = _com_util::ConvertBSTRToString((_bstr_t)var[i]);
				}
				else
				{
					mp[u][i] = "";
				}
			}
				m_pRecordset->MoveNext();
				u++;
		}

	}

			catch (_com_error e)///捕捉异常
			{
				m_error = e.ErrorMessage();
			}

		}
	
  • 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
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257

这是简单数据库操作,望采纳!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/663277
推荐阅读
相关标签
  

闽ICP备14008679号