<?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>MEMISO &#187; SQL</title>
	<atom:link href="http://www.memiso.com/tag/sql/feed" rel="self" type="application/rss+xml" />
	<link>http://www.memiso.com</link>
	<description>Little Solutions For Big Problems</description>
	<lastBuildDate>Thu, 11 Mar 2010 20:19:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Database Connections in PHP</title>
		<link>http://www.memiso.com/database-connections-in-php.html</link>
		<comments>http://www.memiso.com/database-connections-in-php.html#comments</comments>
		<pubDate>Fri, 02 Oct 2009 00:07:36 +0000</pubDate>
		<dc:creator>Mehmatrix</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Connections]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[MDB]]></category>
		<category><![CDATA[MS Access]]></category>
		<category><![CDATA[MSSQL]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.memiso.com/?p=339</guid>
		<description><![CDATA[
1.1) MYSQL Connection in PHP
We can use mysql_connect and mysql_select_db functions to create our connections. For closing the connections there is mysql_close function. These are basic functions of managing connections in PHP. There are also a lot of classes made by developers for free.

Sturcture 1.0:
12345&#60;?php
$ConnectionName = mysql_connect&#40;'MyHost', 'MyLogin', 'MyPassword'&#41;;
$DatabaseConnection = mysql_select_db&#40;'MyDatabaseName', $ConnectionName&#41;;
mysql_close&#40;$ConnectionName&#41;;
?&#62;

You can determine the [...]]]></description>
		<wfw:commentRss>http://www.memiso.com/database-connections-in-php.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Database Connections in ASP</title>
		<link>http://www.memiso.com/database-connections-in-asp.html</link>
		<comments>http://www.memiso.com/database-connections-in-asp.html#comments</comments>
		<pubDate>Thu, 24 Sep 2009 23:10:06 +0000</pubDate>
		<dc:creator>Mehmatrix</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[ADODB]]></category>
		<category><![CDATA[Connections]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Connections]]></category>
		<category><![CDATA[MS Access]]></category>
		<category><![CDATA[MSSQL]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.memiso.com/?p=307</guid>
		<description><![CDATA[
1.1) MSSQL ( Microsoft SQL Server ) Connection in ASP

Sturcture 1.1:
1234&#60;%
Set ConnectionName=Server.CreateObject&#40;&#34;Adodb.Connection&#34;&#41;
ConnectionName.Open &#34;driver={SQL Server};server=MyHost;uid=MyLogin;pwd=MyPassword;database=MyDatabaseName&#34;
%&#62;
You can determine the server, uid, pwd and database variables as you need. 
Example 1.1:
1234&#60;%
Set MyConn=Server.CreateObject&#40;&#34;Adodb.Connection&#34;&#41;
MyConn.Open &#34;driver={SQL Server};server=127.0.0.1;uid=memisologin;pwd=memiso;database=memisodb&#34; 
%&#62;
1.2) MDB ( Microsoft Access Database ) Connection in ASP
Sturcture 1.2:
1234&#60;%
Set ConnectionName=Server.CreateObject&#40;&#34;ADODB.Connection&#34;&#41;
ConnectionName.Open &#34;PROVIDER=MSDASQL; DRIVER={Microsoft Access Driver (*.mdb)};DBQ=&#34; &#38; server.mappath&#40;DatabasePath&#41;
%&#62;
You can determine the DatabasePath variable [...]]]></description>
		<wfw:commentRss>http://www.memiso.com/database-connections-in-asp.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Database Connections in Java</title>
		<link>http://www.memiso.com/database-connections-in-java.html</link>
		<comments>http://www.memiso.com/database-connections-in-java.html#comments</comments>
		<pubDate>Thu, 24 Sep 2009 22:38:06 +0000</pubDate>
		<dc:creator>Mehmatrix</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Connections]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Connections]]></category>
		<category><![CDATA[jdbc]]></category>
		<category><![CDATA[odbc]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[sun]]></category>

		<guid isPermaLink="false">http://www.memiso.com/?p=297</guid>
		<description><![CDATA[Before giving structures, we need to notice a little detail about making database connections in Java. All database connections must be stated in try and catch statements, because there is a possibility of getting an exception. That’s way, we try to make our connection in try statement. If our connection attempt fails, that means there [...]]]></description>
		<wfw:commentRss>http://www.memiso.com/database-connections-in-java.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
