摘要: 报错内容: System.Exception Exception of type 'System.Exception' was thrown. Description: HTTP 500.Error processing request. Details: Non-web exception. Ex 阅读全文
posted @ 2017-04-05 10:59 燹 阅读(374) 评论(0) 推荐(0) 编辑
摘要: 这里总结几个数据库的查询所有表字段名和字段类型的SQL语句: Mysql database: select COLUMN_NAME, DATA_TYPE from information_schema.COLUMNS where table_name = 注意:这样查询能把所有数据库中table_n 阅读全文
posted @ 2017-03-16 13:40 燹 阅读(768) 评论(0) 推荐(0) 编辑
摘要: 1. MySQL支持enum和set类型,SQL Server不支持;2. MySQL不支持nchar、nvarchar、ntext类型;3. MySQL数据库的递增语句是AUTO_INCREMENT,而MS SQL是identity(1,1);4. MS SQL默认到处表创建语句的默认值表示是(( 阅读全文
posted @ 2017-03-09 23:30 燹 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 一、Excel文件在sqlserver数据库的本地 1、启用Ad Hoc Distributed Queries的方法exec sp_configure 'show advanced options',1reconfigureexec sp_configure 'Ad Hoc Distributed 阅读全文
posted @ 2017-03-05 13:58 燹 阅读(191) 评论(0) 推荐(0) 编辑
摘要: Web Service 1.基于SOAP和XML形式的返回数据. 2.只支出HTTP协议. 3.只能运行在IIS环境下. 4.不是开源的,但可以由任何支持xml的客户端下使用. WCF 1.基于SOAP和XML形式的返回数据. 2.是基于Web服务(ASMX)的演进,并支持各种协议.如:TCP,HT 阅读全文
posted @ 2017-02-26 16:11 燹 阅读(419) 评论(0) 推荐(1) 编辑