码迷,mamicode.com
首页 >  
搜索关键字:end    ( 30778个结果
Oracle中的if...then...elsif
if...then...elsif实现多分支判断语句其语法如下:if thenplsql_sentence_1;elseif thenplsql_sentence_2;...elseplsql_sentence_n;end if;最后一个else后边是没有条件的,这个比较重要。具体示例:decla....
分类:数据库   时间:2015-12-17 20:39:40    阅读次数:244
页面公用方法模板
$(function(){ var page={ init:function(){ bkeruyun.setDefaultDate($("#date-start"), $("#date-end")); bkeruyun.bindStartDateChan...
分类:其他好文   时间:2015-12-17 19:02:03    阅读次数:150
Shell脚本控制tomcat的docker容器的创建,删除,启动,关闭
说明:多个tomcat容器,同时启动和关闭,每个docker容器的网络管理使用pipework控制.此脚本用来管理多个容器的创建,删除,启动和关闭.使用者可自行修改.#!/bin/bash #chkconfig:23451190 #description:Docker$Name BEGIN=1 END=4 Name=api Host="$Name" Mem=2048m Container_web_DI..
分类:系统相关   时间:2015-12-17 14:24:44    阅读次数:238
My Batis mapper.xml中 动态SQL中使用trim标签 if end的场景
trim标签有点类似于replace效果。trim 属性 prefix:前缀覆盖并增加其内容 suffix:后缀覆盖并增加其内容prefixOverrides:前缀判断的条件 suffixOverrides:后缀判断的条件 UPDATE test name = #{name}, phone...
分类:移动开发   时间:2015-12-17 12:57:30    阅读次数:8040
存储函数的创建 删除 修改
//存储函数create function hello(w char(20) charset utf8)returns char(50)reads sql databegin return concat('hello',w,'!');end$//运行函数select hello('日记本的回忆')....
分类:其他好文   时间:2015-12-17 10:44:46    阅读次数:127
关于OAuth的授权全过程
@interface SZMOAuthViewCtrl ()@end@implementation SZMOAuthViewCtrl- (void)viewDidLoad { [super viewDidLoad]; //1.创建一个webview UIWebView *webVi...
分类:其他好文   时间:2015-12-17 00:37:53    阅读次数:886
求平均排序MATLAB code
A0=R(:,1:2:end);for i=1:17A1=A0(i,:);p=sort(unique(A1));for j=1:length(p)Rank0(A1==p(j))=j;endRank(i,:)=Rank0;endRD5=mean(Rank);
分类:编程语言   时间:2015-12-16 23:13:16    阅读次数:403
IOS多媒体
音乐播放器 1 #import "ViewController.h" 2 3 @interface ViewController () 4 5 @end 6 7 @implementation ViewController 8 9 - (void)viewDidLoad {...
分类:移动开发   时间:2015-12-16 23:07:38    阅读次数:277
mysql-进阶 声明变量/存储过程
声明变量设置全局变量set @a='一个新变量';在函数和储存过程中使用的变量decleardeclear a int unsigned default 1; 这种变量需要设置变量类型 而且只存在在 begin..end 这段之内select .. into.. 直接将表内内容赋值到指定变量当中se...
分类:数据库   时间:2015-12-16 23:02:10    阅读次数:269
UDP发送中文
procedure TForm1.SpeedButton1Click(Sender: TObject);begin udp.Send('localhost', 1234, 'abc123'); // 发送字符, 这样发中文接收方会乱码end;procedure TForm1.SpeedButton2...
分类:其他好文   时间:2015-12-16 19:24:41    阅读次数:130
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!