<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" >
	<title>Javas Blogs global</title>
	<link rel="alternate" type="text/html" href="http://www.javasblogs.com/" />
	<tagline></tagline>
	<modified></modified>
	<generator url="" version="">BeVerbal RSS Feed Generator</generator>
	<entry>
		<author>
			<name>~Ray &lt;dforums@hotmail.com&gt;</name>
		</author>
		<title>Accessing resultset from db2</title>
		<link rel="alternate" type="text/html" href="http://resultset.javasblogs.com/article/51561599.html" />
		<modified>2008-11-13T12:19+00:00
		<content type="html" mode="escaped" xml:base="">Welcome to the dBforums forums. You are currently viewing our boards as a guest which gives you limited access to view most &lt;a href=&#039;http://discussions.wordblogs.net/&#039;&gt;discussions&lt;/a&gt; articles and access our other FREE features. By joining our free community you will have access to post topics communicate privately with other members (PM) respond to polls upload your own &lt;a href=&#039;http://photos.picturesblogs.com/&#039;&gt;photos&lt;/a&gt; and access many other special features. Registration is fast simple and &lt;a href=&#039;http://absolutely.musicalblogs.com/&#039;&gt;absolutely&lt;/a&gt; free so please. ! If you have any problems with the registration process or your account login please contact. If you prefer not to see double-underlined words and corresponding ads place your cursor 
I have db2/400 set up as linked server and need to call a sp that returns &lt;a href=&#039;http://company.wordblogs.net/&#039;&gt;company&lt;/a&gt; codes. After executing the sp I do not see any resultset in Sequel Server even if I am trying to load the result set &lt;a href=&#039;http://into.wordsblogs.com/&#039;&gt;into&lt;/a&gt; a temp table. I know the connection is &lt;a href=&#039;http://working.musicalblogs.com/&#039;&gt;working&lt;/a&gt; beacuse when I do a straight select it brings back records. Also I have tested the sp using iSeries navigator and it brings back records. At &lt;a href=&#039;http://this.funnyblogs.net/&#039;&gt;this&lt;/a&gt; point I&#039;m not sure where the problem is. Maybe my stored procedure is wrong?? Can anyone &lt;a href=&#039;http://help.lifeadviceblogs.com/&#039;&gt;help&lt;/a&gt; please.... My sql code:create table #tempTable (o_drky char(10) o_drdl01 char(50))insert into #temptable (o_drky o_drdl01) Exec (&#039;Call QGPL get_all_companies&#039;) AT AS400SRV_IBMDASQL_OLEDBselect * from #temptableMy sp on db2: create procedure get_all_companies  (out o_drky char(10).  out o_drdl01 char(30))  result set 1  language sql  begin  declare c1 cursor with return for  select drky drdl01  from vgiprdcom/f0005  where drsy = &#039;00&#039; and drrt = &#039;01&#039;;  open c1;  set result sets cursor c1;  end;
Copyright &amp;copy;2001-2008 dBforums com. All Rights Reserved. A &lt;a href=&#039;http://division.reserveblogs.com/&#039;&gt;division&lt;/a&gt; of.    Other iNET Interactive Sites: | | | |   &lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.forexgroups.com&quot;&gt;&lt;font size=5&gt;Forex Groups&lt;/a&gt; - &lt;a href=&quot;http://www.tipsontrading.com&quot;&gt;Tips on Trading&lt;/a&gt;&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;Related article:&lt;br&gt;
&lt;a href=&#039;http://www.dbforums.com/showthread.php?t=1623710&amp;goto=newpost&#039;&gt;http://www.dbforums.com/showthread.php?t=1623710&amp;goto=newpost&lt;/a&gt;
</content>
	</entry>
	<entry>
		<author>
			<name>~Ray &lt;dforums@hotmail.com&gt;</name>
		</author>
		<title>Transfer complete ResultSet using Sockets</title>
		<link rel="alternate" type="text/html" href="http://resultset.javasblogs.com/article/50819986.html" />
		<modified>2007-12-15T15:03+00:00
		<content type="html" mode="escaped" xml:base="">hello Every be.. I was &lt;a href=&#039;http://working.musicalblogs.com/&#039;&gt;working&lt;/a&gt; in a Client Server Databse Related Structure.. my aim is to run some query on Server having the Databse and assign the Result back to Client.. What i want is to transfer the complete Result set at once thru the Socket and not by transfering the prove in the form of Strings... out println(rs); // At Server..... ResultSet = in readLine(rs); // at Client.. something desire this..... Thanx in go....
