码迷,mamicode.com
首页 >  
搜索关键字:variables    ( 2229个结果
switch case 的值
switch(value), 这个value只能使用能够转int类型的类型。如 char String int enum >>> Only convertible int values, strings or enum variables are permittedcase 必须和value的类型一...
分类:其他好文   时间:2014-09-01 19:30:43    阅读次数:215
UVA 6475 Effective Infection Time
You are estimating the threat level of quarantined zones that have been abandoned to the infection. One of the key variables in determining a zone’s threat level is the EIT (Effective Infection Time)...
分类:其他好文   时间:2014-09-01 00:31:42    阅读次数:252
MySQL命令行乱码问题的解决
使用MySQL命令行可以实现许多我们需要的功能,不过在使用MySQL命令行的时候,有一个问题是在MySQL命令行插入中文数据或者查询中文数据时出现乱码,或者显示不对。1、在MySQL命令行输入:show variables like 'character_set_%'; 查看当前配置的编码。2、在....
分类:数据库   时间:2014-08-31 17:14:01    阅读次数:198
采购订单关闭
DECLARE -- Local variables here i INTEGER; l_return_status VARCHAR2(10); p_retcode VARCHAR2(2000); p_errbuf VARCHAR2(2000); v_x_return_status VARCHAR2(25...
分类:其他好文   时间:2014-08-30 23:08:00    阅读次数:220
【转】mysql-status和variables区别
转:http://www.2cto.com/database/201304/204320.htmlmysql之status和variables区别首先可以通过下属两个命令来查看mysql的相应的系统参数show status like '%abc%';show variables like '%ab...
分类:数据库   时间:2014-08-27 12:28:07    阅读次数:177
Mysql Profiling
Mysql自带profiling性能分析工具 ? 1. show variables like ‘%profiling%‘;(查看profiling信息) ? ? 2. set profiling=1;(开启profiling) ? 3. 执行SQL查询? 例:select goods_name from ecs_goods where g...
分类:数据库   时间:2014-08-26 20:01:36    阅读次数:234
MySQL乱码的解决方案
首先,输入命令:show variables like "character_set_%"; 查看下输出,中文的话,只要是这样的结果就可以了: 要这样的结果,通常要如下配置: 更改my.ini下面的[mysql]和[mysqld]下的“default-character-set=gb2...
分类:数据库   时间:2014-08-25 14:49:44    阅读次数:205
【mysql中myisam和innodb的区别】
单击进入源网页要点摘要:1.查看mysql存储引擎的状态mysql> show engines;2.查看mysql默认的存储引擎mysql> show variables like '%storage_engine%';3.修改mysql默认存储引擎ALTER TABLE engineTest EN...
分类:数据库   时间:2014-08-24 22:15:03    阅读次数:307
JVM学习笔记-操作数栈(Operand Stack)
Like the local variables, the operand stack is organized as an array of words. But unlike the local variables, which are accessed via array indices, the operand stack is accessed by pushing and poppin...
分类:其他好文   时间:2014-08-22 16:22:07    阅读次数:268
c-参数(argument)
In C, array arguments behave as though they are passed by reference, and scalar variables and constants are passed by value (like var parameters and.....
分类:其他好文   时间:2014-08-22 15:45:59    阅读次数:172
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!