摘要: 1.安装准备(1) 下载sqlite-3.6.16.tar.gz软件包(2) 执行tar zxvf sqlite-3.6.16.tar.gz解压缩(3) 确保arm-linux交叉编译链能正常使用2 安装x86版本cd sqlite-3.6.16./configuremakemake install安装完成后,执行sqlite3 test.db进行测试。3 安装arm版本(重新解压一份)cd sqlite-3.6.16./configure --host=arm-linux --prefix=/usr/local/sqlitemakemake install注:--prefix指定安装目录【移 阅读全文
posted @ 2011-09-30 21:45 j2ee技术 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 首先编译安装sqlite x86和arm版本,参见【搭建sqlite嵌入式开发环境】(1) x86版gcc -o login.cgi -L/usr/local/lib/ -I/usr/local/include/ -static login.c -lsqlite3 -lpthread(2) arm版arm-linux-gcc -o login.cgi -L/usr/local/sqlite/lib/ -I/usr/local/sqlite/include/ -static login.c -lsqlite3 -lpthread 阅读全文
posted @ 2011-09-30 21:31 j2ee技术 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 1【方法1】(1) 设置cookieprintf( "Set-Cookie:username=%s; path=/; \r\n ",username);printf("Content-type: text/html\n\n");注意:设置cookie的语句要放在Content-type前,否则不能生效。(2) 查看cookieprintf("Content-type: text/html\n\n");printf("<html>\n"); info=getenv("HTTP_COOKIE&qu 阅读全文
posted @ 2011-09-30 20:56 j2ee技术 阅读(365) 评论(0) 推荐(0) 编辑