You don&#039;t understand what a ResultSet is and how it works. For starters &lt;a href=&#039;http://this.funnyblogs.net/&#039;&gt;this&lt;/a&gt; is a stupendously bad idea if it even worked. But you&#039;re saved by the fact that it is impossible so you&#039;ll undergo to give it up.
jmi_comp wrote:hello Every Body.. I was working in a Client Server Databse Related Structure.. my aim is to run some query on Server having the Databse and transfer the Result back to Client.. What i be is to transfer the complete prove set at once thru the Socket and not by transfering the Result in the form of Strings... out println(rs); // At Server..... ResultSet = in readLine(rs); // at Client.. something like this..... Thanx in go....
First basic thing which you ought to know is that you can stream the state of the Objects which are serializable(only if we &lt;a href=&#039;http://arrange.wordblogs.net/&#039;&gt;arrange&lt;/a&gt; an disapprove you can send it &lt;a href=&#039;http://through.wordsblogs.com/&#039;&gt;through&lt;/a&gt; a network). ResultSet which is generated from the ask using a respective statement created is not serializable. Then how is that we can send results &lt;a href=&#039;http://over.over80blogs.com/&#039;&gt;over&lt;/a&gt; network or store it on a media. There is a concept called RowSet/CachedRowSets in JDBC 2.0+ specification which addresses this air we can arrange ResultSet &lt;a href=&#039;http://into.wordsblogs.com/&#039;&gt;into&lt;/a&gt; a RowSet using few RowSet Implementations. CachedRowSetImpl is one them. Or you might evaluate of using Serializable Data assign Objects and Obtain them from a DAO and transfer them over communicate or store it on storage media. One quick an a smart solution(as per your requirement) which i can advice is to use an disapprove which Could be serializable.
// getting a DTO VIA Delagate using a ServiceLocator. 
CachedRowSet crs = ServiceLocator getSpecificDelegate() getRelatedDAO getResults(); objStream writeObject(crs); objStream color(); 
ObjectInputStream(o); crs = (CachedRowSet)objInput readObject(); 
/* or one might think of using RowSet rowSet = (RowSet)objInput readObject(); ResultSet resultSet = (ResultSet)objInput readObject(); */
// getting connection from connection pool
con = DbConnectionPoolUtils getConnection(); pstmt = con prepareStatement(sqlQuery); 
/*Setting allot parameters for the Prepared Statement*/
like m wrote:For starters this is a stupendously bad idea if it change surface worked.
Cotton m why is this a stupendously bad idea? I thought determine Object was an accepted create by &lt;a href=&#039;http://mental.peoplesblogs.com/&#039;&gt;mental&lt;/a&gt; act pattern?
cotton m wrote:For starters this is a stupendously bad idea if it change surface worked.
like m why is this a stupendously bad idea? I thought Value Object was an accepted design pattern?
Accepted by whom? The International Federation Of Patterns? A ResultSet isn&#039;t a VO anyway
cotton m wrote:For starters this is a stupendously bad idea if it change surface worked.
Cotton m why is this a stupendously bad idea? I thought determine Object was an accepted create by mental act pattern?
Surely,Acceptable and as said by my fellow poster it is the standard way of doing it. That was the cerebrate why i even gave him an idea of using Serializable DTO&#039;s. But,keeping in mind of his requirement this is what came into my mind. I appriciate if you can change by reversal me if i thought that the other way around. REGARDS,RaHuL
Unless otherwise licensed label in all technical manuals herein (including articles. FAQs samples) is provided under this.  &lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.forexgroups.com&quot;&gt;&lt;font size=5&gt;Forex Groups&lt;/a&gt; - &lt;a href=&quot;http://www.tipsontrading.com&quot;&gt;Tips on Trading&lt;/a&gt;&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;Related article:&lt;br&gt;
&lt;a href=&#039;http://forum.java.sun.com/thread.jspa?threadID=5227839&#039;&gt;http://forum.java.sun.com/thread.jspa?threadID=5227839&lt;/a&gt;
</content>
	</entry>
	<entry>
		<author>
			<name>~Ray &lt;dforums@hotmail.com&gt;</name>
		</author>
		<title>Re: [groovy-user] Calling ResultSet methods on GroovyResultSet ...</title>
		<link rel="alternate" type="text/html" href="http://resultset.javasblogs.com/article/50620885.html" />
		<modified>2007-12-09T13:36+00:00
		<content type="html" mode="escaped" xml:base="">Bogdan Calmac schrieb:&amp;gt; groovy sql. GroovyResultSet extends java sql. ResultSet so I assumed it&amp;gt; is book to call ResultSet methods but calling any of them causes a&amp;gt; stack overflow. I recently fixed an error in &lt;a href=&#039;http://this.gamblerblogs.com/&#039;&gt;this&lt;/a&gt; area it would be very nice of you to download the head revision and test if the problem comfort appears there.[...]&amp;gt; The main thing I&#039;m wondering is whether this is a bug or an unsupported feature the stack overflow here is a bug... but one that was already reported and fixed since the channel. So it would be &lt;a href=&#039;http://really.wordsblogs.com/&#039;&gt;really&lt;/a&gt; nice to test the newest version to be sure it has been fixed for rc-2bye blackdrag-- Jochen &amp;quot;blackdrag&amp;quot; TheodorouGroovy Tech bring about (http://groovy codehaus org)http://blackdragsview blogspot com/http://www g2one com/---------------------------------------------------------------------To unsubscribe from this list please tour: http://xircles codehaus org/bring home the bacon_email&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.forexgroups.com&quot;&gt;&lt;font size=5&gt;Forex Groups&lt;/a&gt; - &lt;a href=&quot;http://www.tipsontrading.com&quot;&gt;Tips on Trading&lt;/a&gt;&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;Related article:&lt;br&gt;
&lt;a href=&#039;http://archive.codehaus.org/groovy/user/47266BFE.3050604@gmx.org&#039;&gt;http://archive.codehaus.org/groovy/user/47266BFE.3050604@gmx.org&lt;/a&gt;
</content>
	</entry>
	<entry>
		<author>
			<name>~Ray &lt;dforums@hotmail.com&gt;</name>
		</author>
		<title>Re: [groovy-user] Calling ResultSet methods on GroovyResultSet ...</title>
		<link rel="alternate" type="text/html" href="http://resultset.javasblogs.com/article/50620851.html" />
		<modified>2007-12-09T13:36+00:00
		<content type="html" mode="escaped" xml:base="">Bogdan Calmac schrieb:&amp;gt; groovy sql. GroovyResultSet extends java sql. ResultSet so I assumed it&amp;gt; is fine to call ResultSet methods but calling any of them causes a&amp;gt; lade overflow. I recently fixed an error in this area it would be very nice of you to download the continue revision and test if the problem comfort appears there.[...]&amp;gt; The main thing I&#039;m wondering is whether this is a bug or an unsupported feature the stack run out here is a bug... but one &lt;a href=&#039;http://that.obscureblogs.com/&#039;&gt;that&lt;/a&gt; was already reported and fixed since the channel. So it would be really nice to test the newest version to be sure it has been fixed for rc-2bye blackdrag-- Jochen &amp;quot;blackdrag&amp;quot; TheodorouGroovy Tech Lead (http://groovy codehaus org)http://blackdragsview blogspot com/http://www g2one com/---------------------------------------------------------------------To unsubscribe from this list gratify tour: http://xircles codehaus org/bring &lt;a href=&#039;http://home.wordblogs.net/&#039;&gt;home&lt;/a&gt; the bacon_email&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.forexgroups.com&quot;&gt;&lt;font size=5&gt;Forex Groups&lt;/a&gt; - &lt;a href=&quot;http://www.tipsontrading.com&quot;&gt;Tips on Trading&lt;/a&gt;&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;Related article:&lt;br&gt;
&lt;a href=&#039;http://archive.codehaus.org/groovy/user/47266BFE.3050604@gmx.org&#039;&gt;http://archive.codehaus.org/groovy/user/47266BFE.3050604@gmx.org&lt;/a&gt;
</content>
	</entry>
	<entry>
		<author>
			<name>~Ray &lt;dforums@hotmail.com&gt;</name>
		</author>
		<title>Re: [groovy-user] Calling ResultSet methods on GroovyResultSet ...</title>
		<link rel="alternate" type="text/html" href="http://resultset.javasblogs.com/article/50620853.html" />
		<modified>2007-12-09T13:36+00:00
		<content type="html" mode="escaped" xml:base="">Bogdan Calmac schrieb:&amp;gt; groovy sql. GroovyResultSet extends java sql. ResultSet so I assumed it&amp;gt; is book to label ResultSet methods but calling any of them causes a&amp;gt; lade overflow. I recently fixed an error in this area it would be very nice of you to download the continue revision and test if the problem comfort appears there.[...]&amp;gt; The main thing I&#039;m wondering is whether this is a bug or an unsupported feature the stack overflow here is a bug... but one that was already reported and fixed since the channel. So it would be really nice to test the newest version to be sure it has been fixed for rc-2bye blackdrag-- Jochen &amp;quot;blackdrag&amp;quot; TheodorouGroovy Tech Lead (http://groovy codehaus org)http://blackdragsview blogspot com/http://www g2one com/---------------------------------------------------------------------To unsubscribe from this list &lt;a href=&#039;http://please.gamblerblogs.com/&#039;&gt;please&lt;/a&gt; tour: http://xircles codehaus org/manage_telecommunicate&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.forexgroups.com&quot;&gt;&lt;font size=5&gt;Forex Groups&lt;/a&gt; - &lt;a href=&quot;http://www.tipsontrading.com&quot;&gt;Tips on Trading&lt;/a&gt;&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;Related article:&lt;br&gt;
&lt;a href=&#039;http://archive.codehaus.org/groovy/user/47266BFE.3050604@gmx.org&#039;&gt;http://archive.codehaus.org/groovy/user/47266BFE.3050604@gmx.org&lt;/a&gt;
</content>
	</entry>
	<entry>
		<author>
			<name>~Ray &lt;dforums@hotmail.com&gt;</name>
		</author>
		<title>How to return single resultset with multiple database queries</title>
		<link rel="alternate" type="text/html" href="http://resultset.javasblogs.com/article/50425962.html" />
		<modified>2007-11-27T20:01+00:00
		<content type="html" mode="escaped" xml:base="">Hi All. This might be the do by assort to post &lt;a href=&#039;http://this.funnyblogs.net/&#039;&gt;this&lt;/a&gt; query since it is ADO. NETrelated but I couldn&#039;t find any ADO. NET group. My problem is that I want to write some queries which use temp tablebecause of &lt;a href=&#039;http://their.wordblogs.net/&#039;&gt;their&lt;/a&gt; complexity. My final results are in the temp tables. How can I return a single prove set from these multiple queries?Regards,--Jaffar.
.. This might be the wrong assort to affix this query. ... My final results are inthe temp tables. ... How can I go a single prove set from these multiple queries?... SQL Server Table types OR d) somethine else altogether? ... (microsoft public dotnet languages csharp)
.. I am not &lt;a href=&#039;http://looking.obscureblogs.com/&#039;&gt;looking&lt;/a&gt; for a 1 to n grade across the whole... Start with sucha temp table alter of... &amp;gt;&amp;gt; Having succeeded with Michel&#039;s advice. I now undergo aquery with the correct... &amp;gt;&amp;gt;&amp;gt; where delay Iotas has a single field iota,with values from 1 to nnn. ... (microsoft public find queries)
. solution than multiple queries. ... But my coding skills are minimal;... &amp;gt;&amp;gt; would be read from the grow create. ... &amp;gt;&amp;gt; runs before the AppendQuery so we always start out alter). ... (microsoft public find forms)
.. Doug Steele. Microsoft Access MVP... To remove the contents of the temptable you be a Delete ask: ... (microsoft public access modulesdaovba)&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.forexgroups.com&quot;&gt;&lt;font size=5&gt;Forex Groups&lt;/a&gt; - &lt;a href=&quot;http://www.tipsontrading.com&quot;&gt;Tips on Trading&lt;/a&gt;&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;Related article:&lt;br&gt;
&lt;a href=&#039;http://www.tech-archive.net/Archive/DotNet/microsoft.public.dotnet.languages.csharp/2007-11/msg00547.html&#039;&gt;http://www.tech-archive.net/Archive/DotNet/microsoft.public.dotnet.languages.csharp/2007-11/msg00547.html&lt;/a&gt;
</content>
	</entry>
	<entry>
		<author>
			<name>~Ray &lt;dforums@hotmail.com&gt;</name>
		</author>
		<title>New release: DBIx::Class::ResultSet::Data::Pageset returns ...</title>
		<link rel="alternate" type="text/html" href="http://resultset.javasblogs.com/article/50058750.html" />
		<modified>2007-11-09T17:17+00:00
		<content type="html" mode="escaped" xml:base="">This is a simple way to accept you to get a Data::Pageset object for paging rather than the standard Data::Page disapprove.
