首頁 > 軟體

C++實現單詞管理系統

2022-03-12 19:00:39

本文範例為大家分享了C++實現單詞管理系統的具體程式碼,供大家參考,具體內容如下

實現功能

  • 退出
  • 新增單詞
  • 刪除單詞
  • 修改單詞
  • 查詢單詞
  • 排序單詞
  • 顯示單詞

簡述

單詞管理系統使用了C++語言連線MySQL資料庫實現常規CRUD操作,介面為控制檯表單+文字顯示的方式。

測試環境

使用Win10 + Code::Blocks IDE編寫。

執行截圖

程式碼

#include <stdio.h>
#include <winsock2.h> //進行網路連線
#include <mysql.h>    //MySQL C API存取mysql資料庫
#pragma comment (lib, "libmysql.lib")
#define N 50
 
typedef struct Dictionary
{
    char id[50];
    char eng[100];
    char chi[100];
} Dictionary;
 
//變數設定
MYSQL *conn; //資料庫連線控制程式碼
MYSQL_RES *res; //執行資料庫語言結果
MYSQL_ROW row; //存放一個資料記錄
char* server = "localhost";//本地連線
char* user = "root";//
char* password = "yan19991001";//mysql密碼
char* database = "dictionary";//資料庫名
int t,rc;
char query[N];        //需要查詢的語句
 
void readEng();
void addEng();
void delEng();
void modEng();
void seaEng();
void sort();
 
 
void sort(){
    char id[N],eng[N],chi[N];
    sprintf(query,"select * from test order by eng");
    printf("查詢語句:%sn",query);
    rc = mysql_query(conn,query);
    if (0 != rc) {
        printf("mysql_real_query(): %sn", mysql_error(conn));
        return -1;
    }else{
        printf("查詢結果:n");
        res = mysql_use_result(conn);    //獲取結果
        if (res)
        {
            while ((row = mysql_fetch_row(res)) != NULL)
            {
                //printf("num=%dn",mysql_num_fields(res));//列數
                for (t = 0; t < mysql_num_fields(res); t++)
                    printf("%8s ", row[t]);
                printf("n");
            }
        }
        mysql_free_result(res);
    }
}
 
void addEng()
{
    char id[N],eng[N],chi[N];
    printf("請輸入要增加的詞典資訊:n");
    printf("編號:n");
    scanf("%s",id);
    printf("單詞:n");
    scanf("%s",eng);
    printf("中文釋義:n");
    scanf("%s",chi);
    sprintf(query,"insert into test values('%s','%s','%s')",id,eng,chi);
    printf("%s",query);
    rc = mysql_query(conn,query);
    if (0 != rc) {
        printf("mysql_real_query(): %sn", mysql_error(conn));
        return -1;
    }else{
        printf("新增成功!n");
    }
    //mysql_close(conn); //斷開資料庫
}
 
void delEng(){
    char id[N];
    printf("請輸入你要刪除的單詞編號:");
    scanf("%s",id);
    sprintf(query,"delete from test where id = '%s'",id);
    printf("查詢語句:%sn",query);
    rc = mysql_query(conn,query);
    if (0 != rc) {
        printf("mysql_real_query(): %sn", mysql_error(conn));
        return -1;
    }else{
        printf("刪除成功!n");
    }
}
 
void modEng(){
    char id[N],eng[N],chi[N];
    printf("請輸入你要修改的單詞編號:");
    scanf("%s",id);
    printf("單詞:n");
    scanf("%s",eng);
    printf("中文釋義:n");
    scanf("%s",chi);
    sprintf(query,"update test set eng = '%s',chi = '%s' where id = '%s'",eng,chi,id);
    printf("查詢語句:%sn",query);
    rc = mysql_query(conn,query);
    if (0 != rc) {
        printf("mysql_real_query(): %sn", mysql_error(conn));
        return -1;
    }else{
        printf("修改成功!n");
    }
}
 
