摘要: 跳表: 阅读全文
posted @ 2018-10-22 19:33 幸运的萤火虫 阅读(3679) 评论(0) 推荐(0) 编辑
摘要: 在SQL中,NULL并不能采用 != 与数值进行比较,若要进行比较,我们只能采用 IS NULL 或 IS NOT NULL。 原因: NULL is used as a placeholder for unknown or inapplicable values, it is treated di 阅读全文
posted @ 2018-06-19 13:21 幸运的萤火虫 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 1、 DBI下载地址:https://cpan.metacpan.org/authors/id/T/TI/TIMB/DBI-1.636.tar.gz 1.1 解压,编译: tar -zxvf DBI-1.636.tar.gzcd DBI-1.636perl Makefile.PLmakemake t 阅读全文
posted @ 2016-11-15 21:00 幸运的萤火虫 阅读(9333) 评论(0) 推荐(0) 编辑
摘要: 1 char* trimChar( char *src ) 2 { 3 if( src == NULL ) 4 return src; 5 6 char *begin = src; 7 char *end = src + strlen( src ) -1; 8 9 while( *begin != 阅读全文
posted @ 2016-09-22 20:16 幸运的萤火虫 阅读(727) 评论(0) 推荐(0) 编辑