码迷,mamicode.com
首页 >  
搜索关键字:from file system    ( 153319个结果
Cadence学习笔记之新建工程
一、打开Cadence 弹出如下对话框二、选择 orCAD Capture CIS OK!进入cadence原理图界面。。。。。。三、首先我们要建一个工程文件 File -> New -> Project 然后弹出如下对话框四、在name栏中填写工程名,在location中选择工程保存的路径,点击O...
分类:其他好文   时间:2014-05-08 20:16:08    阅读次数:471
sqlserver中top 1 赋值的问题
看代码declare @iid intselect @iid=111select top 1 @iid=isnull(IID,0) from YYGL_PCDMX where IID=0print @iid上面的情况,如果iid=0没有记录,则@iid会取111,为了避免这个问题1、在查询前,初始化...
分类:数据库   时间:2014-05-08 20:13:13    阅读次数:438
TortoiseSVN里checkout depth各选项的含义
代表四种检出深度: 1、Fully recursive——全递归:检出完整的目录树,包含所有的文件或子目录。2、Immediate children,including folders——直接子节点,包含文件夹:检出目录,包含其中的文件或子目录,但是不递归展开子目录。3、Only file chli...
分类:其他好文   时间:2014-05-08 20:08:29    阅读次数:290
使用Telerik StyleMananger 改变Silverlight Button样式
Telerik 支持更改以下控件样式 System.Windows.Button System.Windows.ScrollViewer System.Windows.CheckBox System.Windows.TextBox System.Windows.RadioButton Sy...
分类:Web程序   时间:2014-05-07 20:10:14    阅读次数:428
第一个JAVA程序
1:打开"记事本",输入这段代码 (注意大小写)class HelloWorld { public static void main(String args[]) { System.out.println("Hello World"); } } 2:以 He...
分类:编程语言   时间:2014-05-07 19:43:54    阅读次数:367
shell脚本练习题(更新中...)
练习题(这里贴的是自己写的代码, 网上给的题目代码我会附加在最下面)1.编写shell脚本,计算1-100的和; 1 #!/bin/bash 2 #caculate the sum of numbers from 1 to 100 3 4 sum=0 5 for i in `seq 1 100`;....
分类:其他好文   时间:2014-05-07 19:34:54    阅读次数:305
SqlCommand.ExecuteScalar 方法
本文来自:http://msdn.microsoft.com/zh-cn/library/system.data.sqlclient.sqlcommand.executescalar(v=vs.100).aspx执行查询,并返回查询所返回的结果集中第一行的第一列。忽略其他列或行。命名空间:Syste...
分类:数据库   时间:2014-05-07 19:18:11    阅读次数:665
error opening trace file: No such file or directory (2)错误解决方法
在练习项目的时候报错 error opening trace file: No such file or directory (2)字面意思是找不到文件,实际上也就是找不到文件,查了其他人的解决方法后还是没解决.突然想到新版本的创建布局文件的时候都有两个一个是文件名命名的xml布局文件另一个是,如....
分类:其他好文   时间:2014-05-07 19:17:34    阅读次数:429
各个数据库中top 的表示方法
Select Top在不同数据库中的使用用法:1. Oracle数据库 SELECT * FROM TABLE1 WHERE ROWNUM<=N2. Infomix数据库 SELECT FIRST N * FROM TABLE13. DB2数据库 SELECT * ROW_NUMBER() OVER...
分类:数据库   时间:2014-05-07 19:12:48    阅读次数:366
XmlSerialization 序列化与反序列化
using System;using System.Collections;using System.Collections.Generic;using System.IO;using System.Linq;using System.Text;using System.Threading.Task...
分类:其他好文   时间:2014-05-07 19:10:55    阅读次数:387
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!