上一页 1 ··· 37 38 39 40 41 42 43 44 45 ··· 66 下一页

2015年6月29日

Perfmon 介绍

摘要: 1、UI 1、笔图标,可以把视图里的细线加粗。 2、加号图标、可以为视图添加新的记数器。 3、操作-->属性、可以用于设置默认的采样时间。2、增加计数据器页面 1、一个计数据器会包涵多个对象。 2、每个对应都可以作为独立的个体进行监视。 阅读全文

posted @ 2015-06-29 18:19 蒋乐兴的技术随笔 阅读(280) 评论(0) 推荐(0) 编辑

2015年6月28日

SQL Server 判断数据库是否存在,表是否存在

摘要: if DB_ID('testdb') is not null -- 如果这个数据库已经存在了drop database testdb;create database testdb;if OBJECT_ID('dbo.user','u') is not nulldrop table dbo.user;... 阅读全文

posted @ 2015-06-28 07:25 蒋乐兴的技术随笔 阅读(502) 评论(0) 推荐(0) 编辑

2015年6月27日

SQL Server MySQL 中的 in 与 null

摘要: 例子:create table t(x int,y int);insert into t(x,y) values(1,1),(2,2),(null,null);查询一: select x,y from t where x in (1,2,null);#它并不会返回null的行哦 查询二: se... 阅读全文

posted @ 2015-06-27 13:38 蒋乐兴的技术随笔 阅读(865) 评论(0) 推荐(0) 编辑

2015年6月26日

Python核心编程笔记--unicode编码

摘要: #定义编码方式,与物理文件。code='utf-8'file='D:/utf8.txt'#把编码后的字符写入文件。hello_out =u'hello world'bytes_out =hello_out.encode(code)f = open(file,'w')f.write(bytes_out... 阅读全文

posted @ 2015-06-26 14:55 蒋乐兴的技术随笔 阅读(238) 评论(0) 推荐(0) 编辑

2015年6月24日

Python核心编程笔记--随机数

摘要: #第一步引入模块import random#第二步生成随机数printrandom.randint(1,3);#[1,2,3]注意这里是闭区间。 阅读全文

posted @ 2015-06-24 15:54 蒋乐兴的技术随笔 阅读(210) 评论(0) 推荐(0) 编辑

MySQL中用decimal的原因

摘要: 原因:float保存的值有可能是这个值的近似值,而不是这个值的真实值。如 0.1在二进制中是没有办法保存真实值的。下面是例子:第一步:建表:create table t2(x float,y decimal(30,8));第二步:加入数据:insert into t2(x,y) values(0.1... 阅读全文

posted @ 2015-06-24 15:36 蒋乐兴的技术随笔 阅读(403) 评论(0) 推荐(0) 编辑

2015年6月21日

Python核心编程笔记----注释

摘要: python 中注释有两种第一种,文档注释第二种,一般的注释下面是例子:class MyClass: '这个是文档注释' def __repr__(self): return "repr"; def __str__(self): ... 阅读全文

posted @ 2015-06-21 23:14 蒋乐兴的技术随笔 阅读(237) 评论(0) 推荐(0) 编辑

Python核心编程笔记---- input 与raw_input

摘要: 1、raw_input:的返回值是一个string 对象。2、input:相当于eval(raw_input()),计算出来是什么类型就是什么类型。----------------------------------------------------------------------------... 阅读全文

posted @ 2015-06-21 22:54 蒋乐兴的技术随笔 阅读(244) 评论(0) 推荐(0) 编辑

Python核心编程笔记---- print@2

摘要: print 的输出从定向问题print 可以用’>>‘来重定向输出,下面是例子f = open('D:/python.txt','w+')print >> f,"这里是我将要写入到文件D:/python.txt的东西";f.close(); 阅读全文

posted @ 2015-06-21 22:38 蒋乐兴的技术随笔 阅读(346) 评论(0) 推荐(0) 编辑

Python核心编程笔记---- print

摘要: 在仅用变量名时,输出的字符串是用单引号括起来的。这个是为了让非字符串对象也可能以字符的形式显示在屏幕上。而print 函数打印出来的是变量的值。print 调用的是str()方法。而仅用变量名时调用的是repr()方法。证明:-------------------------------------... 阅读全文

posted @ 2015-06-21 22:13 蒋乐兴的技术随笔 阅读(211) 评论(0) 推荐(0) 编辑

上一页 1 ··· 37 38 39 40 41 42 43 44 45 ··· 66 下一页

导航