码迷,mamicode.com
首页 >  
搜索关键字:create datafile    ( 30138个结果
Oracle笔记之对象权限与系统权限总结
对象权限与系统权限创建表和创建session是系统权限;系统管理员是有权限去訪问其它表的以sys登录 sqlplus sys/on_change_install as sysdba;创建用户wangwu create user wangwu identified by wangwu;系统权限 gra...
分类:数据库   时间:2014-07-19 22:30:18    阅读次数:218
iOS interview questions and Answers
http://gksanthoshbe.blogspot.com/2013/03/ios-interview-questions-and-answers.html1-How would you create your own custom view?By Subclassing the UIView...
分类:移动开发   时间:2014-07-19 22:25:30    阅读次数:544
数据采集类
爬虫,又称蜘蛛,是从别的网站抓取资源的一种方法,C#.NET使用爬虫的方法如下:protected string GetPageHtml(string url){string pageinfo;try{WebRequest myreq = WebRequest.Create(url);WebResp...
分类:其他好文   时间:2014-07-19 18:15:25    阅读次数:180
python 3Des 加密
import hashlib;from Crypto.Cipher import DES3import base64def create_key(sk): r=hashlib.md5(sk).digest() return r+r[:8]def init_str(s): l=len(s) % 16 ...
分类:编程语言   时间:2014-07-19 16:07:32    阅读次数:192
获取目标网页的内容
HttpWebRequest request = WebRequest.Create("http://www.1314721.com.cn/") as HttpWebRequest; HttpWebResponse response = request.GetResponse() as HttpW....
分类:Web程序   时间:2014-07-19 14:25:36    阅读次数:219
Create a file which date is several days ago
Createafile"1weekago"============================#root@ubun1204:/root/study#date+%Y%m%d20140718root@ubun1204:/root/study#touch-d"1weekago"file2root@ubun1204:/root/study#touch-d"10dayago"file1root@ubun1204:/root/study#ls-lfile1file2-rw-r--r--1rootroot0Jul823..
分类:其他好文   时间:2014-07-19 12:41:24    阅读次数:195
DevExpress.XtraLayout.LayoutControl 动态添加控件
// Create an item within a specified group,// bound to a specified data field with the specified editorprivate LayoutControlItem CreateItemWithBoundEd...
分类:其他好文   时间:2014-07-19 12:05:19    阅读次数:1815
oracle 存储过程中使用date 时、分、秒丢失
今天有一开发兄弟找我,说出现一奇怪现象,在存储过程中赋date类型的值,时、分、秒都丢失了,下面来做个试验: SQL> drop table test purge; SQL> create table test     (      fill_date  date     ); SQL> insert into test values(sysdate); SQL> commit; ...
分类:数据库   时间:2014-07-19 08:23:15    阅读次数:269
ExtJS(2)- Grid技巧
Grid是ExtJS中最常用的组件之一,今天在此稍作整理,主要针对一些常用的功能知识点。一、基础的Grid表格Ext.create(‘Ext.data.Store‘,{ storeId:‘simpsonsStore‘, fields:[‘name‘,‘email‘,‘phone‘], data:{‘items‘:[ {‘name‘:‘Lisa‘,"email":"lisa@simpsons.com","phone":"555-..
分类:Web程序   时间:2014-07-19 02:42:05    阅读次数:293
liGDX life_cycle (生命周期)
一个应用程序可以通过实现ApplicationListener接口来实现对各种生命周期函数的响应。 先看如下代码: public class MyGame implements ApplicationListener { public void create () { } public void render () { } public...
分类:其他好文   时间:2014-07-19 02:37:07    阅读次数:260
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!