Click here to Skip to main content
15,884,298 members
Articles / Database Development / SQL Server

A SQL Management Console for MSSQL 2000 & 2005, MySQL 5.0,...

Rate me:
Please Sign up or sign in to vote.
4.86/5 (14 votes)
20 Apr 2008Ms-PL4 min read 68.4K   2.5K   68  
An article on a SQL IDE for different type of RDBMS databases
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <appSettings>
    <add key="uspGetSysObjectsDependencies" value="@SysObject" />
  </appSettings>
  <connectionStrings>
    <add name="MSSQL" connectionString="server = (local);user id = sa;password = password" providerName="System.Data.SqlClient" />
    <add name="MySQL" connectionString="server = localhost;user id = root;password = password" providerName="MySql.Data.MySqlClient" />
    <!--<add name="ConnStr1" connectionString="LocalSqlServer: data source=127.0.0.1;Integrated Security=SSPI;Initial Catalog=aspnetdb"
      providerName="System.Data.SqlClient" />-->
  </connectionStrings>
</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
Software Developer
Malaysia Malaysia
My blog: http://start-coding.blogspot.com/

Comments and Discussions