上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 57 下一页
摘要: Visual Studio 2010 的伺服器管理員可以用來連接 Sharepoint、伺服器,還可以透過資料連接連結至 SQL Server 等資料來源。以資料來源為例,您可以利用單一工具(Visual Studio)開發應用程式以及資料庫設計和查詢。本文將介紹 SQL Server 專用的工具 - SQL Server Data Tool(SSDT),讓可以在 Visual Studio 2012 中利用單一工具就可以進行類似 SSMS 的各項操作。首先可以到 Data Developer Center 根據您的需要下載適合語言的SQL Server Data Tool,也可以利用 Web 阅读全文
posted @ 2013-09-06 11:08 iDEAAM 阅读(1454) 评论(0) 推荐(0) 编辑
摘要: Update: breaking change: http://sqlproj.com/index.php/2012/10/dacfx-sept-2012-updates-break-headless-build/This article describes how to install the required components to build and publish SQL Server Data Tools projects (*.sqlproj) using MSBuild without installing the full SQL Server Data Tool host 阅读全文
posted @ 2013-09-04 15:21 iDEAAM 阅读(1162) 评论(0) 推荐(0) 编辑
摘要: March 28, 2013 — arcanecode One of the most common errors I get asked about when using SQL Server Data Tools (SSDT) Database Projects is the error “This statement is not recognized in this context”. This is actually a pretty simple error to fix.Envision this scenario. You have a simple table:CREATE 阅读全文
posted @ 2013-09-03 12:05 iDEAAM 阅读(627) 评论(0) 推荐(0) 编辑
摘要: 最近,和朋友们在聊及ASP.NET程序的安全性没有JAVA高,IIS(Internet Infomartion Server)的存在很多漏洞(以及新型蠕虫,例如Code Red 和Nimda),安全得不到保障。针对IIS的安全性查了些资料,发现IIS的安全性曾被普遍关注。权威人士以及Microsoft公司的竞争对手花了大量精力仔细检查并批评了IIS安全功能。Gartner调查公司甚至更进一步建议被Code Red和Nimda攻击过的公司应完全放弃使用IIS。 安全漏洞和病毒问题并不只涉及到IIS用户。事实上,第一个有记载的Internet蠕虫在1987年就被发布了,它主要是针对Unix系统,并 阅读全文
posted @ 2013-08-30 13:03 iDEAAM 阅读(523) 评论(0) 推荐(0) 编辑
摘要: Web Service Transparency.NET support for web services is excellent in creating illusion of transparency. General process is quite straightforward:On the server we create a web service, decorating publicly visible methods with [WebMethod] attribute.On the client we add a web reference to the service. 阅读全文
posted @ 2013-08-28 13:55 iDEAAM 阅读(234) 评论(0) 推荐(0) 编辑
摘要: Sub GetData() Dim strConn As String, strSQL As String Dim conn As ADODB.Connection Dim ds As ADODB.Recordset Dim col As Integer '清空电子表格的所有数据 Cells.Clear '连接数据库的字符串 strConn = "Provider=SQLOLEDB.1;Persist Security Info=True;User ID=name;Passw... 阅读全文
posted @ 2013-08-22 09:28 iDEAAM 阅读(1233) 评论(0) 推荐(0) 编辑
摘要: 在64位机器上开发,如果使用到SqlServerCe的话,那么很可能会碰到这个问题,问题有两个方面:1.如提示所云,没有安装SqlServerCe,只要去微软下载就好了。2.系统已经安装SqlServerCe,程序找不到相应的程序集。这时候网上有众多解法,最有效的可能属个性app.config文件的方法。但是这个方法也不能完全解决问题,在64位机器上就无效。这时需要强制应用程序兼容32位(即使安装的是64位的SqlServerCe)。方法是在程序的属性中的Build选项卡里面,把platform target改成x86即可。 阅读全文
posted @ 2013-08-13 11:18 iDEAAM 阅读(460) 评论(0) 推荐(0) 编辑
摘要: 出错信息如下:----------------------------------------------------------~~~~~...The Rollback phase completed successfully.The transacted install has completed.The installation failed, and the rollback has been performed.-------------------------------------------------------------解决办法:1. 右键 developer comma 阅读全文
posted @ 2013-08-09 15:44 iDEAAM 阅读(687) 评论(0) 推荐(0) 编辑
摘要: What a Windows Service isEnables you to create long-running executable applications that run in their own windows session.Can be automatically started... 阅读全文
posted @ 2013-08-09 14:09 iDEAAM 阅读(343) 评论(0) 推荐(0) 编辑
摘要: You should use:Data Source=|DataDirectory|\MyDb.sdf|DataDirectory| points to the App_Data folder.在程序启动时,设置AppDomain.CurrentDomain.setData(“DataDirectory”,我的目录字符串);Winform的程序那当然是在Main函数中了,废话不说了,我的代码如下stringp=AppDomain.CurrentDomain.BaseDirectory; if(p.IndexOf("\\bin\\")>0) { if(p.EndsWit 阅读全文
posted @ 2013-08-07 13:26 iDEAAM 阅读(404) 评论(0) 推荐(0) 编辑
上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 57 下一页