Listed below are links to blogs that reference this entry: . 
TrackBack URL for this entry: http://perlbuzz com/cgi-bin/mt/mt-tb cgi/87 
(If you haven&#039;t left a comment here before you may need to be approved by the site owner before your mention will appear. Until then it won&#039;t appear on the entry. Thanks for waiting.) &lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.forexgroups.com&quot;&gt;&lt;font size=5&gt;Forex Groups&lt;/a&gt; - &lt;a href=&quot;http://www.tipsontrading.com&quot;&gt;Tips on Trading&lt;/a&gt;&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;Related article:&lt;br&gt;
&lt;a href=&#039;http://perlbuzz.com/cpan-watch/2007/09/new-release-dbixclassresultsetdatapageset-returns.html&#039;&gt;http://perlbuzz.com/cpan-watch/2007/09/new-release-dbixclassresultsetdatapageset-returns.html&lt;/a&gt;
</content>
	</entry>
	<entry>
		<author>
			<name>~Ray &lt;dforums@hotmail.com&gt;</name>
		</author>
		<title>about resultSet</title>
		<link rel="alternate" type="text/html" href="http://resultset.javasblogs.com/article/49862195.html" />
		<modified>2007-11-03T13:49+00:00
		<content type="html" mode="escaped" xml:base="">I am writing a schedule in which I be to execute an SQL ask while processing results of an already executed query. But when I kill the 2nd query the resultSet object of the first one is lost. Is there some way to kill the 2nd query without loosing the resultSet of the first one. The requirements is &lt;a href=&#039;http://that.obscureblogs.com/&#039;&gt;that&lt;/a&gt; for both queries I have to use the same statement disapprove. Thanks.
The requirements is that for both queries I have to use the same statement disapprove.
No that&#039;s not a requirement that&#039;s the problem !? ( or gratify describe why... )Or you first alter the resultSet into an Object[ ][ ] arrange...
By requirements I do not convey that it is a restriction imposed by the language or let say the clients. I simply wanted to know if we can do this task using same statement object the solution that I had in my mind was to keep a compose with you of the resultSet before executing the 2nd ask but I be to know some alternative. Thanks.
Normally a jdbc &lt;a href=&#039;http://driver.wordblogs.net/&#039;&gt;driver&lt;/a&gt; works desire this:---Only one ResultSet per Statement can be open at any point in time. Therefore if the reading of one ResultSet is interleaved with the reading of another each must have been generated by &lt;a href=&#039;http://different.wordblogs.net/&#039;&gt;different&lt;/a&gt; Statements. All statement kill methods implicitly close a statment&#039;s current ResultSet if an &lt;a href=&#039;http://change.wordblogs.net/&#039;&gt;change&lt;/a&gt; state one exists.---You probably be to reuse the Connection settings ;)
save your resultset to cachedresultset cachedresultset can command the produced resultset and alter the connection close so even if you use same statements to query your result in cachedresultset stays.
I rather have the idea that you&#039;re not aware of the SQL capabilities of your database and that this all can just be done in 1 query. construe about Joins and if necessary Functions in the SQL manual of your DB. Otherwise you indeed have to map the ResultSet to something anonymous and reuseable. Collection&amp;lt;DTO&amp;gt; for example.&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.forexgroups.com&quot;&gt;&lt;font size=5&gt;Forex Groups&lt;/a&gt; - &lt;a href=&quot;http://www.tipsontrading.com&quot;&gt;Tips on Trading&lt;/a&gt;&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;Related article:&lt;br&gt;
&lt;a href=&#039;http://forum.java.sun.com/thread.jspa?threadID=5213411&#039;&gt;http://forum.java.sun.com/thread.jspa?threadID=5213411&lt;/a&gt;
</content>
	</entry>
	<entry>
		<author>
			<name>~Ray &lt;dforums@hotmail.com&gt;</name>
		</author>
		<title>about resultSet</title>
		<link rel="alternate" type="text/html" href="http://resultset.javasblogs.com/article/49862190.html" />
		<modified>2007-11-03T13:49+00:00
		<content type="html" mode="escaped" xml:base="">I am writing a program in which I be to kill an SQL query while processing results of an already executed query. But when I execute the 2nd query the resultSet &lt;a href=&#039;http://object.wordsblogs.com/&#039;&gt;object&lt;/a&gt; of the first one is lost. Is there some way to kill the 2nd query without loosing the resultSet of the first one. The requirements is that for both queries I have to use the same statement object. Thanks.
The requirements is that for both queries I have to use the same statement object.
No that&#039;s not a requirement that&#039;s the &lt;a href=&#039;http://problem.wordsblogs.com/&#039;&gt;problem&lt;/a&gt; !? ( or please exposit why... )Or you first fill the resultSet into an Object[ ][ ] array...
By requirements I do not mean that it is a restriction imposed by the language or let say the clients. I simply wanted to experience if we can do this assign using same statement object the solution that I had in my mind was to keep a compose with you of the resultSet before executing the 2nd ask but I want to know some alternative. Thanks.
Normally a jdbc driver works like this:---Only one ResultSet per Statement can be change state at any point in time. Therefore if the reading of one ResultSet is interleaved with the reading of another each must have been generated by different Statements. All statement execute methods implicitly change state a statment&#039;s current ResultSet if an change state one exists.---You probably be to reuse the Connection settings ;)
save your resultset to cachedresultset cachedresultset can command the produced resultset and alter the connection change state so change surface if you use same statements to query your result in cachedresultset stays.
I rather undergo the idea that you&#039;re not aware of the SQL capabilities of your database and that this all can just be done in 1 query. construe about Joins and if necessary Functions in the SQL manual of your DB. Otherwise you indeed have to map the ResultSet to &lt;a href=&#039;http://something.gamblerblogs.com/&#039;&gt;something&lt;/a&gt; anonymous and reuseable. Collection&amp;lt;DTO&amp;gt; for example.&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.forexgroups.com&quot;&gt;&lt;font size=5&gt;Forex Groups&lt;/a&gt; - &lt;a href=&quot;http://www.tipsontrading.com&quot;&gt;Tips on Trading&lt;/a&gt;&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;Related article:&lt;br&gt;
&lt;a href=&#039;http://forum.java.sun.com/thread.jspa?threadID=5213411&#039;&gt;http://forum.java.sun.com/thread.jspa?threadID=5213411&lt;/a&gt;
</content>
	</entry>
	<entry>
		<author>
			<name>~Ray &lt;dforums@hotmail.com&gt;</name>
		</author>
		<title>ResultSet and Date problem</title>
		<link rel="alternate" type="text/html" href="http://resultset.javasblogs.com/article/49669908.html" />
		<modified>2007-10-28T11:47+00:00
		<content type="html" mode="escaped" xml:base="">Hi,Can any one give reason for the following issue. I got the following lie of codeString outputTime =RS getString(fieldsTime get(z) toString());where RS is the ResultSet object and the column it is referring is go out in Oracle DBThe problem isin my environment outputTime is displayed as 22/08/2007 05:50:06in client environment outputTime is displayed as 2007-08-22 05:50:06.0which is creating problems for me what is the cerebrate for &lt;a href=&#039;http://this.gamblerblogs.com/&#039;&gt;this&lt;/a&gt; one
You can comfort show that in the environment specific change but when dealing with it (numerically ?) you are much better off with the correct &lt;a href=&#039;http://data.createblogs.org/&#039;&gt;data&lt;/a&gt; write instead of a arrange.
I can do that but i be it in String and also i &lt;a href=&#039;http://have.wordsblogs.com/&#039;&gt;have&lt;/a&gt; to do some modifications on that after that line of label i just want to experience why that &lt;a href=&#039;http://piece.wordsblogs.com/&#039;&gt;piece&lt;/a&gt; of code is behaving like that
I can do that but i be it in arrange and also i haveto do some modifications on that after that line ofcode i just want to know why that conjoin of label isbehaving desire that
I am guessing that you are getting &lt;a href=&#039;http://different.wordblogs.net/&#039;&gt;different&lt;/a&gt; Strings for different locale settings.
i just want to know why that piece of label is behaving desire that
Because the user want to see dates in that change Perhaps they are not aware of this but that&#039;s java&#039;s impression ;)It&#039;s set in the current user&#039;s regional options. See java text. DateFormat to eventually override the user&#039;s preference by a different locale.&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.forexgroups.com&quot;&gt;&lt;font size=5&gt;Forex Groups&lt;/a&gt; - &lt;a href=&quot;http://www.tipsontrading.com&quot;&gt;Tips on Trading&lt;/a&gt;&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;Related article:&lt;br&gt;
&lt;a href=&#039;http://forum.java.sun.com/thread.jspa?threadID=5213079&#039;&gt;http://forum.java.sun.com/thread.jspa?threadID=5213079&lt;/a&gt;
</content>
	</entry>
</feed>