<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>www.Senthoor.info</title>
	<link>http://senthoor.info/blogs</link>
	<description></description>
	<lastBuildDate>Fri, 10 Oct 2008 12:37:14 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.0.5" -->

	<item>
		<title>HTML &#8211; Introduction</title>
		<description><![CDATA[Hyper Text Markup Language &#8211; HTML Welcome to&#160;Senthoor.info&#8216;s HTML Tutorial. Here you will learn how the basics of the Hyper Text Markup Language (HTML), so that you may make your own web pages like the one you are viewing right now. HTML is not a programming language, but rather a markup language. If you already [...]]]></description>
		<link>http://senthoor.info/blogs/2008/07/10/html-introduction/</link>
			</item>
	<item>
		<title>SQL Database Glossary</title>
		<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>
		<link>http://senthoor.info/blogs/2008/06/25/sql-database-glossary/</link>
			</item>
	<item>
		<title>Oracle connection strings</title>
		<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>
		<link>http://senthoor.info/blogs/2008/06/25/oracle-connection-strings/</link>
			</item>
	<item>
		<title>MySQL connection strings</title>
		<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>
		<link>http://senthoor.info/blogs/2008/06/25/mysql-connection-strings/</link>
			</item>
	<item>
		<title>MS Access connection strings</title>
		<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>
		<link>http://senthoor.info/blogs/2008/06/25/ms-access-connection-strings/</link>
			</item>
	<item>
		<title>SQL Server connection strings</title>
		<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>
		<link>http://senthoor.info/blogs/2008/06/25/sql-server-connection-strings/</link>
			</item>
	<item>
		<title>My Play List</title>
		<description><![CDATA[]]></description>
		<link>http://senthoor.info/blogs/2008/05/20/my-play-list/</link>
			</item>
	<item>
		<title>AJAX Suggest Source Code</title>
		<description><![CDATA[AJAX Source Code to Suggest Example The source code below belongs to the AJAX example on the previous page. You can copy and paste it, and try it yourself. The AJAX HTML Page This is the HTML page. It contains a simple HTML form and a link to a JavaScript. &#60;html&#62; &#60;head&#62; &#60;script src="clienthint.js"&#62;&#60;/script&#62; &#60;/head&#62; [...]]]></description>
		<link>http://senthoor.info/blogs/2008/02/29/ajax-suggest-source-code/</link>
			</item>
	<item>
		<title>AJAX Suggest Example</title>
		<description><![CDATA[We have seen that AJAX can be used to create more interactive applications. AJAX Suggest Example In the AJAX example below we will demonstrate how a web page can communicate with a web server online as a user enters data into a standard HTML form. Type a Name in the Box Below First Name: Suggestions: [...]]]></description>
		<link>http://senthoor.info/blogs/2008/02/29/ajax-suggest-example/</link>
			</item>
	<item>
		<title>AJAX &#8211; The Server-Side Script</title>
		<description><![CDATA[AJAX &#8211; The Server-Side ASP Script Now we are going to create the script that displays the current server time. The responseText property (explained in the previous chapter) will store the data returned from the server. Here we want to send back the current time. The code in &#8220;time.asp&#8221; looks like this: &#60;% response.expires=-1 response.write(time) [...]]]></description>
		<link>http://senthoor.info/blogs/2008/02/28/ajax-the-server-side-script/</link>
			</item>
</channel>
</rss>

