`
libixionglbx
  • 浏览: 11276 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论
文章列表
{ xtype: 'combobox', fieldLabel: '需求商', id: 'companayDemand', name: 'companayDemand', store: 'TraderNews',//包含companay的store,后台json格式获得 valueField: 'traderid', displayField: 'companay', typeAhead: false, hideTrigger: true, emptyText: '请选择...', minChars: 2,//输入字符长度为2时开始查询 ...

sqlserver跨库查询

    博客分类:
  • sql
将ScciDB数据库中的表数据,插入到同样表结构的另外一个数据库当中 exec sp_configure "show advanced options",1 reconfigure exec sp_configure "Ad Hoc Distributed Queries",1 reconfigure insert into tb_cityCode SELECT * from OPENROWSET('MSDASQL', 'DRIVER={SQL Server};SERVER=192.168.1.6\sqlexpress;UID=sa; ...
1:如何设置背景透明        lbl.backgroundColor=[UIColor clearColor]; 2:如何设置UIViewControl的frame属性    myViewControl.view.frame = CGRectMake(0, 0, 320 , 100); 3:分别获得  CGRect中的4个属性值(view frame)       view.frame.origin.x, frame.origin.y, frame.size.width, frame.size.height 4:如何用代码添加事件:    [button addTarget:self a ...
<script type="text/javascript"> //屏蔽页面中不可编辑的文本框中的backspace按钮事件 function keydown(e) { var isie = (document.all) ? true : false; var key; var ev; if (isie){ //IE和谷歌浏览器 key = window.event.keyCode; ...
//自定义扩展方法,供外部调用 String.prototype.isNull = testNull;//判断是否为空 String.prototype.number = testNumber;//判断数字,只能为整数 String.prototype.doubleNumber = testDoubleNumber;//判断数字,可以为小数 String.prototype.zip = testZip;//判断邮政编码格式 String.prototype.phone = testPhoneNumber;//判断联系电话、传真格式 String.prototype.email = testEma ...
function GetfileSize(addFileuploadCmp) { var agent = window.navigator.userAgent; var fileSize = 0; if (agent.indexOf("Chrome") >= 1) { fileSize = addFileuploadCmp.fileInputEl.dom.files[0].fileSize; } else if (agent.indexOf("Firefox") ...
select sys_user_id as "子ID",sys_user_name as "名称", sys_user_manager as "父ID" from pub_sys_user WHERE 1=1 SELECT * FROM pub_sys_user create table tb(id int, [Name] varchar(20),parentID int ) insert into tb  select           382        , '调度员岗位',              -1  ...
Global site tag (gtag.js) - Google Analytics