C#连接SQL Server 数据库步骤 视频

C#连接SQL Server 数据库步骤 视频,第1张

使用ASP.NET连接SQLSERVER的步骤:1.确定你的电脑安装了ASP.NET和SQLSERVER2.在你需要连接数据库的页面的.aspx页面中添加命名空间using system.data和using system.data.sqlclient3.实例化常用的类对象:sqlconnection具体方法如下:SqlConnection SQlConn = new SqlConnection("server = .uid = sapwd = database = 你要连接的数据库名称")这样你就能实现最基本的C#连接数据库了,后面还要实例化SqlCommand对象和DataSet对象,这两个分别是你对数据库实现增,删,改,查的基本 *** 作和生成数据集。

这里有,去看http://tv.sogou.com/v?query=%CA%FD%BE%DD%BF%E2%C1%AC%BD%D3%B3%D8%CA%D3%C6%B5&p=40230600&tn=0&st=255

自己写的连接文件,你可以直接用的。 <% '====================================== 'Powered by 港湾(QQ:57404811) '====================================== '====================================== '数据库连接文件V2.0 '====================================== dim conn '定义打开数据库变量 '====================================== '打开数据库连接conn '参数:ACCESS数据库相对当前网站根目录(或虚拟目录)的相对路径,SQL数据库请留空 '如:网站的虚拟目录为: http://127.0.0.1/web/test/ ' 调用打开数据库的页面文件所在位置为: http://127.0.0.1/web/test/news/index.asp ' 调用则用:call connopen("../") '====================================== sub connopen(selfdir) const gw_db_type=0 '定义打开数据库类型变量,0为ACCESS数据库,1为MSSQL数据库 dim gw_db_connstr '定义连接数据库变量 '连接数据库 select case gw_db_type case 0 const gw_db_mdb_name="#db/#db.asp" '定义ACCESS数据库路径及名称 '为安全起见,将数据库扩展名.mdb改为.asp const gw_db_mdb_pwd="" '定义ACCESS数据库密码 gw_db_connstr="Provider=Microsoft.JET.OLEDB.4.0Data Source=" &server.mappath(selfdir &gw_db_mdb_name) &"Jet OLEDB:Database Password=" &gw_db_mdb_pwd case 1 const gw_db_sql_server="(local)" '定义SQL数据库服务器地址 const gw_db_sql_name="database" '定义SQL数据库名称 const gw_db_sql_uid="sa" '定义SQL数据库用户名 const gw_db_sql_pwd="sa" '定义SQL数据库密码 gw_db_connstr="driver={sql server}description=sqldemoserver=" &gw_db_sql_server &"uid=" &gw_db_sql_uid &"pwd=" &gw_db_sql_pwd &"database=" &gw_db_sql_name case else response.write("数据库连接出错!") response.end() end select set conn=server.createobject("adodb.connection") '通过对ERR对像的判断,检测处理脚本时是否发生了错误 '如果有错误,则显示错误提示,同时将创建的connection对像清空 on error resume next if err.number<>0 then err.clear() set conn=nothing response.write("数据库连接出错!") response.end() else '如果没有错误,则初始化对指定数据库的连接 conn.open gw_db_connstr '如果在初始化过程中发生错误,则先将connection对像清空,然后显示错误提示 if err then err.clear() set conn=nothing response.write("数据库连接出错!") response.end() end if end if end sub '====================================== '====================================== '关闭数据库连接conn '====================================== sub connclose() conn.close() : set conn=nothing end sub '====================================== %>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/10019546.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-04
下一篇 2023-05-04

发表评论

登录后才能评论

评论列表(0条)

保存