AspSpider空间的数据库使用

本文介绍如何使用C#代码在ASP.NET应用程序中连接部署在AspSpider服务器上的SQL Server数据库,并执行基本的SQL查询操作来获取数据。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

上传数据库到AspSpider空间后,通过连接字符串连接放在空间的数据库

     Data Source=.\SQLExpress;Persist Security Info=True;Integrated Security=SSPI;Initial Catalog=lanjackg2003_web

    其中红色字表示我上传到服务器后的数据库,该格式为   用户名_原数据库名字

    参考代码


 SqlConnection sqlcnt;//打开的数据库
            SqlCommand sqlcmd;//操作数据
           string strconn = @"Data Source=.\SQLExpress;Persist Security Info=True;Integrated Security=SSPI;Initial Catalog=<span style="color:#FF0000;">lanjackg2003_web</span>";//AspSpider服务器数据库
            string sql = string.Format("select count(*) from Info");//返回表的总数
            string strRes = "";
            try
            {
                sqlcnt = new SqlConnection(strconn);
                sqlcnt.Open();
                sqlcmd = new SqlCommand(sql, sqlcnt);
                Int32 count = (Int32) sqlcmd.ExecuteScalar();
                sqlcmd.CommandText = String.Format("select * from Info where code = '{0}'", Request.QueryString["code"].ToString());
                SqlDataReader reader = sqlcmd.ExecuteReader();
                while (reader.Read())
                {   
                    strRes += reader[0] + " " + reader[1] + " " + reader[2];
                }
                sqlcnt.Close();
            }
            catch (Exception)
            {
                Response.ContentType = "application/json";    //返回给前台是JSON数据 
                Response.Write("Error");
                Response.End();
            }



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值