摘要:
源文件test.pc #include #include #include #include "sqlca.h" int main() { EXEC SQL BEGIN DECLARE SECTION; char *sid = "orauser/pwd@170... 阅读全文
摘要:
1、先配置本地Git E:\personal>git config –-global user.name "lewy" E:\personal>git config –-global user.email "lewy@gmail.com" 查看是否添加成功 E:\personal>git c... 阅读全文
摘要:
1.1 配置静态ip vi /etc/network/interface auto lo iface lo inet loopback #以下是添加的内如 auto eth0 #iface eth0 inet dhcp 如果自动分配的话只要加这行 iface eth0 inet stati... 阅读全文
摘要:
#include #include typedef int(*service_func)(char *,char *); struct service_fun{ char *serviceName; service_func func; }; int who... 阅读全文
摘要:
1.1、使用ttl线 ttl线驱动程序:PL2303_Prolific_DriverInstaller_v1.7.0.exe(驱动精灵上下载) ttl终端:http://the.earth.li/~sgtatham/putty/latest/x86/putty.exe 1.2、下载镜像到电... 阅读全文
摘要:
执行脚本例子 sh sync_prog.sh /home/liuyi/sha1/sha /home/liuyi/aaa /home/liuyi/ddd 注意:另一台机子上必须有相同的路径 #! /bin/ksh #需要同步的机子的ftp信息 FTPHOST="10.8.25... 阅读全文
摘要:
./main #include #include "./lib/dtlib1.h" int main() { printf("running...\n"); sayhello(); return 0; } ./makefile all:main libd... 阅读全文
摘要:
R01:35:respawn:/usr/bin/exe_program 说明 R01:标识,每一行必须唯一(R01并无特殊含义,可自定义)。 35:有效模式,3字符界面启动,5图形界面启动 respawn:固定写法 /usr/bin/exe_program:可执行程序(绝对路径) 修改... 阅读全文
摘要:
表结构 CREATE table sqlloader_test ( f1 char(20), f2 char(20), f3 number(16), f4 date ); 数据文件data.csv 1,888888,900,20130508201203 1,888888,900,201305... 阅读全文
摘要:
#include #include int sum(int a,...) { int temp = 0,sum=0,count; va_list argp; va_start(argp,a); count = a; while(count >= 0)... 阅读全文