码迷,mamicode.com
首页 >  
搜索关键字:use    ( 28727个结果
mysql的having语句
mysql> use qq;Database changedmysql> #查询本店价比市场价省的钱,并且要求省钱200元以上的取出来mysql> select goods_id,market_price,shop_price,(market_price-shop_price) as discoun...
分类:数据库   时间:2015-07-21 20:29:56    阅读次数:172
Bootstrap复习笔记
01、 You can use the mark tag to highlight text. 标记文本This line of text is meant to be treated as deleted text.被删除的文本This line of text is meant to be tr...
分类:其他好文   时间:2015-07-21 16:52:01    阅读次数:121
gridView 表头自适应高度
gridView 表头自适应高度The Default value assigned to the ColumnHeaderAutoHeight property is equivalent to the False value.You can also use the GridView.Colum...
分类:其他好文   时间:2015-07-21 14:35:18    阅读次数:117
在laravel之外使用eloquent
视频地址https://laracasts.com/lessons/how-to-use-eloquent-outside-of-laravel
分类:其他好文   时间:2015-07-21 14:26:12    阅读次数:90
MongoDB基本使用
成功启动MongoDB后,再打开一个命令行窗口输入mongo,就可以进行数据库的一些操作。输入help可以看到基本操作命令:show dbs:显示数据库列表show collections:显示当前数据库中的集合(类似关系数据库中的表)show users:显示用户use :切换当前数据库,这和MS...
分类:数据库   时间:2015-07-21 14:24:11    阅读次数:119
关于bitmap recycle trying to use a recycled bitmap android.graphics.Bitmap
在开发中,一直使用4.0以上手机作为测试机所以一直没有出现这个问题,今天换了2.3版本的手机,出现了这个错误: trying to use a recycled bitmap android.graphics.Bitmap 后检查代码,我的图片回收代码是介个样子的: public static void recycle(View view) { if (null == view...
分类:移动开发   时间:2015-07-21 12:54:13    阅读次数:181
laravel database的事务函数
laravel的事务使用如下:DB::connection('gvideo')->transaction(function () use ($user_id, $video_id, $action_id) { $this->create(array('user_id' ...
分类:数据库   时间:2015-07-21 12:39:40    阅读次数:192
When to use DataContract and DataMember attributes?
When to use DataContract and DataMember attributes?I am very confused about theDataContractattribute in WCF. As per my knowledge it is used for serial...
分类:其他好文   时间:2015-07-21 12:10:18    阅读次数:147
Python 符号计算的瑞士军刀——SymPy
快速使用在Anaconda 的集成环境 Spyder中可以通过 Preferences > IPython console > Advanced Settings > Use symbolic math 来激活 IPython’s SYMbolic PYthon (sympy) 模块这个模块可以让Spyder 以Latex 风格渲染出非常漂亮的数学表达式,并且在IPython 终端启动时会自动...
分类:编程语言   时间:2015-07-21 10:41:35    阅读次数:163
第三章 JS基本概念
1.驼峰大小写格式:第一个字母是小写,剩下的每个单词的首字母大写2.在ECMAScript 5引入了严格模式:在顶部添加:”use strict";3.变量: 在函数里用var x定义的x只是局部变量,省略var就变成全局变量,未赋值的x为undefined4.数据类型(typeof):: unde...
分类:Web程序   时间:2015-07-21 10:33:37    阅读次数:176
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!