Ubuntu下wxWidgets学生信息管理sqlite3(C++)

main.cxx

#include
<sqlite3.h> #include <cstdlib> #include <iostream> #include
<iomanip> using namespace std; int main() { sqlite3* file; int flag; flag
= sqlite3_open("./stu.db", &file);
if(SQLITE_OK != flag) {
cout<<"Database connect failed!"<<endl; exit(-1); }
cout<<"Database connect successes!"<<endl;
char** r; int row,
col; char* errmsg; string sql = "select * from stu"; flag =
sqlite3_get_table(file, sql.c_str(), &r, &row, &col, &errmsg);
if(SQLITE_OK == flag) { cout<<"Statement executes
sucesses!"<<endl;  int i, j;
for(i = 0; i <= row; i++) {
for(j = 0; j < col; j++) { cout<<r[i*col+j]<<‘ ‘; }
cout<<endl; }
} sqlite3_close(file); return 0; }
makefile

all:
main.o g++ main.o -o t.exe -lsqlite3 main.o: main.cxx g++ -c main.cxx -o
main.o
.PHONY:clean
clean: rm main.o t.exe

1.先在线安装sqlite3,试用一下命令安装
[email protected]:~$
sudo apt-get install sqlite3
2.安装成功后测试会出现
[email protected]:~$
sqlite3
SQLite
version 3.7.9 2011-11-01 00:52:41
Enter
".help" for instructions
Enter
SQL statements terminated with a ";"
sqlite>
.exit
3.查找sqlite3的路径
[email protected]:~$
which sqlite3
/usr/bin/sqlite3
[email protected]:~$
ls
core
             OSlab1    Public
                     
    Videos
Desktop
          OSlab2    Qt      
                     
  vmwaretools
Documents
        OSlab3    sqlite-amalgamation-3080403
     wx
Downloads
        OSlab4    sqlite-amalgamation-3080403.zip
 wx3.0
examples.desktop
 OSlab5    StuMana            
             wxlab
Music
            Pictures  Templates
4.具体sqlite3操作的实例
[email protected]:~$
mkdir mydb
[email protected]:~$
cd mydb
[email protected]:~/mydb$
ls
[email protected]:~/mydb$
sqlite3 stu.db
SQLite
version 3.7.9 2011-11-01 00:52:41
Enter
".help" for instructions
Enter
SQL statements terminated with a ";"
sqlite>
create table stu(sno int primary key, sname text not null, sage int);
sqlite>
insert into stu(1, ‘Lisi‘, 20);
Error:
near "1": syntax error
sqlite>
insert into stu values(1, ‘lisi‘, 20);
sqlite>
insert into stu values(2, ‘zhangsan‘, 18);
sqlite>
select * from stu;
1|lisi|20
2|zhangsan|18
sqlite>
.exit
[email protected]:~/mydb$
ls
stu.db
6.记着在CodeBlocks的link
那里添加 libsqlite3.so和libsqlite3.so.0的路径(usr/local/lib)

