<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Think Differently</title>
	<atom:link href="http://vidyapsi.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://vidyapsi.wordpress.com</link>
	<description>Vidya</description>
	<lastBuildDate>Thu, 24 Nov 2011 12:59:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='vidyapsi.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Think Differently</title>
		<link>http://vidyapsi.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://vidyapsi.wordpress.com/osd.xml" title="Think Differently" />
	<atom:link rel='hub' href='http://vidyapsi.wordpress.com/?pushpress=hub'/>
		<item>
		<title># java.sql.SQLException: ORA-00911: invalid character</title>
		<link>http://vidyapsi.wordpress.com/2010/01/11/java-sql-sqlexception-ora-00911-invalid-character/</link>
		<comments>http://vidyapsi.wordpress.com/2010/01/11/java-sql-sqlexception-ora-00911-invalid-character/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 13:19:43 +0000</pubDate>
		<dc:creator>vidya</dc:creator>
				<category><![CDATA[JDBC]]></category>
		<category><![CDATA[invalid character]]></category>

		<guid isPermaLink="false">http://vidyapsi.wordpress.com/?p=228</guid>
		<description><![CDATA[If you are getting this exception while running a JDBC query from a Java program check if your query is having semicolon (&#8220;;&#8221;) at the end of it or anywhere in the query. You should not have semicolon in a JDBC query. Posted in JDBC<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vidyapsi.wordpress.com&amp;blog=3675183&amp;post=228&amp;subd=vidyapsi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://vidyapsi.wordpress.com/2010/01/11/java-sql-sqlexception-ora-00911-invalid-character/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d557b49013a24459d1999a1098074f5?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">vidya</media:title>
		</media:content>
	</item>
		<item>
		<title>Checking focus in Javascript</title>
		<link>http://vidyapsi.wordpress.com/2009/11/09/checking-focus-in-javascript/</link>
		<comments>http://vidyapsi.wordpress.com/2009/11/09/checking-focus-in-javascript/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 06:44:43 +0000</pubDate>
		<dc:creator>vidya</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://vidyapsi.wordpress.com/?p=224</guid>
		<description><![CDATA[&#60;script&#62; // Sets the form focus to the first element found in forms[0] that // is a textfield or text area function setFocus() { // Bail if no form on page if (document.forms[0] == null) return; // Iterate though elements for (var i = 0; i &#60; document.forms[0].elements.length; i++) { e = document.forms[0].elements[i]; if ((e.type [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vidyapsi.wordpress.com&amp;blog=3675183&amp;post=224&amp;subd=vidyapsi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://vidyapsi.wordpress.com/2009/11/09/checking-focus-in-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d557b49013a24459d1999a1098074f5?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">vidya</media:title>
		</media:content>
	</item>
		<item>
		<title>Error while converting Excel data to XML  Using POI</title>
		<link>http://vidyapsi.wordpress.com/2009/07/16/error-while-converting-excel-data-to-xml-using-poi/</link>
		<comments>http://vidyapsi.wordpress.com/2009/07/16/error-while-converting-excel-data-to-xml-using-poi/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 12:25:19 +0000</pubDate>
		<dc:creator>vidya</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[ExcelToXml]]></category>
		<category><![CDATA[POI]]></category>

		<guid isPermaLink="false">http://vidyapsi.wordpress.com/?p=220</guid>
		<description><![CDATA[Error: Exception in thread &#8220;main&#8221; java.lang.IllegalStateException: Cannot get a text value from a numeric cell at org.apache.poi.hssf.usermodel.HSSFCell.typeMismatch(HSSFCell.java:620) at org.apache.poi.hssf.usermodel.HSSFCell.getRichStringCellValue(HSSFCell.java:699) at org.apache.poi.hssf.usermodel.HSSFCell.getStringCellValue(HSSFCell.java:682) at com.apress.excel.ExcelToXML_test.generateXML(ExcelToXML_test.java:86) at com.apress.excel.ExcelToXML_test.main(ExcelToXML_test.java:323) Solution: Its a type mismatch Numerical problem in POI, Because in the excel sheet u somewhere used numerical values, but you will be try to fetch as a String value.  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vidyapsi.wordpress.com&amp;blog=3675183&amp;post=220&amp;subd=vidyapsi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://vidyapsi.wordpress.com/2009/07/16/error-while-converting-excel-data-to-xml-using-poi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d557b49013a24459d1999a1098074f5?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">vidya</media:title>
		</media:content>
	</item>
		<item>
		<title>Difference between Struts and Spring</title>
		<link>http://vidyapsi.wordpress.com/2009/05/26/difference-between-struts-and-spring/</link>
		<comments>http://vidyapsi.wordpress.com/2009/05/26/difference-between-struts-and-spring/#comments</comments>
		<pubDate>Tue, 26 May 2009 12:11:59 +0000</pubDate>
		<dc:creator>vidya</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Spring]]></category>

		<guid isPermaLink="false">http://vidyapsi.wordpress.com/?p=216</guid>
		<description><![CDATA[SNO Struts Spring 1 Struts is an MVC framework for developing web applications Spring is an End to End framework for developing enterprise applications 2 It’s easy to develop, Structured view/presentation layer of the MVC applications. it’s a Lightweight Invention of Control and Aspect Oriented Container Framework It’s adoptable and easy to run light weight [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vidyapsi.wordpress.com&amp;blog=3675183&amp;post=216&amp;subd=vidyapsi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://vidyapsi.wordpress.com/2009/05/26/difference-between-struts-and-spring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d557b49013a24459d1999a1098074f5?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">vidya</media:title>
		</media:content>
	</item>
		<item>
		<title>Rails Migration</title>
		<link>http://vidyapsi.wordpress.com/2009/05/26/rails-migration/</link>
		<comments>http://vidyapsi.wordpress.com/2009/05/26/rails-migration/#comments</comments>
		<pubDate>Tue, 26 May 2009 06:20:58 +0000</pubDate>
		<dc:creator>vidya</dc:creator>
				<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://vidyapsi.wordpress.com/?p=214</guid>
		<description><![CDATA[add_column Creates a new column on the specified table. add_column :table_name, :column_name, :column_type, { options } :null =&#62; true or false &#8211; if false, the underlying column has a NOT NULL constraint added by the database engine :limit =&#62; size &#8211; set a limit on the size of the field :default =&#62; value &#8211; set [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vidyapsi.wordpress.com&amp;blog=3675183&amp;post=214&amp;subd=vidyapsi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://vidyapsi.wordpress.com/2009/05/26/rails-migration/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d557b49013a24459d1999a1098074f5?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">vidya</media:title>
		</media:content>
	</item>
		<item>
		<title>Rake tasks</title>
		<link>http://vidyapsi.wordpress.com/2009/05/26/rake-tasks/</link>
		<comments>http://vidyapsi.wordpress.com/2009/05/26/rake-tasks/#comments</comments>
		<pubDate>Tue, 26 May 2009 06:18:33 +0000</pubDate>
		<dc:creator>vidya</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Rake]]></category>
		<category><![CDATA[Rake tasks]]></category>

		<guid isPermaLink="false">http://vidyapsi.wordpress.com/?p=210</guid>
		<description><![CDATA[Generate migration ruby script/generate migration your_chosen_migration_name run all unapplied migrations rake db:migrate migrate database to specific version rake db:migrate VERSION=18 use your migrations to recreate the tables in the testing or production databases rake db:migrate RAILS_ENV=production Create a db/schema.rb file that can be portably used against any database supported by ActiveRecord rake db:schema:dump Load a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vidyapsi.wordpress.com&amp;blog=3675183&amp;post=210&amp;subd=vidyapsi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://vidyapsi.wordpress.com/2009/05/26/rake-tasks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d557b49013a24459d1999a1098074f5?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">vidya</media:title>
		</media:content>
	</item>
		<item>
		<title>Multiple database search using Lucene</title>
		<link>http://vidyapsi.wordpress.com/2009/05/21/multiple-database-search-using-lucene/</link>
		<comments>http://vidyapsi.wordpress.com/2009/05/21/multiple-database-search-using-lucene/#comments</comments>
		<pubDate>Thu, 21 May 2009 06:14:42 +0000</pubDate>
		<dc:creator>vidya</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[JDBC]]></category>
		<category><![CDATA[database seach]]></category>
		<category><![CDATA[db search in java]]></category>
		<category><![CDATA[lucene database search]]></category>
		<category><![CDATA[Multiple database search using Lucene]]></category>

		<guid isPermaLink="false">http://vidyapsi.wordpress.com/?p=203</guid>
		<description><![CDATA[The muliple database search using lucene is just i am writing the logic how its working. we will see the step by step how its working. Step 1: create the application and include the required jar files has given below. lucene-core-2.0.0.jar mysql connector servlet-api Step2 : create the below files DbConnection.java &#8211; this containg mysql [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vidyapsi.wordpress.com&amp;blog=3675183&amp;post=203&amp;subd=vidyapsi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://vidyapsi.wordpress.com/2009/05/21/multiple-database-search-using-lucene/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d557b49013a24459d1999a1098074f5?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">vidya</media:title>
		</media:content>
	</item>
		<item>
		<title>Update iframe src using javascript onload</title>
		<link>http://vidyapsi.wordpress.com/2009/04/22/update-iframe-src-using-javascript-onload/</link>
		<comments>http://vidyapsi.wordpress.com/2009/04/22/update-iframe-src-using-javascript-onload/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 11:48:16 +0000</pubDate>
		<dc:creator>vidya</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[iframes using javascript]]></category>
		<category><![CDATA[update iframe src]]></category>
		<category><![CDATA[Update iframe src using javascript onload]]></category>

		<guid isPermaLink="false">http://vidyapsi.wordpress.com/?p=199</guid>
		<description><![CDATA[when we are redirect the url from one page to another page, we may confuse how to update the iframe src with the browser parameter values if you using iframe, the solution is, http://localhost/test_url/search.html?text=test and iframe will be &#60;iframe id=&#8221;myFrame&#8221; frameborder=&#8221;0&#8243; scrolling=&#8221;auto&#8221; src =&#8221;http://localhost:8080/regain/search.jsp?query=&#8221; width=&#8221;100%&#8221; height=&#8221;500&#8243;&#62; &#60;p&#62;Your browser does not support iframes.&#60;/p&#62; &#60;/iframe&#62;&#60;/td&#62; then write [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vidyapsi.wordpress.com&amp;blog=3675183&amp;post=199&amp;subd=vidyapsi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://vidyapsi.wordpress.com/2009/04/22/update-iframe-src-using-javascript-onload/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d557b49013a24459d1999a1098074f5?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">vidya</media:title>
		</media:content>
	</item>
		<item>
		<title>how to call Stored Procedures in Java and spring</title>
		<link>http://vidyapsi.wordpress.com/2009/04/02/how-to-call-stored-procedures-in-java/</link>
		<comments>http://vidyapsi.wordpress.com/2009/04/02/how-to-call-stored-procedures-in-java/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 08:58:51 +0000</pubDate>
		<dc:creator>vidya</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[JDBC]]></category>
		<category><![CDATA[how to call Stored Procedures in Java]]></category>
		<category><![CDATA[how to call Stored Procedures in Java and spring]]></category>
		<category><![CDATA[Stored Proceducers in java]]></category>
		<category><![CDATA[stored procedures using spring]]></category>

		<guid isPermaLink="false">http://vidyapsi.wordpress.com/?p=188</guid>
		<description><![CDATA[Step 1: Create new stored procedure in mysql. DELIMITER $$ DROP PROCEDURE IF EXISTS `test_db`.`test`$$ CREATE PROCEDURE `test`() BEGIN truncate table person; truncate table error_log; END$$ DELIMITER ; Step 2:Call Stored procedure into java code. public static void main(String[] args) { Connection con = null; String url = &#8220;jdbc:mysql://localhost:3306/test_db&#8221;; String driver = &#8220;com.mysql.jdbc.Driver&#8221;; String user [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vidyapsi.wordpress.com&amp;blog=3675183&amp;post=188&amp;subd=vidyapsi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://vidyapsi.wordpress.com/2009/04/02/how-to-call-stored-procedures-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d557b49013a24459d1999a1098074f5?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">vidya</media:title>
		</media:content>
	</item>
		<item>
		<title>Plain JDBC vs. Spring JDBC</title>
		<link>http://vidyapsi.wordpress.com/2009/04/02/plain-jdbc-vs-spring-jdbc/</link>
		<comments>http://vidyapsi.wordpress.com/2009/04/02/plain-jdbc-vs-spring-jdbc/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 06:39:16 +0000</pubDate>
		<dc:creator>vidya</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Spring]]></category>
		<category><![CDATA[difference between jsdb and spring jdbc]]></category>
		<category><![CDATA[jdbc vs spring jdbc]]></category>
		<category><![CDATA[spring jdbc]]></category>

		<guid isPermaLink="false">http://vidyapsi.wordpress.com/?p=185</guid>
		<description><![CDATA[JDBC Spring JDBC DriverManager/ DataSource DataSource Statement/ PreparedStatement/ CallableStatement JdbcTemplate/ SimpleJdbcaTemplate, SimpleJdbcCall, SimpleJdbcInsert, MappingSqlQuery/ StoredProcedure ResultSet/RowSet POJOs / List of POJOs or Maps / SqlRowSet Posted in Java, Spring<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vidyapsi.wordpress.com&amp;blog=3675183&amp;post=185&amp;subd=vidyapsi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://vidyapsi.wordpress.com/2009/04/02/plain-jdbc-vs-spring-jdbc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d557b49013a24459d1999a1098074f5?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">vidya</media:title>
		</media:content>
	</item>
	</channel>
</rss>
