zoukankan
html css js c++ java
如何使用vs2005自带的sql2005
1.安装VS2005时选择SQL2005一并安装;
2.到microsoft官方免费下载SQL2005管理工具Microsoft SQL Server Management Studio Express Service Pack 2,下载地址:
http://www.microsoft.com/downloads/details.aspx?familyid=6053C6F8-82C8-479C-B25B-9ACA13141C9E&displaylang=zh-cn
;
3.安装Microsoft SQL Server Management Studio Express Service Pack 2;
4.打开Microsoft SQL Server Management Studio Express,用window认证登陆sql server;
5.新建查询,输入:exec sp_password null,'你的密码',sa
alter login sa enable
6.在你的服务器(也就是根节点)上右键-属性,选择安全性,把服务器身份验证改为SQL Server 和 Windows 身份验证模式;
7.完成。
连接sql2005:
SqlConnection con = new SqlConnection(@"Data Source=localhost\SQLEXPRESS;Initial Catalog=testDB;Persist Security Info=True;User ID=sa;Password=123");
-----------------------------------------------------------------
我做的小程序们
【推荐】Web版短信管理平台源码
WinForm版短信管理平台源码
移动短信程序源码Win服务版(CMPP3.0/CMPP2.0协议)
移动物联网卡短信源码(CMPP3.0协议,支持MsSql/MySql数据库)
C#实现联通短信Sgip协议程序源码
C#实现电信短信SMGP协议程序源码
C#实现移动短信CMPP服务端程序源码
小y的QQ:
28657321
(欢迎交流)
查看全文
相关阅读:
Python运行时遇到UnicodeDecodeError: 'ascii' codec can't decode byte 0xb0 in position 1: ordinal not in range(128)的问题
Android 网络通信架构学习
将Windows MyEclipse的web项目移植到Debian下
build-essential : Depends: libc6-dev but it is not going to be installed or libc-dev 解决办法
Debian可用的源 —— 23% waiting for headers解决办法
将访问服务器的工作交由Service承担
Servlet回传的数据显示在界面上
Android客户端和Servlet服务器端通过JSON交互
Welcome to My Blog!
【三木夜话】无穷级的恐惧
原文地址:https://www.cnblogs.com/tuyile006/p/833638.html
最新文章
(12)用css设计电子相册 {下}
vue使用 封装websocket心跳包
js转换页面为图片并下载
gojs常用API (中文文档)
使用js json/xml互相转换
Go.js 没有中文文档 也没有中文demo 学起来很费劲 给大家整理一个算是详细的文档
ajax 轮询(适合web端二维码请求)
点击任何位置隐藏所需隐藏的元素 (无BUG/jQuery版)
Javascript字符串常用方法详解
div设置contenteditable 的小技巧
热门文章
axios拦截器的实现
axios取消功能的设计与实现
Webpack性能优化
Web安全
VScode插件
多页面打包
HTTPS
ReactNative
IOError: unknown file format 的解决办法
decoder jpeg not available, JPEG support not installed 的解决办法
Copyright © 2011-2022 走看看