码迷,mamicode.com
首页 >  
搜索关键字:alter insert drop add    ( 57930个结果
如何在iOS中使用libxml
本篇文章简单介绍如何在iOS中使用libxml Mac OS版本:10.8.2 XCode版本:4.5.1 1. 选择xcode工程设定 2. 选择target 3. 选择Summary 4. 拉到Linked Frameworks and Libraries的地方,按下+按键 输入libxml并选择libxml2,按下Add按键 ...
分类:移动开发   时间:2014-07-22 23:05:14    阅读次数:519
记住不要把Bitmap往List等集合放
很多时候,不注意这些细节,直接把bitmap放入List集合中,再者用完忘记清空bitmap,List集合,很容易造成内存泄露 就算你有良好的编程习惯,用完就清空掉,但是数据在list.add()循环的时候就报内存泄露了,还没等你清空,已经oom了 所以,开发中不建议把Bitmap放入list集合中...
分类:其他好文   时间:2014-07-22 23:04:34    阅读次数:287
【LeetCode】- Search Insert Position(查找插入的位置)
[ 问题: ] Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order. You may assume no duplicates in th...
分类:其他好文   时间:2014-07-22 23:01:15    阅读次数:270
oracle 简单SQL
1, insert into test select * from test;(造测试数据)2, create table b as select * from a; (创建表结构一样的空表,数据可同上插入数据)3,linux系统下让sqlplus支持历史命令回调在linux中实现上述功能,需要.....
分类:数据库   时间:2014-05-01 21:33:20    阅读次数:447
cmake
http://www.cmake.org/cmake/help/v2.8.8/cmake.htmladd_executable的作用是指示CMake生成一个可执行文件add_library的作用是指示CMake生成一个库,根据参数SHARED还是STATIC来决定生成动态库还是静态库include_...
分类:其他好文   时间:2014-05-01 21:19:44    阅读次数:418
String path = request.getContextPath();这段什么用
答:这样的代码是在jsp里出现的吧, 那么他的含义就是为了得到一个路径, 做动态网站时,需要提交form表单 在表单的action里面就会这样来写 action="/add.do" 这样来提交到相应的servlet中去,这样可以避免路径的错误,而采用这样的相对路径会更好些答:request.getC...
分类:其他好文   时间:2014-05-01 21:19:06    阅读次数:351
Add Two Numbers
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single ...
分类:其他好文   时间:2014-05-01 20:18:54    阅读次数:425
Myeclipse svn 安装
方法一:在线安装 1.打开HELP->MyEclipse Configuration Center。切换到SoftWare标签页。   2.点击Add Site 打开对话框,在对话框Name输入Svn,URL中输入:http://subclipse.tigris.org/update_1.6.x 3.在左边栏中找到Personal Site中找到SVN展开。将Core ...
分类:系统相关   时间:2014-05-01 18:15:35    阅读次数:373
Everpad: 在linux(ubuntu)上最好的Evernote客户端,不再为linux没Evernote而苦恼
安装Everpad sudo add-apt-repository ppa:nvbn-rm/ppa sudo apt-get update sudo apt-get install everpad...
分类:系统相关   时间:2014-05-01 17:35:52    阅读次数:490
Android中关于Volley的使用(十)对Request和Reponse的认识
好了,到这里,总结一下: 1)创建一个Request的时候,会同时设置一个Response.Listener作为请求的一个参数变量,之后调用RequestQueue的add方法将其添加到Queue。 2)在Queue中的请求会由NetworkDispatcher去跟网络进行通信(如果有缓存的时候,就是CacheDispatcher)。 3)当请求结果回来的时候,Request会首先调用parseNetworkResponse方法根据不同的请求类型,如Json,Image等进行不同的处理。 4)当Reques...
分类:移动开发   时间:2014-05-01 17:35:08    阅读次数:493
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!