 




<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: help me!!</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/help-me/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/help-me/</link>
	<description></description>
	<lastBuildDate>Fri, 24 May 2013 00:38:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: jacquie</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/help-me/#comment-49476</link>
		<dc:creator>jacquie</dc:creator>
		<pubDate>Wed, 01 Jun 2005 10:39:13 +0000</pubDate>
		<guid isPermaLink="false">#comment-49476</guid>
		<description><![CDATA[You haven&#039;t explained what you are actually trying to accomplish, or what kind of &quot;tables&quot; your data is in, but you may find help in IBM&#039;s Developerworks Java Technology. Check out http://www-130.ibm.com/developerworks/java/ 
The &quot;top story&quot; there today is &quot;Java theory and practice: Make database queries without the database&quot;, which may or may not relate to your problem, but may at least point you in the right direction. 
The second reply gave you a link to the database drivers. You can use those to connect your Java program with an actual database, including Oracle or Access, if your are trying to load your data into one of them.]]></description>
		<content:encoded><![CDATA[<p>You haven&#8217;t explained what you are actually trying to accomplish, or what kind of &#8220;tables&#8221; your data is in, but you may find help in IBM&#8217;s Developerworks Java Technology. Check out <a href="http://www-130.ibm.com/developerworks/java/" rel="nofollow">http://www-130.ibm.com/developerworks/java/</a><br />
The &#8220;top story&#8221; there today is &#8220;Java theory and practice: Make database queries without the database&#8221;, which may or may not relate to your problem, but may at least point you in the right direction.<br />
The second reply gave you a link to the database drivers. You can use those to connect your Java program with an actual database, including Oracle or Access, if your are trying to load your data into one of them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: coreyf</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/help-me/#comment-49477</link>
		<dc:creator>coreyf</dc:creator>
		<pubDate>Mon, 30 May 2005 22:16:20 +0000</pubDate>
		<guid isPermaLink="false">#comment-49477</guid>
		<description><![CDATA[Ithink you need to first define your need. How big will the DB be? How many tables? Is it possible to start with a test using Excel or Access to mimic what you want to store and retreive? If you need a large capacity, how large? Thousands or Millions of rows (records), or Megabytes, GigaBytes, TeraBytes. If small you might try MySQL and get a book called &quot;The Weekend Crash Course for SQL&quot;. You&#039;ll discover whether you code in Java, C++, or COBOLeve, you&#039;ll use embedded SQL or SQL Stored Procedures to access your Relational Data. You can Create Tables, Views, or Temporary tables dynamicailly, but in 99% of the time, a database will have to have been first created. That par is easy, almost every vendor lets you simply say &quot;Create DB MyDBname&quot; and all the structures will be created for you, except your specific tables. You can certainly start small and build your knowledge with SQL and JAVA. In any case, you will need to learn a little SQL and call or embedd it in JAVA. JAVA and most databases come with the JAVA Libraries to address DATABASE Creation and Use. Native JAVA does not build or create database objects natively, unless you are writing your own Database Engine in JAVA.

Good luck! ]]></description>
		<content:encoded><![CDATA[<p>Ithink you need to first define your need. How big will the DB be? How many tables? Is it possible to start with a test using Excel or Access to mimic what you want to store and retreive? If you need a large capacity, how large? Thousands or Millions of rows (records), or Megabytes, GigaBytes, TeraBytes. If small you might try MySQL and get a book called &#8220;The Weekend Crash Course for SQL&#8221;. You&#8217;ll discover whether you code in Java, C++, or COBOLeve, you&#8217;ll use embedded SQL or SQL Stored Procedures to access your Relational Data. You can Create Tables, Views, or Temporary tables dynamicailly, but in 99% of the time, a database will have to have been first created. That par is easy, almost every vendor lets you simply say &#8220;Create DB MyDBname&#8221; and all the structures will be created for you, except your specific tables. You can certainly start small and build your knowledge with SQL and JAVA. In any case, you will need to learn a little SQL and call or embedd it in JAVA. JAVA and most databases come with the JAVA Libraries to address DATABASE Creation and Use. Native JAVA does not build or create database objects natively, unless you are writing your own Database Engine in JAVA.</p>
<p>Good luck! </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: davisty</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/help-me/#comment-49478</link>
		<dc:creator>davisty</dc:creator>
		<pubDate>Mon, 30 May 2005 15:01:06 +0000</pubDate>
		<guid isPermaLink="false">#comment-49478</guid>
		<description><![CDATA[You would use the &quot;create table&quot; SQL syntax after connecting to the server via JDBC. And executing the java statements as you would with any other SQL statements.

]]></description>
		<content:encoded><![CDATA[<p>You would use the &#8220;create table&#8221; SQL syntax after connecting to the server via JDBC. And executing the java statements as you would with any other SQL statements.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thenotoriousjmp</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/help-me/#comment-49479</link>
		<dc:creator>thenotoriousjmp</dc:creator>
		<pubDate>Mon, 30 May 2005 14:20:06 +0000</pubDate>
		<guid isPermaLink="false">#comment-49479</guid>
		<description><![CDATA[Yes, &quot;creating a database using Java&quot; does not make sense. As in the previous reply, just to reiterate, you can use JDBC to connect to a database, but the database is a separate entity entirely on its own. Theoretically, you could have a C, C++, PERL, Java, or any language that knows how to communicate with that kind of database (you&#039;ll find that most do) that all communicate with that database, none of which are aware of each other.]]></description>
		<content:encoded><![CDATA[<p>Yes, &#8220;creating a database using Java&#8221; does not make sense. As in the previous reply, just to reiterate, you can use JDBC to connect to a database, but the database is a separate entity entirely on its own. Theoretically, you could have a C, C++, PERL, Java, or any language that knows how to communicate with that kind of database (you&#8217;ll find that most do) that all communicate with that database, none of which are aware of each other.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mrickett</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/help-me/#comment-49480</link>
		<dc:creator>mrickett</dc:creator>
		<pubDate>Mon, 30 May 2005 09:06:30 +0000</pubDate>
		<guid isPermaLink="false">#comment-49480</guid>
		<description><![CDATA[Just a small correction. There are JDBC drivers available for most databases. Please see:

http://developers.sun.com/product/jdbc/drivers

It is possible to similate a database in Java using text files.

]]></description>
		<content:encoded><![CDATA[<p>Just a small correction. There are JDBC drivers available for most databases. Please see:</p>
<p><a href="http://developers.sun.com/product/jdbc/drivers" rel="nofollow">http://developers.sun.com/product/jdbc/drivers</a></p>
<p>It is possible to similate a database in Java using text files.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 6/9 queries in 0.012 seconds using memcached
Object Caching 324/327 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-24 00:41:44 -->