<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>www.Senthoor.info &#187; Connection Strings</title>
	<atom:link href="http://senthoor.info/blogs/category/connection-strings/feed/" rel="self" type="application/rss+xml" />
	<link>http://senthoor.info/blogs</link>
	<description></description>
	<lastBuildDate>Fri, 10 Oct 2008 12:37:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>SQL Database Glossary</title>
		<link>http://senthoor.info/blogs/2008/06/25/sql-database-glossary/</link>
		<comments>http://senthoor.info/blogs/2008/06/25/sql-database-glossary/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 04:17:56 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Connection Strings]]></category>

		<guid isPermaLink="false">http://senthoor.info/blogs/2008/06/25/sql-database-glossary/</guid>
		<description><![CDATA[Our database glossary explains common database terminology and SQL database jargon. A Access Microsoft Access is an entry-level database management software from Microsoft, which allows you to organize, access, and share information easily. Access is very user-friendly and easy to use for inexperienced users, while sophisticated enough for database and software developers. ACID ACID short [...]]]></description>
			<content:encoded><![CDATA[<p><span class="main">    Our <strong>database glossary</strong> explains common <strong>database terminology</strong> and SQL <strong>database jargon</strong>.</p>
<h3 class="red">A</h3>
<p><strong>Access</strong><br />
Microsoft Access is an entry-level database management software from Microsoft,    which allows you to organize, access, and share information easily. Access is    very user-friendly and easy to use for inexperienced users, while sophisticated    enough for database and software developers.</p>
<p><strong>ACID</strong><br />
ACID short for Atomicity – Consistency – Isolation – Durability and describes    the four properties of an enterprise-level transaction:</p>
<ul>
<li>    ATOMICITY: a transaction should be done or undone completely. In the event of     an error or failure, all data manipulations should be undone, and all data     should rollback to its previous state.</li>
<li>    CONSISTENCY: a transaction should transform a system from one consistent state     to another consistent state.</li>
<li>    ISOLATION: each transaction should happen independently of other transactions     occurring at the same time.</li>
<li>    DURABILITY: Completed transactions should remain    stable/permanent, even during system failure.</li>
</ul>
<p><strong>ADO</strong><br />
Short for Microsoft ActiveX Data Objects. ADO enables your client applications    to access and manage data from a range of sources through an OLE DB provider.    ADO is built on top of OLE DB and its main benefits are ease of use, high    speed, and low memory overhead. ADO makes the task of building complex database    enabled client/server and web applications a breeze.</p>
<h3 class="red">B</h3>
<h3 class="red">C</h3>
<p><strong>Column</strong><br />
Database tables are made of different columns (fields) corresponding to the    attributes of the object described by the table.</p>
<p><strong>COMMIT</strong><br />
The COMMIT command in SQL marks the finalization of a database transaction.</p>
<p><strong>Cursor</strong><br />
Short for Current Set Of Records in some database languages. The cursor is a    database object pointing to a currently selected set of records.</p>
<h3 class="red">D</h3>
<p><strong>Data</strong><br />
Piece of information collected and formatted in a specific way. The term data    is frequently used to describe binary (machine-readable) information.</p>
<p><strong>Database</strong><br />
A database is a collection of information organized into related tables of data    and definitions of data objects. The data within a database can be easily    accessed and manipulated trough computer program.</p>
<p><strong>DB2</strong><br />
DB2 is a relational database management system developed by IBM. DB2 runs on a    variety of platforms including Sun Solaris, Linux and Windows.</p>
<p><strong>dBase</strong><br />
dBase is a popular relational database management system produced by    Ashton-Tate corporation in the early 1980s. The dBase format for storing data    has become industry standard and is still in use today.</p>
<p><strong>DELETE</strong><br />
The DELETE is a SQL command used to delete record(s) from a table in database.</p>
<h3 class="red">E</h3>
<h3 class="red">F</h3>
<p><strong>Field</strong><br />
See Column definition</p>
<p><strong>First Normal Form</strong><br />
See Normalization definition</p>
<p><strong>Flat File</strong><br />
Flat file is a data file that has no structured relationships between its    records.</p>
<p><strong>Foreign Key</strong><br />
A foreign key is a key field (column) that identifies records in a table, by    matching a primary key in a different table. The foreign keys are used to    cross-reference tables.</p>
<p><strong>Fourth Normal Form</strong><br />
See Normalization definition</p>
<p><strong>FoxPro</strong><br />
Visual FoxPro is a Microsoft development environment designed for database    developers.</p>
<h3 class="red">G</h3>
<h3 class="red">H</h3>
<h3 class="red">I</h3>
<p><strong>Index</strong><br />
An index is a database feature (a list of keys or keywords), allowing searching    and locating data quickly within a table. Indexes are created for frequently    searched attributes (table columns) in order to optimize the database    performance.</p>
<p><strong>INSERT</strong><br />
The INSERT is a SQL command used to add a new record to a table within a    database.</p>
<p><strong>Isolation</strong><br />
See ACID definition</p>
<h3 class="red">J</h3>
<p><strong>JOIN</strong><br />
The JOIN is a SQL command used to retrieve data from 2 or more database tables    with existing relationship based upon a common attribute.</p>
<h3 class="red">K</h3>
<p><strong>Key</strong><br />
See Primary Key and Foreign Key definitions</p>
<h3 class="red">L</h3>
<p><strong>Lock</strong><br />
Locks are used by Database management systems to facilitate concurrency    control. Locks enable different users to access different records/tables within    the same database without interfering with one another. Locking mechanisms can    be enforced at the record or table levels.</p>
<h3 class="red">M</h3>
<p><strong>MySQL</strong><br />
MySQL is an open source relational database management system. MySQL can be    used on various platforms including UNIX, Linux and Windows (there are OLE DB    and ODBC providers as well as .NET native provider for MySQL). MySQL is widely    used as a backend database for Web applications and it&#8217; viable and cheaper    alternative to enterprise database systems like MS SQL Server and Oracle.</p>
<h3 class="red">N</h3>
<p><strong>Normalization</strong><br />
Normalization is the process of organizing data to minimize redundancy and    remove ambiguity. Normalization involves separating a database into tables and    defining relationships between the tables. There are three main stages of    normalization called normal forms. Each one of those stages increases the level    of normalization. The 3 main normal forms are as follows:</p>
<ul>
<li>    First Normal Form (1NF): Each field in a table must contain different     information.</li>
<li>    Second Normal Form (2NF): All attributes that are not dependent upon the     primary key in a database table must be eliminated.</li>
<li>    Third Normal Form (3NF): No duplicate information is    permitted. So, for example, if two tables both require a common field, this    common field information should be separated into a different table.</li>
</ul>
<p>There are 2 more normalization forms, fourth normal form (4NF) and fifth normal    form (5NF), but they are rarely used. Normalization makes databases more    efficient and easier to maintain.</p>
<p><strong>NULL</strong><br />
The NULL SQL keyword is used to represent a missing value.</p>
<h3 class="red">O</h3>
<p><strong>ODBC</strong><br />
Short for Open DataBase Connectivity, a standard database access technology    developed by Microsoft Corporation. The purpose of ODBC is to allow accessing    any DBMS (DataBase Management System) from any application (as long as the    application and the database are ODBC compliant), regardless of which DBMS is    managing the data. ODBC achieves this by using a middle layer, called a    database driver, between an application and the DBMS. The purpose of this layer    is to transform the application&#8217;s data queries into commands that the DBMS    understands. As we said earlier, both the application and the DBMS must be ODBC    compliant meaning, the application must be capable of sending ODBC commands and    the DBMS must be capable of responding back to them.</p>
<p><strong>OLE DB</strong><br />
Short for Object Linking and Embedding Data Base. OLE DB is a set of COM-based    interfaces that expose data from a range of sources. OLE DB interfaces give    applications standardized access to data stored in various information sources    like Relational Database Management Systems (MS SQL Server, Oracle, MySQL),    small personal databases like MS Access, productivity tools like spreadsheets;    plain text files, etc. These interfaces support the amount of DBMS    functionality appropriate to the data store, allowing the data store to share    its data.</p>
<p><strong>Oracle</strong><br />
Oracle is an enterprise relational database management system. Oracle&#8217;s main    rival product MS SQL Server is a low cost alternative offering the same    features.</p>
<h3 class="red">P</h3>
<p><strong>PostgreSQL</strong><br />
PostgreSQL is an object-oriented open source relational database management    system, which uses a subset of SQL language.</p>
<p><strong>Primary Key</strong><br />
The primary key of a relational table holds a unique value, which identifies    each record in the table. It can either be a normal field (column) that is    guaranteed to be unique or it can be generated by the database system itself    (GUID or Identity field in MS SQL Server for example). Primary keys may be    composed of more than 1 field (column) in a table.</p>
<h3 class="red">Q</h3>
<p><strong>Query</strong><br />
Queries are the main way to make a request for information from a database.    Queries consist of questions presented to the database in a predefined format,    in most cases SQL (Structured Query Language) format.</p>
<h3 class="red">R</h3>
<p><strong>Record</strong><br />
The record is a complete set of information presented within a RDBMS. Records    are composed of different fields (columns) in a table and each record is    represented with a separate row in this table.</p>
<p><strong>ROLLBACK</strong><br />
The ROLLBACK is a SQL command which cancels/undoes the proposed changes in a    pending database transaction and marks the end of the transaction.</p>
<p><strong>Row</strong><br />
See Record definition</p>
<h3 class="red">S</h3>
<p><strong>Second Normal Form</strong><br />
See Normalization definition</p>
<p><strong>SELECT</strong><br />
The SELECT is a SQL command, which is the primary means for retrieving data    from a RDBMS.</p>
<p><strong>SQL</strong><br />
SQL is short for Structured Query Language and is an industry standard language    used for manipulation of data in a RDBMS. There are several different dialects    of SQL like, ANSI SQL, T-SQL, etc.</p>
<p><strong>Stored Procedure</strong><br />
Stored Procedure is a set of SQL statements stored within a database server and    is executed as single entity. Using stored procedures has several advantages    over using inline SQL statements, like improved performance and separation of    the application logic layer from database layer in n-tier applications.</p>
<h3 class="red">T</h3>
<p><strong>Table</strong><br />
A Table in RDBMS refers to data arranged in rows and columns, which defines a    database entity.</p>
<p><strong>Third Normal Form</strong><br />
See Normalization definition</p>
<p><strong>Transaction</strong><br />
Transaction is a group of SQL database commands regarded and executed as a    single atomic entity.</p>
<p><strong>Trigger</strong><br />
Triggers are special type of stored procedures executed automatically when    certain events take place. There are different types of triggers – for update,    for insert and for delete. Each trigger is associated with a single database    table.</p>
<h3 class="red">U</h3>
<p><strong>UPDATE</strong><br />
The UPDATE is a SQL command used to edit/update existing records in a database    table.</p>
<h3 class="red">V</h3>
<h3 class="red">W</h3>
<h3 class="red">X</h3>
<h3 class="red">Y</h3>
<h3 class="red">Z</h3>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://senthoor.info/blogs/2008/06/25/sql-database-glossary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle connection strings</title>
		<link>http://senthoor.info/blogs/2008/06/25/oracle-connection-strings/</link>
		<comments>http://senthoor.info/blogs/2008/06/25/oracle-connection-strings/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 04:15:03 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Connection Strings]]></category>

		<guid isPermaLink="false">http://senthoor.info/blogs/2008/06/25/oracle-connection-strings/</guid>
		<description><![CDATA[Oracle ODBC connection strings Open connection to Oracle database using ODBC &#8220;Driver= {Microsoft ODBCforOracle};Server=Your_Oracle_Server.world;Uid=Your_Username;Pwd=Your_Password;&#8221; Oracle OLE DB &#38; OleDbConnection (.NET framework) connection strings Open connection to Oracle database with standard security: 1. &#8220;Provider=MSDAORA;Data Source= Your_Oracle_Database;UserId=Your_Username;Password=Your_Password;&#8221; 2. &#8220;Provider= OraOLEDB.Oracle;Your_Oracle_Database;UserId=Your_Username;Password=Your_Password;&#8221; Open trusted connection to Oracle database &#8220;Provider= OraOLEDB.Oracle;DataSource=Your_Oracle_Database;OSAuthent=1;&#8221;]]></description>
			<content:encoded><![CDATA[<p><span class="main"></p>
<h2>Oracle ODBC connection strings</h2>
<p><strong>Open connection to Oracle database using ODBC</strong><br />
&#8220;Driver=  {Microsoft ODBCforOracle};Server=Your_Oracle_Server.world;Uid=Your_Username;Pwd=Your_Password;&#8221;</p>
<h2>Oracle OLE DB &amp; OleDbConnection (.NET framework) connection strings</h2>
<p><strong>Open connection to Oracle database with standard security:</strong><br />
1. &#8220;Provider=MSDAORA;Data Source= Your_Oracle_Database;UserId=Your_Username;Password=Your_Password;&#8221;<br />
2. &#8220;Provider= OraOLEDB.Oracle;Your_Oracle_Database;UserId=Your_Username;Password=Your_Password;&#8221;</p>
<p><strong>Open trusted connection to Oracle database</strong><br />
&#8220;Provider= OraOLEDB.Oracle;DataSource=Your_Oracle_Database;OSAuthent=1;&#8221;</span></p>
]]></content:encoded>
			<wfw:commentRss>http://senthoor.info/blogs/2008/06/25/oracle-connection-strings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL connection strings</title>
		<link>http://senthoor.info/blogs/2008/06/25/mysql-connection-strings/</link>
		<comments>http://senthoor.info/blogs/2008/06/25/mysql-connection-strings/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 04:14:21 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Connection Strings]]></category>

		<guid isPermaLink="false">http://senthoor.info/blogs/2008/06/25/mysql-connection-strings/</guid>
		<description><![CDATA[MySQL ODBC connection strings Open connection to local MySQL database using MySQL ODBC 3.51 Driver &#8220;Provider=MSDASQL; DRIVER={MySQL ODBC 3.51Driver}; SERVER= localhost; DATABASE=Your_MySQL_Database; UID= Your_Username; PASSWORD=Your_Password; OPTION=3&#8243; MySQL OLE DB &#38; OleDbConnection (.NET framework) connection strings Open connection to MySQL database: &#8220;Provider=MySQLProv;Data Source=Your_MySQL_Database;User Id=Your_Username; Password=Your_Password;&#8221;]]></description>
			<content:encoded><![CDATA[<p><span class="main"></p>
<h2>MySQL ODBC connection strings</h2>
<p><strong>Open connection to local MySQL database using MySQL ODBC 3.51 Driver</strong><br />
&#8220;Provider=MSDASQL; DRIVER={MySQL ODBC     3.51Driver}; SERVER=   localhost; DATABASE=Your_MySQL_Database; UID=   Your_Username; PASSWORD=Your_Password; OPTION=3&#8243;</p>
<h2>MySQL OLE DB &amp; OleDbConnection (.NET framework) connection strings</h2>
<p><strong>Open connection to MySQL database:</strong><br />
&#8220;Provider=MySQLProv;Data Source=Your_MySQL_Database;User Id=Your_Username; Password=Your_Password;&#8221;</span></p>
]]></content:encoded>
			<wfw:commentRss>http://senthoor.info/blogs/2008/06/25/mysql-connection-strings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MS Access connection strings</title>
		<link>http://senthoor.info/blogs/2008/06/25/ms-access-connection-strings/</link>
		<comments>http://senthoor.info/blogs/2008/06/25/ms-access-connection-strings/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 04:11:15 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Connection Strings]]></category>

		<guid isPermaLink="false">http://senthoor.info/blogs/2008/06/25/ms-access-connection-strings/</guid>
		<description><![CDATA[MS Access ODBC connection strings Standard Security: &#8220;Driver= {MicrosoftAccessDriver(*.mdb)};DBQ=C:\App1\Your_Database_Name.mdb; Uid=Your_Username;Pwd=Your_Password;&#8221; Workgroup: &#8220;Driver={Microsoft Access Driver (*.mdb)}; Dbq=C:\App1\Your_Database_Name.mdb; SystemDB=C:\App1\Your_Database_Name.mdw;&#8221; Exclusive &#8220;Driver={Microsoft Access Driver (*.mdb)}; DBQ=C:\App1\Your_Database_Name.mdb; Exclusive=1; Uid=Your_Username; Pwd=Your_Password;&#8221; MS Access OLE DB &#38; OleDbConnection (.NET framework) connection strings Open connection to Access database: &#8220;Provider=Microsoft.Jet.OLEDB.4.0; Data Source=c:\App1\Your_Database_Name.mdb; User Id=admin; Password=&#8221; Open connection to Access database using Workgroup (System [...]]]></description>
			<content:encoded><![CDATA[<p><span class="main"></span></p>
<h2>MS Access ODBC connection strings</h2>
<p><strong>Standard Security:</strong><br />
&#8220;Driver=       {MicrosoftAccessDriver(*.mdb)};DBQ=C:\App1\Your_Database_Name.mdb;<br />
Uid=Your_Username;Pwd=Your_Password;&#8221;</p>
<p><strong>Workgroup:</strong><br />
&#8220;Driver={Microsoft Access Driver (*.mdb)}; Dbq=C:\App1\Your_Database_Name.mdb;     SystemDB=C:\App1\Your_Database_Name.mdw;&#8221;</p>
<p><strong>Exclusive</strong> &#8220;Driver={Microsoft Access Driver (*.mdb)};     DBQ=C:\App1\Your_Database_Name.mdb; Exclusive=1; Uid=Your_Username;     Pwd=Your_Password;&#8221;</p>
<h2>MS Access OLE DB &amp; OleDbConnection (.NET framework) connection strings</h2>
<p><strong>Open connection to Access database:</strong><br />
&#8220;Provider=Microsoft.Jet.OLEDB.4.0; Data Source=c:\App1\Your_Database_Name.mdb; User Id=admin; Password=&#8221;</p>
<p><strong>Open connection to Access database using Workgroup (System database):</strong><br />
&#8220;Provider=Microsoft.Jet.OLEDB.4.0; Data Source=c:\App1\Your_Database_Name.mdb; Jet OLEDB:System Database=c:\App1\Your_System_Database_Name.mdw&#8221;</p>
<p><strong>Open connection to password protected Access database:</strong><br />
&#8220;Provider=Microsoft.Jet.OLEDB.4.0; Data Source=c:\App1\Your_Database_Name.mdb; Jet OLEDB:Database Password=Your_Password&#8221;</p>
<p><strong>Open connection to Access database located on a network share:</strong><br />
&#8220;Provider=Microsoft.Jet.OLEDB.4.0; Data Source=\\Server_Name\Share_Name\Share_Path\Your_Database_Name.mdb&#8221;</p>
<p><strong>Open connection to Access database located on a remote server:</strong><br />
&#8220;Provider=MS Remote; Remote Server=http://Your-Remote-Server-IP; Remote Provider=Microsoft.Jet.OLEDB.4.0; Data Source=c:\App1\Your_Database_Name.mdb&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://senthoor.info/blogs/2008/06/25/ms-access-connection-strings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server connection strings</title>
		<link>http://senthoor.info/blogs/2008/06/25/sql-server-connection-strings/</link>
		<comments>http://senthoor.info/blogs/2008/06/25/sql-server-connection-strings/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 03:54:18 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Connection Strings]]></category>

		<guid isPermaLink="false">http://senthoor.info/blogs/2008/06/25/sql-server-connection-strings/</guid>
		<description><![CDATA[SQL ODBC connection strings Standard Security:&#60; br&#62; &#8220;Driver={SQLServer};Server=Your_Server_Name; Database=Your_Database_Name;Uid=Your_Username;Pwd=Your_Password;&#8221; Trusted connection:&#60; br&#62; &#8220;Driver={SQLServer};Server=Your_Server_Name; Database=Your_Database_Name;Trusted_Connection=yes;&#8221; SQL OLE DB connection strings Standard Security: &#8220;Provider=SQLOLEDB;Data Source=Your_Server_Name;Initial Catalog= Your_Database_Name;UserId=Your_Username;Password=Your_Password;&#8221; Trusted connection: &#8220;Provider=SQLOLEDB;Data Source=Your_Server_Name; Initial Catalog=Your_Database_Name;Integrated Security=SSPI;&#8221; SQL OleDbConnection .NET strings Standard Security: &#8220;Provider=SQLOLEDB;Data Source=Your_Server_Name;Initial Catalog= Your_Database_Name;UserId=Your_Username;Password=Your_Password;&#8221; Trusted connection: &#8220;Provider=SQLOLEDB;Data Source=Your_Server_Name; Initial Catalog=Your_Database_Name;Integrated Security=SSPI;&#8221; SQL SqlConnection .NET strings Standard Security: [...]]]></description>
			<content:encoded><![CDATA[<p><span class="main"></p>
<h2>SQL ODBC connection strings</h2>
<p><strong>Standard Security:</strong>&lt;    br&gt;     &#8220;Driver={SQLServer};Server=Your_Server_Name;<br />
Database=Your_Database_Name;Uid=Your_Username;Pwd=Your_Password;&#8221;</p>
<p><strong>Trusted connection:</strong>&lt;    br&gt; &#8220;Driver={SQLServer};Server=Your_Server_Name;<br />
Database=Your_Database_Name;Trusted_Connection=yes;&#8221;</p>
<h2>SQL OLE DB connection strings</h2>
<p><strong>Standard Security:</strong><br />
&#8220;Provider=SQLOLEDB;Data Source=Your_Server_Name;Initial Catalog= Your_Database_Name;UserId=Your_Username;Password=Your_Password;&#8221;</p>
<p><strong>Trusted connection:</strong><br />
&#8220;Provider=SQLOLEDB;Data Source=Your_Server_Name;<br />
Initial Catalog=Your_Database_Name;Integrated Security=SSPI;&#8221;</p>
<h2>SQL OleDbConnection .NET strings</h2>
<p><strong>Standard Security:</strong><br />
&#8220;Provider=SQLOLEDB;Data Source=Your_Server_Name;Initial Catalog= Your_Database_Name;UserId=Your_Username;Password=Your_Password;&#8221;</p>
<p><strong>Trusted connection:</strong><br />
&#8220;Provider=SQLOLEDB;Data Source=Your_Server_Name;<br />
Initial Catalog=Your_Database_Name;Integrated Security=SSPI;&#8221;</p>
<h2>SQL SqlConnection .NET strings</h2>
<p><strong>Standard Security:</strong><br />
1. &#8220;Data Source=Your_Server_Name;Initial Catalog= Your_Database_Name;UserId=Your_Username;Password=Your_Password;&#8221; &lt; br&gt;2. &#8220;Server=Your_Server_Name;Database=Your_Database_Name;<br />
UserID=Your_Username;Password=Your_Password;Trusted_Connection=False&#8221;</p>
<p><strong>Trusted connection:</strong><br />
1. &#8220;Data Source=Your_Server_Name;Initial Catalog=Your_Database_Name;Integrated Security=SSPI;&#8221;<br />
2.&#8221;Server=Your_Server_Name;Database=Your_Database_Name;Trusted_Connection=True;&#8221;<br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://senthoor.info/blogs/2008/06/25/sql-server-connection-strings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

