Home > Database > Mysql Tutorial > 通过预处理器指令调整连接的数据库

通过预处理器指令调整连接的数据库

WBOY
Release: 2016-06-07 15:06:30
Original
1115 people have browsed it

开发程序的时候可能会用到多个数据库,比如一个客户正在使用的数据库,一个测试数据库。开发中可能经常在这两套数据库中切换,从前我的做法是修改web.config文件,但是这样确实不太方便。最近发现可以通过预处理器指令来方便的调整。 先在web.config中分别定

    开发程序的时候可能会用到多个数据库,比如一个客户正在使用的数据库,一个测试数据库。开发中可能经常在这两套数据库中切换,从前我的做法是修改web.config文件,但是这样确实不太方便。最近发现可以通过预处理器指令来方便的调整。
    先在web.config中分别定义两个数据库的连接字符串
    OracleHouseConnectionStringTest
    OracleHouseConnectionString
    获取字符串的地方修改如下
    public static string OracleWaterGasConnectString
    {
    get
    {
    #if DEBUG
    return Utility.GetConfig("OracleWaterGasConnectionStringTest");
    #else
    return Utility.GetConfig("OracleWaterGasConnectionString");
    #endif
    }
    }
    然后进行如下设置 添加两个配置.

通过预处理器指令调整连接的数据库

    以后调整数据库只需要更改 启动 按钮右边的配置就可以了.

通过预处理器指令调整连接的数据库

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template