摘要:
MySQL C API programming tutorial About this tutorial This is a C programming tutorial for the MySQL database. It covers the basics of MySQL programming with the C API. You may also consider to look at... 阅读全文
posted @ 2011-03-21 11:31
katago
阅读(423)
评论(0)
推荐(0)
摘要:
http://www.hickwu.com/?p=264 C-l 清屏,clear 命令 C-a 移动光标到行首 C-e 移动光标到行尾 C-h 往后删除一字符 C-d 往前删除一字符 C-b 往后移动一个字符 C-f 往前移动一个字符 下面几个操作原理估计类似 emacs 的 yank 操作,可以理解为一套独立的粘贴板机制: C-w 剪切前一个单词(空格间隔的字符串单元) C-u 剪切到行首 C... 阅读全文
posted @ 2011-03-21 11:13
katago
阅读(3390)
评论(0)
推荐(0)