zoukankan      html  css  js  c++  java
  • 微软自己写的~测试远程数据库是否工作正常

     1 <%@ Page Language="C#" %>
     2 
     3 <%@ Import Namespace="System.Data.SqlClient" %>
     4 <%        
     5     string ServerName = "测试";
     6     string DBIP = "-"; // - 表示没有数据库服务器
     7     string DBName = "";
     8     string DBUser = "";
     9     string DBPassword = "";
    10     string conn = string.Format(@"Data Source={0};Initial Catalog={1};Persist Security Info=True;
    11                          User Instance=False;User ID={2};Password={3};MultipleActiveResultSets=true"
    12        , DBIP
    13        , DBName
    14        , DBUser
    15        , DBPassword);
    16 
    17 
    18     string message = "NoSql";
    19     if (DBIP != "-")
    20     {
    21         using (SqlConnection _conn = new SqlConnection(conn))
    22         {
    23             using (SqlCommand comm = new SqlCommand("SELECT COUNT(1)  FROM sys.tables", _conn))
    24             {
    25                 try
    26                 {
    27                     _conn.Open();
    28                     comm.ExecuteReader();
    29                     message = "OK";
    30                     _conn.Close();
    31                     _conn.Dispose();
    32                 }
    33                 catch (Exception)
    34                 {
    35                     message = "Fail";
    36                 }
    37 
    38             }
    39         }
    40     }
    41 
    42 
    43     string callback = Request["jsonpcallback"];
    44     Response.ContentType = "application/x-javascript";
    45     string str = callback + "({" + string.Format("\'ServerName\':\'{0}\', \'ServerIP\':\'{1}\',\'IISMessage\':\'{2}\',\'DBMessage\':\'{3}\'", ServerName, Request.ServerVariables["LOCAL_ADDR"].ToString(), "OK", message) + "})";
    46     Response.Write(str);
  • 相关阅读:
    装饰者模式
    NGUI研究院之三种方式监听NGUI的事件方法(七)
    unity3d连接数据库
    unity3d 连接MSSql
    Unity3D之游戏架构脚本该如何来写
    WCF 部署问题 小总结 (HTTP 不能注册的解决方法)
    Prototype
    web.config文件之自定义错误节
    asp:DropDownList与asp:DataList的联合使用
    剑指offer --合并链表
  • 原文地址:https://www.cnblogs.com/lori/p/2731701.html
Copyright © 2011-2022 走看看