码迷,mamicode.com
首页 >  
搜索关键字:create datafile    ( 30138个结果
数据库创建标量值函数
1 create FUNCTION [dbo].[ispm] (@pmfrist int) 2 RETURNS int 3 AS 4 BEGIN 5 DECLARE @ISvalue int 6 if @pmfrist>0 and @pmfrist<11 7 begin 8 set @ISval.....
分类:数据库   时间:2014-07-18 16:23:10    阅读次数:204
(七) 动画
自定义序列帧动画:Animation* animation = Animation::create();SpriteFrameCache* spriteFrameCache = SpriteFrameCache::getInstance();spriteFrameCache->addSpriteFr...
分类:其他好文   时间:2014-07-18 09:39:35    阅读次数:186
advanced linux programming note
1.pthread_create function creates thread that share the same memory with the process.2.pthread_join function wait for threads until they stop3.The pth...
分类:系统相关   时间:2014-07-18 00:19:54    阅读次数:317
MySQL复制表结构、表数据
1、复制表结构及数据到新表CREATE TABLE 新表SELECT * FROM 旧表这种方法会将oldtable中所有的内容都拷贝过来,当然我们可以用delete from newtable;来删除。不过这种方法的一个最不好的地方就是新表中没有了旧表的primary key、Extra(auto...
分类:数据库   时间:2014-07-18 00:07:21    阅读次数:261
SQL Server和MySQL主外键写法对比
SQL Server主键的写法:--列级create table dept(dept_no int primary key,dept_name nvarchar(20) not null)--表级create table dept(dept_no int not null,dept_name nva...
分类:数据库   时间:2014-07-17 23:36:30    阅读次数:400
ExtJs 3 自定义combotree
ExtJs 3 自定义combotree/** * 自定义下拉树,支持初始化值时自动定位树节点。 * 还没有考虑性能问题。继承自Ext.form.ComboBox也很浪费。 * 代码中的cu.get()是自定义的异步请求方法。 * @author Linzongxue * @create_date ...
分类:Web程序   时间:2014-07-17 23:09:16    阅读次数:486
SharePoint Provider Hosted App Walk through -- Foreword
Here, you can find how to create and deploy a SharePoint Provider hosted App, and there are some simply demos about how to connect the SharePoint usin...
分类:移动开发   时间:2014-07-17 18:24:20    阅读次数:279
从mac终端创建cocos2d-x项目在xcode和eclipse正常运行环境配置
一、创建可以同时运行在xcode和eclipse的项目:1.打开mac终端,进入cocos2d-x目录下的tools/project-creator,执行命令./create_project.py -project [项目名] -package [包名] -language [使用语言cpp或jav...
分类:系统相关   时间:2014-07-17 18:15:49    阅读次数:223
Android中 Alertdialog对话框点击消失?
在开发的时候遇到一个问题,就是一触摸对话框边缘外部,对话框会自动消失。这个问题很纠结啊,查找了一下发现从Android 4.0开始,AlertDialog有了变化,就是在触摸对话框边缘外部,对话框会自动消失,查了源码,找到解决办法:          研究其父类时候发现,可以设置这么一条属性,在AlertDialog.Builder.create()之后才能调用这两个方法   ...
分类:移动开发   时间:2014-07-17 17:22:20    阅读次数:222
软件RAID的创建
创建软件RAID的指令是mdadm,允许将任何块设备做成RAID。mdadm是一个模式化的命令,有如下几种工作模式:创建模式:Create对应的选项:-C或--create管理模式:Manage对应的选项:--add、--fail、--remove监控模式:Monitor对应的选项:-F或--monitor增长模式:Grow对应的选项:..
分类:其他好文   时间:2014-07-17 15:35:18    阅读次数:350
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!