
SQLite
seamanj
这个作者很懒,什么都没留下…
展开
-
SQLite Tutorial 3 : Working with important SqLite Queries (SELECT, INSERT, DELETE, UPDATE,WHERE...)
1.SELECT a.选择所有数据b.选择某列c.选择多列d.选择某行某列其他WHERE语句WHERE age between 32 and 38WHERE gender='Male'e. 排序默认增序:order by age 降序排列:order by desc2.DELETE语句DELETE F原创 2015-12-12 23:42:25 · 517 阅读 · 0 评论 -
Qt17 load sqlite table data to qtableview
1. reedit employeeinfo window2. modify employeeinfo.cpp#include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent) : QDi原创 2016-03-31 01:52:49 · 961 阅读 · 0 评论 -
QT18 how to link QListView with sqlite Database values
1. modify employeeinfo window2. modify employeeinfo.cpp#include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent) : QDi原创 2016-03-31 02:02:27 · 561 阅读 · 0 评论 -
QT19 How to link QComboBox with sqlite Database values
1.modify employeeinfo window2.modify employeeinfo.cpp#include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent) : QDial原创 2016-03-31 02:12:51 · 617 阅读 · 0 评论 -
QT20 database values in QLineEdit or textbox if select combobox
1.modify employeeinfo window2. modify employee.cpp #include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent) : QDialog原创 2016-03-31 02:28:05 · 600 阅读 · 0 评论 -
QT21 Display selected row from QTableView to QlineEdit
1. modify employeeinfo.cpp #include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent) : QDialog(parent), ui(new Ui::Emplo原创 2016-03-31 02:53:51 · 862 阅读 · 0 评论 -
QT22 database values in QLineEdit or textbox if select QListView
1.modify the employeeinfo.cpp#include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent) : QDialog(parent), ui(new Ui::Emp原创 2016-03-31 02:59:53 · 545 阅读 · 0 评论 -
QT23 how to open a website in a default user browser
#include "mainwindow.h"#include "ui_mainwindow.h"#include #include MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow){ ui->setupUi(this);}MainWi原创 2016-03-31 03:08:25 · 718 阅读 · 0 评论 -
SQL As Understood By SQLite
quote from: http://www.sqlite.org/lang_datefunc.htmlDate And Time FunctionsSQLite supports five date and time functions as follows:date(timestring, modifier, modifier, ...)time(timestring, m转载 2016-04-05 22:09:03 · 538 阅读 · 0 评论 -
QT16 delete data from sqlite database with pushbutton
1. modify the employeeinfo window2. modify the employeeinfo.cpp#include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent) :原创 2016-03-31 01:31:31 · 540 阅读 · 0 评论 -
Qt15 Update a data from Sqlite database with pushbutton
1. reedit the employeeinfo window as2. modify the employeeinfo.cpp#include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent原创 2016-03-31 01:19:40 · 636 阅读 · 0 评论 -
QT14 how to save data in sqlite database with pushbutton
1. reedit the employinfo window like2.reedit the employinfo.cpp as#include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *pa原创 2016-03-31 01:01:07 · 569 阅读 · 0 评论 -
SQLite Tutorial 4 : How to export SQLite file into CSV or Excel file
1.导出CSV格式a.右键点击要导出的table名,选择export tableb.然后打开export wizard,打开CSV标签,进行一些设置后,便可以选择保存位置了c.最后打开效果2.导出EXCEL格式跟导出CSV一样,只不过有几个小地方需要该一下1.2.保存的时候,后缀名保存为.xls最后打开来看:原创 2015-12-13 00:14:44 · 668 阅读 · 0 评论 -
SQLite Tutorial 5 : How to Import CSV or Excel file into SQLite database
1.将csv文件导入到SQLite databasea.选择 database->importb.选择数据类型 c.然后在Execute SQL里面执行SELECT * FROM employee就会看到所有结果原创 2015-12-13 00:27:54 · 577 阅读 · 0 评论 -
SQLite Tutorial 2 install free sqlite gui manager in firefox
1.打开firebox,在add-ons里面搜索 sqlite manager , 然后安装2.然后选择Tools->SQLite Manager3. 然后就可以管理自己的数据库了原创 2015-12-12 23:05:03 · 499 阅读 · 0 评论 -
SQLite Tutorial 1 在ubuntu上安装SQLite 3.8.2
1. 输入sudo apt-get install sqlite3 libsqlite3-dev2.安装完后,会提示这样3.然后我们可以进行一些简单的操作退出 sqlite> .quit创建数据库 seamanj@seamanj-Lenovo-IdeaPad-Y400:~$ sqlite3 company.db创建表格 sql原创 2015-12-12 21:50:51 · 538 阅读 · 0 评论 -
SQLite1 Install SQLite on windows
1. download sqlite tools containing sqlite3.exe from the official website:https://www.sqlite.org/download.htmlAt this time in my situation the link is:https://www.sqlite.org/2016/sqlite-tools-wi原创 2016-03-29 22:22:12 · 462 阅读 · 0 评论 -
QT7 How to connect Qt to SQLite
1. create a qt widgets application, name it as Sqlite_DB, modify the class name as Login2. switch to ui designer, drag a label onto the window used for showing the prompting information3. modify t原创 2016-03-29 23:00:57 · 626 阅读 · 0 评论 -
QT8&9&10 Login Form using sqlite in QT application
1. Following the work in qt tutorial 7, we add some widgets on our window2. create a table named employeeinfoinsert some data into the table3. modify login.h as follows:#ifndef原创 2016-03-30 01:02:56 · 962 阅读 · 0 评论 -
QT11 How to set image with QLabel in Qt
1. drag a label widget on the window, remove the string contained:2. insert two lines into class login constructor function in login.cpp:login::login(QWidget *parent) : QMainWindow(parent)原创 2016-03-30 01:38:46 · 1095 阅读 · 0 评论 -
NOT NULL constraint for VARCHAR colume
/*CREATE TABLE "english" ("id" INTEGER PRIMARY KEY AUTOINCREMENT ,"chinese" TEXT NOT NULL UNIQUE CHECK ("chinese" <> ''),"english" TEXT NOT NULL UNIQUE CHECK ("english" <> ''),"date" DATETIME N原创 2016-04-06 02:01:44 · 613 阅读 · 0 评论