void seaEng(){
    char id[N],eng[N],chi[N];
    printf("請輸入你要查詢的單詞編號:");
    scanf("%s",id);
    sprintf(query,"select * from test where id = '%s'",id);
    printf("查詢語句:%sn",query);
    rc = mysql_query(conn,query);
    if (0 != rc) {
        printf("mysql_real_query(): %sn", mysql_error(conn));
        return -1;
    }else{
        printf("查詢結果:n");
        res = mysql_use_result(conn);    //獲取結果
        if (res)
        {
            while ((row = mysql_fetch_row(res)) != NULL)
            {
                //printf("num=%dn",mysql_num_fields(res));//列數
                for (t = 0; t < mysql_num_fields(res); t++)
                    printf("%8s ", row[t]);
                printf("n");
            }
        }
        mysql_free_result(res);
    }
}
 
 
void init()
{
    conn = mysql_init(NULL); //控制程式碼初始化
 
    if (!mysql_real_connect(conn, server, user, password, database, 3306, NULL, 0))  //判斷是否連線成功
    {
        printf("Error connecting to database:%sn", mysql_error(conn));
    }
    else
    {
        printf("Connected...n");
    }
 
    //字元編碼,解決亂碼
    if (!mysql_set_character_set(conn, "gbk"))
    {
        printf("New client character set: %sn",
               mysql_character_set_name(conn));
    }
}
 
void readEng()
{
    char * query = "select * from test";        //需要查詢的語句
    if (mysql_query(conn, query))
    {
        printf("錯誤資訊:%sn", mysql_error(conn));
    }
    else
    {
        printf("查詢結果:n");
        res = mysql_use_result(conn);    //獲取結果
        if (res)
        {
            while ((row = mysql_fetch_row(res)) != NULL)
            {
                //printf("num=%dn",mysql_num_fields(res));//列數
                for (t = 0; t < mysql_num_fields(res); t++)
                    printf("%8s ", row[t]);
                printf("n");
            }
        }
        mysql_free_result(res);
    }
}
 
void menu()
{
    int choice;
    char id[20];
    do
    {
        printf("------------------------------n");
        printf("0、退出n");
        printf("1、新增單詞n");
        printf("2、刪除單詞n");
        printf("3、修改單詞n");
        printf("4、查詢單詞n");
        printf("5、排序單詞n");
        printf("6、顯示單詞n");
        printf("------------------------------n");
        printf("請輸入選擇:");
        scanf("%d",&choice);        //根據choice的值選取功能
        switch(choice)
        {
        case 0:
            exit(0);
            break;
        case 1:
            addEng();
            break;
        case 2:
            delEng();
            break;
        case 3:
            modEng();
            break;
        case 4:
            seaEng();
            break;
        case 5:
            sort();
            break;
        case 6:
            readEng();
            break;
        default:
            printf("輸入錯誤!");
        }
        system("pause");
        system("cls");
    }
    while(choice != 0);
}
 
int main()
{
    init();
    menu();
    return 0;
}

資料庫程式碼

/*
 Navicat MySQL Data Transfer
 Source Server         : localhost_3306
 Source Server Type    : MySQL
 Source Server Version : 50725
 Source Host           : localhost:3306
 Source Schema         : dictionary
 Target Server Type    : MySQL
 Target Server Version : 50725
 File Encoding         : 65001
 Date: 28/06/2021 13:44:35
*/
 
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
 
-- ----------------------------
-- Table structure for test
-- ----------------------------
DROP TABLE IF EXISTS `test`;
CREATE TABLE `test`  (
  `id` varchar(50) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
  `eng` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
  `chi` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_bin ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of test
-- ----------------------------
INSERT INTO `test` VALUES ('1', 'adopt', '領養');
INSERT INTO `test` VALUES ('2', 'pen', '鋼筆');
INSERT INTO `test` VALUES ('3', 'apple', '蘋果');
INSERT INTO `test` VALUES ('4', 'borrow', '借閱');
INSERT INTO `test` VALUES ('5', 'electric', '電力');
 
SET FOREIGN_KEY_CHECKS = 1;

總結

程式碼還是比較簡單的,主要是不同編譯器,它所對應的驅動方式會有所不同。因此如果想要移植到其它的IDE如: VC6++、VS、DEV 等,可能需要一些處理操作,還要新增資料庫連線驅動和庫函數。當然,難點也就在於獲取ODBC連線,這塊還是需要一些時間琢磨的。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com