创建存储过程:1 delimiter //2 create procedure 
printname (id int,out name char(50) )3 begin4 select user into name from user 
where id=id;5 end6 //7 delimiter...
                            
                            
                                分类:
其他好文   时间:
2014-05-23 06:11:51   
                                阅读次数:
184
                             
                    
                        
                            
                            
                                class SuperClass{ static{ System.out.println("super 
class init!"); } static int superInt = 1; static String superString = "supS...
                            
                            
                                分类:
编程语言   时间:
2014-05-23 04:35:31   
                                阅读次数:
253
                             
                    
                        
                            
                            
                                常用快捷键:Debug:F8 Stop debugger:Shift + F8 Toggle 
breakpoint:F5 Next line:F7 Step into:Shift + F7 Step out:Ctrl + F7Run to C...
                            
                            
                                分类:
其他好文   时间:
2014-05-22 03:29:01   
                                阅读次数:
381
                             
                    
                        
                            
                            
                                => build/tools/zipalign: 
out/host/linux-x86/bin/zipalign (host)=> build/tools/atree: 
out/host/linux-x86/bin/atree (host)=> build/tools:=> build/to...
                            
                            
                                分类:
移动开发   时间:
2014-05-22 00:26:32   
                                阅读次数:
2792
                             
                    
                        
                            
                            
                                在查看alert日志的时候发现: 1 
*********************************************************************** 2 3 
Fatal NI connect error 12170. 4 5 VERSION INFORMATI...
                            
                            
                                分类:
其他好文   时间:
2014-05-21 20:13:32   
                                阅读次数:
298
                             
                    
                        
                            
                            
                                一、FIFO简介 FIFO是英文First In First Out 
的缩写,是一种先进先出的数据缓存器,它与普通存储器的区别是没有外部读写地址线,这样使用起来非常简单,但缺点就是只能顺序写入数据,顺序的读出数据,其数据地址由内部读写指针自动加1完成,不能像普通存储器那样可以由地址线决定读取或写入....
                            
                            
                                分类:
其他好文   时间:
2014-05-21 18:57:44   
                                阅读次数:
239
                             
                    
                        
                            
                            
                                先来看一段代码:	public static void main(String[] args) {
		new Timer().schedule(new TimerTask() {
			
			@Override
			public void run() {
				System.out.println("阳光小强");
			}
		}, 5000);
		
		int i = 0;
		wh...
                            
                            
                                分类:
移动开发   时间:
2014-05-21 16:56:51   
                                阅读次数:
296
                             
                    
                        
                            
                            
                                public class setZero {
	static void print(int [][]a){
		for(int i=0;i<a.length;i++){
			for(int j=0;j<a[i].length;j++){
				System.out.print(a[i][j]+" ");
			}
			System.out.println();
		}
	}
	/*stati...
                            
                            
                                分类:
其他好文   时间:
2014-05-21 16:16:56   
                                阅读次数:
252
                             
                    
                        
                            
                            
                                Description
A subsequence of a given sequence is the given sequence with some elements (possible none) left out. Given a sequence X =  another sequence Z =  is a subsequence of X if there exists a ...
                            
                            
                                分类:
其他好文   时间:
2014-05-21 10:58:39   
                                阅读次数:
237
                             
                    
                        
                            
                            
                                在项目开发中,使用SQLite一不小心就会碰到各种DB异常,网上搜了下没有这方面的资料,写出来记录下。异常信息:android.database.sqlite.SQLiteMisuseException: 
library routine called out of sequence: , while...
                            
                            
                                分类:
数据库   时间:
2014-05-21 03:12:20   
                                阅读次数:
1023