在本机开发asp.net .rdlc报表后,部署到本地没有问题。当把网站发布后部署在IIS上,新电脑上(只安装了.net framwork4.5),提示如下错误:“Could not load file or assembly Microsoft.ReportViewer.WebForms, Ver...
分类:
其他好文 时间:
2014-06-25 19:11:41
阅读次数:
368
一个你可能觉得很奇怪的现象var batch = [];var i = 0;for(;i ")});输出55555输出的值都是i最后的结果这个函数做的事情是向push数组中存放元素 这个元素是函数 且函数没有执行所以输出一下batch得到[function closureFn(){ co...
分类:
Web程序 时间:
2014-06-25 17:40:28
阅读次数:
246
问题提示:Unable to execute dex: java.nio.BufferOverflowException. Check the Eclipse log for stack trace.Conversion to Dalvik format failed: Unable to exec...
分类:
编程语言 时间:
2014-06-25 17:18:38
阅读次数:
292
假定我们有两张表,一张表为Product表存放产品信息,其中有产品价格列Price;另外一张表是ProductPrice表,我们要将ProductPrice表中的价格字段Price更新为Price表中价格字段的80%。 在Mysql中我们有几种手段可以做到这一点,一种是update table1 t...
分类:
数据库 时间:
2014-06-25 16:18:51
阅读次数:
162
mssql 子查询更新update log set uin= b.uinfrom log a,logs bwhere a.accountuin = b.accountuinmysql 不支持 update 子查询更新找了半天资料 终于搞定了...update `log` a inner join `...
分类:
数据库 时间:
2014-06-25 14:23:55
阅读次数:
271
First, update the attribute input type to multiselect:UPDATE eav_attribute SETentity_type_id = '4',attribute_model = NULL,backend_model = 'eav/entity_...
分类:
其他好文 时间:
2014-06-25 14:13:24
阅读次数:
285
今天在MySQL中用hibernate测试update语句发现以下问题: update语句竟然不去作用;表机构如下:create table student(sid int primary key , sname varchar(45) not null, ssex char(2) not nul....
分类:
系统相关 时间:
2014-06-25 13:58:02
阅读次数:
352
1. Mybatis介绍what is mybatis? MyBatis 是支持普通 SQL 查询,存储过程和高级映射的优秀持久层框架。MyBatis 消除 了几乎所有的 JDBC 代码和参数的手工设置以及结果集的检索。MyBatis 使用简单的 XML 或注解用于配置和原始映射,将接口和 Jav....
分类:
其他好文 时间:
2014-06-25 13:17:15
阅读次数:
256
prepare("show tables;");//准备预处理sql语句 $obj->execute();//执行预处理语句 $obj->fetchALL(PDO::FETCH_ASSOC);//获取结果集 #.插入 $obj = null; $sql = ...
分类:
数据库 时间:
2014-06-25 09:23:42
阅读次数:
244
prepare("select * from level_class where id = ?"); $id = 28; $obj->bindParam(1,$id,PDO::PARAM_INT); $obj->execute(); $result = $obj->f...
分类:
数据库 时间:
2014-06-25 09:16:27
阅读次数:
377