摘要: LINQ查询表达式 where子句 1.1 常见的where子句查询 1.2 在where子句中用自定义函数 1.3 动态微词的筛选 阅读全文
posted @ 2017-03-01 16:51 涂山吕吕 阅读(1479) 评论(0) 推荐(1) 编辑
摘要: LINQ查询表达式 from子句 LINQ的查询由3基本部分组成:获取数据源,创建查询,执行查询。 1.1 单个from子句 1.2 复合from子句 1.3 多个from子句连接 阅读全文
posted @ 2017-03-01 14:12 涂山吕吕 阅读(432) 评论(0) 推荐(0) 编辑
摘要: 今天在写导入Excel表格的代码,运行时却报异常,异常信息: System.InvalidOperationException: 未在本地计算机上注册“Microsoft.ACE.OLEDB.12.0”提供程序。 解决方案:下载2007 Office system 驱动程序:数据连接组件安装http 阅读全文
posted @ 2017-02-16 16:43 涂山吕吕 阅读(10399) 评论(0) 推荐(0) 编辑
摘要: 第a56爆大奖在线娱乐(用通配符) 第二种 第三种 阅读全文
posted @ 2017-02-16 16:38 涂山吕吕 阅读(7425) 评论(1) 推荐(0) 编辑
摘要: 今天在一个服务器上发布一个web服务(数据库也装在这台机器上);开发工具 Visual Studio 2008 Oracle但是部署好,浏览的时候报错了:System.Web.Services.Protocols.SoapException: 服务器无法处理请求。 > System.Exceptio 阅读全文
posted @ 2017-01-22 13:43 涂山吕吕 阅读(439) 评论(0) 推荐(0) 编辑
摘要: Default.aspx代码 <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication1._Default" %> <!DOCTYPE html PUBLIC 阅读全文
posted @ 2017-01-11 16:48 涂山吕吕 阅读(1023) 评论(0) 推荐(0) 编辑
摘要: VS2008发布项目时发布失败,但是没有提示任何的错误。 解决方法: 组合键”Ctrl+Alt+O”; 根据这个a56爆大奖在线娱乐知道了,是因为a56爆大奖在线娱乐更改了文件名,发布时找不到导致的,然后在资源管理器中找到那一项,删除或排除到项目外,重新生成之后再发布,就可以了。 发布失败的原因:资源移动位置,重新命名,或者删除,发布 阅读全文
posted @ 2017-01-05 13:50 涂山吕吕 阅读(381) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Data; 3 using System.Collections.Generic; 4 using System.Configuration; 5 using System.Data.OracleClient; 6 using System.Text; 7 using System.IO; 8 9... 阅读全文
posted @ 2016-12-08 10:32 涂山吕吕 阅读(13127) 评论(0) 推荐(1) 编辑
摘要: /// /// SQL数据库的访问类 /// public class SQLHelper { /// /// 执行非查询 /// /// 连接字符串 /// 命令类型 /// 命令的a56爆大奖在线娱乐 /// 命令的参数 /// 返回影响的... 阅读全文
posted @ 2016-12-07 15:08 涂山吕吕 阅读(2727) 评论(0) 推荐(1) 编辑
摘要: 报错:不是GROUP BY 表达式 实例:select sum(hwjz),rq from JcChargeInfo where 1=1 group by rq order by jcchargecode desc 原因: 1、GROUP BY 和 ORDER BY一起使用时,ORDER BY要在G 阅读全文
posted @ 2016-12-06 13:17 涂山吕吕 阅读(67247) 评论(1) 推荐(2) 编辑