Giter VIP home page Giter VIP logo

qtsql's Introduction

QtSql

qt sql library wiki

qtsql's People

Contributors

aeagean avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

qtsql's Issues

创建表不能用QMap

QMap的key 是红黑树, 没有顺序, 创建的表结构顺序太乱, 有点犯强迫症
写了个 ordermap 供大佬使用

#pragma once

#include <QVariantList>
class OrderMap
{
public:
    QList<QVariantPair> list;
public:
    QVariant& operator[](QVariant key) {
        auto i = find(key);
        if(i==list.end()) {
            QVariantPair t;
            t.first = key;
            list << t;
            return list.last().second;
        } else {
            return i->second;
        }
    }

    QList<QVariantPair>::iterator find(QVariant key) {
        for (auto i = list.begin(); i!=list.end(); ++i) {
            if(i->first==key)
                return i;
        }
        return list.end();
    }
};
//---------使用 demo ----------
    // 建表数据
    OrderMap map;
    // map["user_id"] = "integer NOT NULL PRIMARY KEY AUTOINCREMENT";
    map["user_id"] = "integer NOT NULL PRIMARY KEY";
    map["user_name"] = "varchar";
    map["pass_word"] = "varchar";
    map["create_time"] = "varchar";
    map["dept_id"] = "integer";

    // 定义 SqlService
    SqlService sql;

    // 打开数据库
    sql.open(DataBaseName);

    return sql.createTable(tablename, map);

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.