5.具体sqlite3操作的实例
[email protected]:~$
cd StuMana
[email protected]:~/StuMana$
sqlite3 stuinfo.db
SQLite
version 3.7.9 2011-11-01 00:52:41
Enter
".help" for instructions
Enter
SQL statements terminated with a ";"
sqlite>
create table stuinfo (id char(10),name char(15) not null,dormitoryid char(20)
not null,phone char(11),qq char(13));
sqlite>
insert into stuinfo
values(‘1115115247‘,‘LiYa‘,‘15#501‘,‘15530061772‘,‘614100932‘);
sqlite>
insert into stuinfo
values(‘1115115276‘,‘ZhangAihua‘,‘15#424‘,‘18330000036‘,‘627100056‘);
sqlite>
select * from stuinfo;
1115115247|LiYa|15#501|15500761772|614100932
1115115276|ZhangAihua|15#424|18330000036|627100056
sqlite>
.exit
[email protected]:~/StuMana$
ls
bin
          stuinfo.db      StuMana.depend
  WxWizFrame.fbp
GUIFrame.cpp
 StuManaApp.cpp  StuMana.layout   WxWizFrame.fbp.bak
GUIFrame.h
   StuManaApp.h    StuManaMain.cpp
obj
          StuMana.cbp    
StuManaMain.h
[email protected]:~/StuMana$ 
6.在CodeBlocks的link
那里添加 libsqlite3.so和libsqlite3.so.0的路径(usr/local/lib)

Ubuntu下wxWidgets学生信息管理sqlite3(C++),布布扣,bubuko.com

时间: 2024-12-20 12:40:01

Ubuntu下wxWidgets学生信息管理sqlite3(C++)的相关文章

Ubuntu下wxWidgets学生信息管理sqlite3

简单工厂模式(simple factory)是类的创建模式,又叫静态工厂方法(static factory method)模式. 简单工厂模式就是由一个工厂类根据传入的参数决定创建哪一种的产品类. 有4个角色 工厂类角色:是具体产品类角色直接调用者. 抽象产品角色:接口或抽象类,负责具体产品角色的定义,及与客户端的交互. 具体产品角色:被工厂类创建的对象,也是客户端实际操作对象. 客户端:调用工厂类产生实例,并调用实例的方法进行相应工作. c++实现 #include <iostream> #

Ubuntu下wxWidgets学生信息管理soci

main.cxx #include "soci.h" #include "soci-sqlite3.h" using namespace soci; #include <iostream> using namespace std; int main() { session sql; sql.open(sqlite3, "./stu.db"); /*method1*/ /*rowset<row> rs = (sql.prep

Ubuntu下wxWidgets学生公寓管理编程,sqlite3的用法(mysql数据库),窗体,下面是部分添加和删除功能,其他功能可以联系我。。

以下是学生公寓信息管理的增加和删除,仅供参考.. void StuManaFrame::OnAdd(wxCommandEvent &event) { //add student's dormitory infomation sqlite3 *db=NULL; int flag; char *errmsg; flag = sqlite3_open("./stuinfo.db",&db); if(SQLITE_OK != flag) { wxLogMessage("

Ubuntu下Codeblocks+wxWidgets编程,学生公寓管理系统,基于窗体(使用wxFormbuilder拉取控件)。C++,sqlite3

/*************************************************************** * Name:      StuManaMain.cpp * Purpose:   Code for Application Frame * Author:    Zhangaihua (62*********@qq.com) * Created:   2014-05-20 * Copyright: Zhangaihua () * License: *********

Ubuntu下的wxWidgets编程(学生信息管理写入文件,文件格式是.txt)

wxWidgets和Codeblocks的编译安装,GUI程序开发平台的搭建具体步骤如下: (1)基本编译环境安装 安装编译工具(gcc之类)sudo apt-get install build-essential 安装X11sudo apt-get install libx11-dev 安装GTK需要的东西sudo apt-get install?gnome-core-devel (2)下载wxWidgets源码包并解压缩到 #{wxdir} (3)创建基于gtk和x11的编译目录${wx}

ubuntu下sqlite3的用法(以后会讲到wxWidgets使用sqlite3开发)

1.先在线安装sqlite3,试用一下命令安装 [email protected]:~$ sudo apt-get install sqlite3 2.安装成功后测试会出现 [email protected]:~$ sqlite3 SQLite version 3.7.9 2011-11-01 00:52:41 Enter ".help" for instructions Enter SQL statements terminated with a ";" sqli

学生信息管理系统,Ubuntu下Codeblocks+wxWidgets编程

题目链接:https://oj.leetcode.com/problems/set-matrix-zeroes/ Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place. 一个个找肯定会超时,我们可以分别用一个行向量和一个列向量进行维护.这样O(m*n) 能出来 class Solution { public: void setZeroes(vector<vector

ubuntu 下配置Python wxWidgets (复制自官方网站)

全系统英文官网操作地址:http://wxpython.org/download.php Ubuntu 英文操作地址:http://wiki.wxpython.org/InstallingOnUbuntuOrDebian Installing wxWidgets and wxPython On Ubuntu Or Debian There are wxWidgets and wxPython packages in the standard software repositories for D

Ubuntu下sqlite3的配置与使用(以后会说到Ubuntu下C++数据库应用开发程序(窗体程序))

/***************************************************************  * Name:      CaculatorMain.h  * Purpose:   Defines Application Frame  * Author:    zhangaihua ([email protected])  * Created:   2013-12-25  * Copyright: zhangaihua (http://blog.csdn.ne