摘要:        
SQLite常用命令 sqlite3 file.db 创建名为file的库文件并进入到SQL命令行模式,提示符变为sqlite> " height="122" width="480"/> .help 可显示shell模式中可使用的所有命令列表以及命令的含义 .database 显示数据库信息;包含当    阅读全文
        
            posted @ 2017-11-29 15:30
随缘之
阅读(930)
评论(0)
推荐(0)
        
    | 
	
		
     
摘要:        
SQLite常用命令 sqlite3 file.db 创建名为file的库文件并进入到SQL命令行模式,提示符变为sqlite> " height="122" width="480"/> .help 可显示shell模式中可使用的所有命令列表以及命令的含义 .database 显示数据库信息;包含当    阅读全文
 
        
            posted @ 2017-11-29 15:30
随缘之
阅读(930)
评论(0)
推荐(0)
         
    
摘要:        
1.数组的定义: 数组类型 数组名[长度];其中长度是必须大于0的整数 /* 在这句话中必须指定号数组的长度 切不可写成: Int a[i]; i=10; 而应该写成: Int a[10]; 也可以用宏定义和malloc函数来定义 宏定义的写法: #define N 10 Int a[N]; */     阅读全文
 
        
            posted @ 2017-08-11 13:22
随缘之
阅读(364)
评论(0)
推荐(0)
         
     |