码迷,mamicode.com
首页 >  
搜索关键字:use    ( 28727个结果
SQLServer 删除所有表和删除所有存储过程
1、删除所有表use 数据库declare @tname varchar(8000)set @tname=''select @tname=@tname + Name + ',' from sysobjects where xtype='U'select @tname='drop table ' + ...
分类:数据库   时间:2014-07-03 07:16:59    阅读次数:214
View和ViewImage设置图片
1.view类的设置背景android:background --setBackgroundResource(int) --A drawable to use as the background.setBackgroundDrawable(Drawabled)--- Set the backgrou...
分类:其他好文   时间:2014-07-03 06:28:32    阅读次数:169
Install and set JAVA home on MAC OS with commandline
最近需要在MAC上做一些测试,由于测试机没有安装Java,只能自己安装,由于不能通过图形化界面访问测试机,只能通过命令行的形式来安装JAVA。1. Download the jre/jdk install package from Oracle website,use hdiutil to moun...
分类:编程语言   时间:2014-07-03 06:04:04    阅读次数:297
Oracle数据库用EF操作的示例
Using EF Oracle Sample Provider with EDM Designer (from msdn)Many people are asking if it is possible to use EFOracleProvider with EDM Designer in Vis...
分类:数据库   时间:2014-07-03 00:29:01    阅读次数:412
Cheatsheet: 2014 06.01 ~ 06.30
Mobile Developing iOS8 Apps Using Swift – Part 1- Hello World The Insider's Guide to Android Interviewing iOS8 – How to use Objective-C Classes in Swi...
分类:其他好文   时间:2014-07-02 22:49:44    阅读次数:311
MySql数据库学习
/*1.创建数据库*/create database if not exists test_01;/*2.查询所有数据库*/show databases;/*3.使用数据库 */use test_01;/*4.创建表*/create table if not exists BaseUser( ...
分类:数据库   时间:2014-07-02 14:11:25    阅读次数:194
C# 通过用户名和密码获取共享文件夹访问权限
局域网共享文件夹需要用户名和密码才能访问,通过程序怎样才能获得文件夹访问权限呢?这里主要利用了DOS命令中的“NET USE”命令来实现。public static void GetAccessControl(string path,string user,string pwd) { ...
分类:其他好文   时间:2014-07-02 13:50:04    阅读次数:513
Linux Skills
Linux SkillsLinux SkillsTable of Contents1. How to use ramdisk in Ubuntu and Fedora?2. How to enable ssh server in Ubuntu?3. How to disable CPU in Lin...
分类:系统相关   时间:2014-07-02 13:49:28    阅读次数:410
POJ1135_Domino Effect(最短路)
Domino Effect Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 8224   Accepted: 2068 Description Did you know that you can use domino bones for other things b...
分类:其他好文   时间:2014-07-02 09:30:10    阅读次数:294
【OC语法快览】二、存取方法
Accessors 存取方法 All instance variables are private in Objective-C by default, so you should use accessors to get and set values in most cases. There are two syntaxes. This is the traditional 1.x syntax: OC中所有的实例变量默认是私有的,所以多数情况下你应该使用访问器来获得和设置实例变量的值。访问器有...
分类:其他好文   时间:2014-07-02 08:39:04    阅读次数:231
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!