摘要: 今天在项目中用到ReportViewer,当更新了数据源*.xsd后(表新增一列)在rdlc文件中未找到更新的列。检查后发现更新后的xsd后缀文件*Designer.cs未自动生成。但还是找不到,后发现xsd更新的数据需要在 报表-数据源中刷新数据源才能使用, 但我打开数据源发现所有数据源都丢失了。... 阅读全文
posted @ 2015-08-26 10:46 平安奕程 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 1.v_clob_error_info clob;2.dbms_lob.createtemporary(v_clob_error_info, true);3.dbms_lob.writeappend(v_clob_error_info, len... 阅读全文
posted @ 2015-08-07 14:58 平安奕程 阅读(379) 评论(0) 推荐(0) 编辑
摘要: 表格代码: 1 yyc:SmartGridView ID="GvResultList" runat="server" AllowPaging="True" AutoGenerateColumns="false" 2 ... 阅读全文
posted @ 2015-05-27 10:24 平安奕程 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2015-02-04 10:28 平安奕程 阅读(110) 评论(0) 推荐(0) 编辑
摘要: spool dbinstall_output.spl set define off set pagesize 4000--insert ........spool off 阅读全文
posted @ 2014-12-17 11:15 平安奕程 阅读(374) 评论(0) 推荐(0) 编辑
摘要: 与下拉框执行顺序, 1. onClickRow 2. Combobox onSuccess 3. Combobox onBeforLoad 4. Combobox onSuccess 5. 继续执行onClickRow方法 1 function loadDropdown(){ 2... 阅读全文
posted @ 2014-12-10 21:26 平安奕程 阅读(1333) 评论(0) 推荐(0) 编辑
摘要: 1. select * from dual for update;2. select t.*,rowid from dual;方式1会锁表,导致别人不能操作。方式2则不会。使用2可能更好点,但个人感觉1更容易书写。 阅读全文
posted @ 2014-10-23 11:12 平安奕程 阅读(109) 评论(0) 推荐(0) 编辑
摘要: private string[] dateFormat = { "dd/MM/yyyy", "d/M/yyyy", "dd/MM/yyyy HH:mm:ss", "dd/MM/yyyy HH:m:s" };DateTime.ParseExact(sStartDate,dateFormat,DateT... 阅读全文
posted @ 2014-10-09 15:10 平安奕程 阅读(440) 评论(0) 推荐(0) 编辑
摘要: 可以用1. join2. +3. var html = "\ abc\ "; 阅读全文
posted @ 2014-09-26 13:35 平安奕程 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 1 /** 2 * 页面加载等待页面 3 * 4 * @author gxjiang 5 * @date 2010/7/24 6 * 7 */ 8 var height = window.screen.height-250; 9 var widt... 阅读全文
posted @ 2014-09-26 13:34 平安奕程 阅读(9346) 评论(2) 推荐(0) 编辑