码迷,mamicode.com
首页 >  
搜索关键字:use    ( 28727个结果
touch
touchlinux的touch命令不常用,一般在使用make的时候可能会用到,用来修改文件时间戳,或者新建一个不存在的文件命令参数touch选项(参数)文件1、命令参数a或--time=atime或--time=access或--time=use只更改存取时间。-c或--no-create不建立任何文档。-d使用指定的日期时间,..
分类:其他好文   时间:2015-09-25 18:46:56    阅读次数:205
sql 时间行列转换求总和
先看表结构USE [TestMyDB]GO/****** Object: Table [dbo].[Product] Script Date: 2015/9/25 16:09:39 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOSET...
分类:数据库   时间:2015-09-25 18:33:52    阅读次数:251
MongoDB初识-增删改
1、切换数据库 admin数据库:use admin test数据库:use test2、新增: 方法一(首选) c={name="初一",teacher:"小张",stuCount:50} db.class.save(c) 或者db.class.insert(c) 方...
分类:数据库   时间:2015-09-25 16:03:12    阅读次数:135
此纳税人登记号已用于同一期间的交易方(交易方类型为 XXX 且交易方名称为 xxxx)。
When updated Supplier's tax informations , System occurs a error:'This tax registration number is already in use for party type: Third Party and party...
分类:其他好文   时间:2015-09-25 16:01:15    阅读次数:285
Use formatter to format your JAVA code
In order to make the codes looks unified and make it easy to understand, it's better to use the same formatter for our code, the xml is the standard f...
分类:编程语言   时间:2015-09-25 15:57:46    阅读次数:267
字符及文本处理之awk:awk常用函数
常用的内置函数1、split语法:split(string,array[,fieldsep[,seps]])功能:将string表示的字符串以fieldsep为分隔符进行分隔,并将分隔后的结果保存至array为名的数组中;数组下标为从1开始的序列;[root@xxx~]#df-h|awk‘!/^File/{split($5,USE,"%");printUSE[1]}‘ 17 0 7 7 [..
分类:其他好文   时间:2015-09-25 14:38:45    阅读次数:203
mysql 相关问题
1.修改密码mysql默认是没有密码的,可以用如下方式修改:mysql> use mysql;mysql> update user set password=PASSWORD('new_passwd') where name='name';mysql> flush privileges;sudo /...
分类:数据库   时间:2015-09-25 13:17:07    阅读次数:188
autoLayout自动布局
autoLayout 有两个核心概念:参照约束当选择了 use auto layout 的选项之后 左侧就会多出两个东西 :top layout guide 和 bottom layout guide代表上面和下面的范围,点击top layout guide 会发现状态栏下方会有一条线。添加约束的时...
分类:其他好文   时间:2015-09-25 07:04:50    阅读次数:165
改变BootStrap主题颜色
摘自:http://www.asp.net/visual-studio/overview/2013/creating-web-projects-in-visual-studio#bootstrapYou can also use Bootstrap's theming feature to easi...
分类:其他好文   时间:2015-09-24 22:29:23    阅读次数:587
mysql 获取自增id的值的方法
原生jdbc方式:Statement.getGeneratedKeys()示例:Statement stmt = null;ResultSet rs = null;try { // // Create a Statement instance that we can use for ...
分类:数据库   时间:2015-09-24 21:06:20    阅读次数:253
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!