C
c_cyoxi
这个作者很懒,什么都没留下…
展开
-
linux curses 管理多窗口
以下内容来自 linux beginning programming #include #include #include int main(){WINDOW *new_window_ptr;WINDOW *popup_window_ptr;int x_loop;int y_loop;char a_letter = 'a';initscr();m原创 2012-11-29 13:17:10 · 1223 阅读 · 0 评论 -
linux 使用c语言连接mysql数据
以下内容来自 beginning linux programming一书c连接mysql两步骤1. 初始化一个连接句柄结构2. 实际进行连接#include #include #include "mysql.h"int main(char arc,char *argv[]){MYSQL *conn_ptr;conn_ptr = mysql_init(NULL原创 2012-12-16 00:51:52 · 741 阅读 · 0 评论 -
linux mysql找不到mysql.h
以下内容来自:http://blog.sina.com.cn/s/blog_6568e7880100toi9.html原因:缺少libmysqlclient-dev,安装:apt-get install libmysqlclient-devmain.cpp#include #include #include using namespace std;i转载 2012-12-16 00:13:11 · 1901 阅读 · 0 评论 -
linux mysql详细使用 摘自beginning linux programming一书
检测mysl是否启动:ps -el|grep mysqld4 S 0 2176 1995 0 80 0 - 554 rt_sig pts/0 00:00:00 mysqld_safe4 S 104 2532 2176 0 80 0 - 79297 poll_s pts/0 00:00:00 mysqldmysqld_safe是一个原创 2012-12-10 23:26:01 · 671 阅读 · 0 评论 -
linux mysql
转自: http://www.jz123.cn/text/2036189.html1.linux下启动mysql的命令: mysqladmin start /ect/init.d/mysql start (前面为mysql的安装路径) 2.linux下重启mysql的命令: mysqladmin restart /ect/init.d/mysql restart转载 2012-12-11 11:10:11 · 536 阅读 · 0 评论 -
linuxmint mysql使用
安装MySQL sudo apt-get install mysql-server 这个应该很简单了,而且我觉得大家在安装方面也没什么太大问题,所以也就不多说了,下面我们来讲讲配置。 配置MySQL 注意,在Ubuntu下MySQL缺省是只允许本地访问的,如果你要其他机器也能够访问的话,那么需要改变/etc/mysql/my.cnf配置文件了!下面我们一步步地来:默认的My转载 2012-12-09 22:34:13 · 634 阅读 · 0 评论 -
linux mysql怎么安装
1. Fortunately it’s very easy to check if the MySQL server is running:$ ps -el | grep mysqldIf you see one or more mysqld processes running, the server has been started.2. 安装命令:sudo apt-get inst原创 2012-12-09 22:32:47 · 578 阅读 · 0 评论 -
linux 文件区域锁
F_GETLK, F_SETLK and F_SETLKW are used to acquire, release, and test for the existence of record locks (also known as file-segment or file- region locks). The third argument, lock原创 2012-12-06 23:30:40 · 737 阅读 · 0 评论 -
linux curses库的keypad模式
#include #include #include int main(){int key;initscr();crmode(); //keypad(stdscr,TRUE);noecho();clear();mvprintw(5,5,"key pad demonstration,press 'q' to quit");move(7,5);ref原创 2012-12-01 14:38:50 · 2478 阅读 · 3 评论 -
linux curses 彩色显示
以下内容摘自 beginning linux programming 一书编译时加上 -lncurses选项#include #include #include #include int main(){int i;initscr();if(!has_colors()){endwin();fprintf(stderr,"error - no col原创 2012-12-01 15:10:47 · 803 阅读 · 0 评论 -
基础知识
1. char c[256];sizeof(c); //256fun(c);bool fun(char *c){ sizeof(c); //4}2. char *c;sizeof(c); // 4原创 2013-08-12 14:57:52 · 761 阅读 · 0 评论