C++-数据库【1】-C++连接MSSQL数据库

测试环境——

系统:Win7 64bit

编译器:VC++ 2015

数据库:MSSQL 2008 R2

#include <Windows.h>
#include <stdio.h>

#import "C:\Program Files\Common Files\System\ADO\msado15.dll" \
no_namespace rename("EOF", "EndOfFile")

int main(int argc, char* argv[])
{

    HRESULT hr = S_OK;
    try
    {
        CoInitialize(NULL);
        // Define string variables.
        _bstr_t strCnn("Provider=SQLOLEDB.1;Persist Security Info=True;User ID=??;Password=????????;Initial Catalog=????????;Data Source=???.???.???.???;");

        _RecordsetPtr pRstAuthors = NULL;

        // Call Create instance to instantiate the Record set
        hr = pRstAuthors.CreateInstance(__uuidof(Recordset));

        if (FAILED(hr))
        {
            printf("Failed creating record set instance\n");
            return 0;
        }

        //Open the Record set for getting records from Author table
        pRstAuthors->Open("SELECT [ClubId], [ClubName] FROM Club.Clubs", strCnn, adOpenStatic, adLockReadOnly, adCmdText);

        //Declare a variable of type _bstr_t
        int valField1;
        _bstr_t valField2;

        pRstAuthors->MoveFirst();

        //Loop through the Record set
        if (!pRstAuthors->EndOfFile)
        {
            while (!pRstAuthors->EndOfFile)
            {
                valField1 = pRstAuthors->Fields->GetItem("ClubId")->Value.intVal;
                valField2 = pRstAuthors->Fields->GetItem("ClubName")->Value;
                printf("%d \t %s\n", valField1, (LPCSTR)valField2);
                pRstAuthors->MoveNext();
            }
        }

    }
    catch (_com_error & ce)
    {
        printf("Error:" + ce.Description() + "\n");
    }

    CoUninitialize();
    return 0;
}

 

转载于:https://www.cnblogs.com/godcity/p/5941743.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
数据库应用系统开发是数据库课程中非常重要的一部分,涉及到数据库的设计、开发和实现。在这个专题训练实验中,我们可以使用C++来实现一个简单的数据库应用系统。 下面是一个简单的C++实现数据库的例子,包括数据库的创建、表的创建、数据的插入、查询等操作: ```c++ #include <iostream> #include <string> #include <vector> using namespace std; // 定义字段类型 enum FieldType { INT, CHAR }; // 定义字段结构体 struct Field { string name; FieldType type; int size; }; // 定义表结构体 struct Table { string name; vector<Field> fields; vector<vector<string>> data; }; // 定义数据库结构体 struct Database { string name; vector<Table> tables; }; // 创建表 void create_table(Database &db, string table_name, vector<Field> fields) { Table table; table.name = table_name; table.fields = fields; db.tables.push_back(table); } // 插入数据 void insert_data(Database &db, string table_name, vector<string> row) { for (auto &table : db.tables) { if (table.name == table_name) { if (row.size() != table.fields.size()) { cout << "Error: number of fields doesn't match" << endl; return; } table.data.push_back(row); return; } } cout << "Error: table not found" << endl; } // 查询数据 void select_data(Database &db, string table_name, vector<string> fields) { for (auto &table : db.tables) { if (table.name == table_name) { if (fields.empty()) { // 查询所有字段 for (auto &row : table.data) { for (auto &field : row) { cout << field << " "; } cout << endl; } } else { // 查询指定字段 vector<int> indices; for (int i = 0; i < table.fields.size(); i++) { for (auto &field : fields) { if (table.fields[i].name == field) { indices.push_back(i); break; } } } for (auto &row : table.data) { for (auto &index : indices) { cout << row[index] << " "; } cout << endl; } } return; } } cout << "Error: table not found" << endl; } int main() { Database db; db.name = "test_db"; // 创建表 vector<Field> fields1 = {{"id", INT, 0}, {"name", CHAR, 20}, {"age", INT, 0}}; create_table(db, "students", fields1); // 插入数据 insert_data(db, "students", {"1", "Alice", "18"}); insert_data(db, "students", {"2", "Bob", "19"}); insert_data(db, "students", {"3", "Charlie", "20"}); // 查询数据 select_data(db, "students", {}); select_data(db, "students", {"name", "age"}); return 0; } ``` 以上仅为一个简单的例子,实际上数据库的设计和实现非常复杂,需要深入学习和掌握。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值