以下的文章主要阐述的是用SubSonic连接MySQL数据库的正确配置方案,随着MySQL数据库的广泛应用其相关的应用也随之受到重视,以下的文章主要介绍的是用SubSonic连接MySQL数据库的正确配置方案。
在项目中加入SubSonic.dll的引用;
在项目web.config的configuration中加入
- <configSections>
- <section name="SubSonicService" type="SubSonic.SubSonicSection, SubSonic" requirePermission="false"/>
- </configSections>
- <connectionStrings>
- <clear/>
- <add name="MySQLDataConnection" connectionString="Data Source=dataserveripornamepipe;Database=database;User ID=username;Password=password"/>
- </connectionStrings>
- <SubSonicService defaultProvider="MySQLData">
- <providers>
- <clear/>
- <add name="MySQLData" type="SubSonic.MySQLDataProvider,SubSonic" connectionStringName="OracleDataConnection" generatedNamespace="MySQLDataDomain"/>
- </providers>
- </SubSonicService>
然后SubSonic DAL,参照http://hi.baidu.com/beloving/blog/item/472d17ce1ed17e3ab600c8a9.html
注:如果同一个项目中有多个数据库,甚至是多种,如Sql Server+Oracle+MySQL,建议用不同的Namespace,这样Generated目录中会出现多个相应文件夹来存放相应的数据类。
上述的相关内容就是对用SubSonic连接MySQL数据库配置的描述,希望会给你带来一些帮助在此方面。
【编辑推荐】