<?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: How to Import export MySQL database from command line</title>
	<atom:link href="http://blog.mypapit.net/2008/12/how-to-import-export-mysql-database-from-command-line.html/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.mypapit.net/2008/12/how-to-import-export-mysql-database-from-command-line.html</link>
	<description>Free and Open Source blogger with an attitude</description>
	<lastBuildDate>Mon, 19 Dec 2011 07:07:40 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: pranav</title>
		<link>http://blog.mypapit.net/2008/12/how-to-import-export-mysql-database-from-command-line.html/comment-page-1#comment-305997</link>
		<dc:creator>pranav</dc:creator>
		<pubDate>Tue, 30 Aug 2011 16:52:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mypapit.net/?p=1022#comment-305997</guid>
		<description>very well explained tutorial

@Ranjitha read javadoc for DeviceManager, it might helpful</description>
		<content:encoded><![CDATA[<p>very well explained tutorial</p>
<p>@Ranjitha read javadoc for DeviceManager, it might helpful</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ranjitha</title>
		<link>http://blog.mypapit.net/2008/12/how-to-import-export-mysql-database-from-command-line.html/comment-page-1#comment-289857</link>
		<dc:creator>ranjitha</dc:creator>
		<pubDate>Tue, 08 Mar 2011 17:20:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mypapit.net/?p=1022#comment-289857</guid>
		<description>import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;

import java.io.*;
import java.sql.*;
import java.util.*;

 class Login
{
	public static void main(String[]args )
	{
		loginfrm frame=new loginfrm();
		frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		frame.setVisible(true);
	}
}
class loginfrm extends JFrame
{
	public loginfrm()
	{
	setTitle(&quot;translate&quot;);
	setSize(275,100);


	ActionListener listener1=new CommandAction1();
	ActionListener listener2=new CommandAction2();

	panel1=new JPanel();
	panel2=new JPanel();
   
        JLabel LogLabel = new JLabel(&quot;ENGLISH    :&quot;);
	Lname = new JTextField(&quot;&quot;,100);

        JLabel Result = new JLabel(&quot;Result&quot;);
    panel1.add(LogLabel);
    panel1.add(Result);
    panel1.add(Lname);

	add(panel1);

	

	buttonOK =new JButton(&quot;OK&quot;);
	buttonOK.addActionListener(listener1);;
	panel2.add(buttonOK);


	buttonCancel =new JButton(&quot;CLOSE&quot;);
	buttonCancel.addActionListener(listener2);;
	panel2.add(buttonCancel);

	add(panel1,BorderLayout.NORTH);
	add(panel2,BorderLayout.SOUTH);


	pack();
	}

private class CommandAction1 implements ActionListener
{


public void actionPerformed(ActionEvent ae)
{
	String lname;


	lname=Lname.getText();


	try
		{
			Class.forName(&quot;sun.jdbc.odbc.JdbcOdbcDriver&quot;);
			connstring=&quot;jdbc:odbc:LOG&quot;;
			conn=DriverManager.getConnection(connstring,&quot;&quot;,&quot;&quot;);
			stmt=conn.createStatement();
		}
		catch(Exception e)
		{
			System.out.println(&quot;Error in program &quot;+e.toString());
		}
			try
	{
	rs=stmt.executeQuery(&quot;SELECT KANNADA FROM LOGIN where  ENGLISH=&#039;&quot;+lname+&quot;&#039;&quot;);

	while(rs.next())
	{
		System.out.println(rs.getString(1));
	}
	}
	catch(Exception e)
	{
		System.out.println(&quot;Error while trying to display table&quot;+e.toString());
	}
}
}
private class CommandAction2 implements ActionListener
{
	public void actionPerformed(ActionEvent ae)
		{
		System.exit(0);
		}
}

	private JPanel panel1,panel2;
	private JLabel LogLabeL;
	private JButton buttonOK,buttonCancel;
	private JTextField Lname;
	
	String s;
static Connection conn=null;
	static String connstring, sqlD;
	static Statement stmt;
	static 	ResultSet rs;
}

can you please tel me how to connect mysql to linux fedora10 with the help of this program??</description>
		<content:encoded><![CDATA[<p>import java.awt.*;<br />
import java.awt.event.*;<br />
import javax.swing.*;<br />
import javax.swing.event.*;</p>
<p>import java.io.*;<br />
import java.sql.*;<br />
import java.util.*;</p>
<p> class Login<br />
{<br />
	public static void main(String[]args )<br />
	{<br />
		loginfrm frame=new loginfrm();<br />
		frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);<br />
		frame.setVisible(true);<br />
	}<br />
}<br />
class loginfrm extends JFrame<br />
{<br />
	public loginfrm()<br />
	{<br />
	setTitle(&#8220;translate&#8221;);<br />
	setSize(275,100);</p>
<p>	ActionListener listener1=new CommandAction1();<br />
	ActionListener listener2=new CommandAction2();</p>
<p>	panel1=new JPanel();<br />
	panel2=new JPanel();</p>
<p>        JLabel LogLabel = new JLabel(&#8220;ENGLISH    :&#8221;);<br />
	Lname = new JTextField(&#8220;&#8221;,100);</p>
<p>        JLabel Result = new JLabel(&#8220;Result&#8221;);<br />
    panel1.add(LogLabel);<br />
    panel1.add(Result);<br />
    panel1.add(Lname);</p>
<p>	add(panel1);</p>
<p>	buttonOK =new JButton(&#8220;OK&#8221;);<br />
	buttonOK.addActionListener(listener1);;<br />
	panel2.add(buttonOK);</p>
<p>	buttonCancel =new JButton(&#8220;CLOSE&#8221;);<br />
	buttonCancel.addActionListener(listener2);;<br />
	panel2.add(buttonCancel);</p>
<p>	add(panel1,BorderLayout.NORTH);<br />
	add(panel2,BorderLayout.SOUTH);</p>
<p>	pack();<br />
	}</p>
<p>private class CommandAction1 implements ActionListener<br />
{</p>
<p>public void actionPerformed(ActionEvent ae)<br />
{<br />
	String lname;</p>
<p>	lname=Lname.getText();</p>
<p>	try<br />
		{<br />
			Class.forName(&#8220;sun.jdbc.odbc.JdbcOdbcDriver&#8221;);<br />
			connstring=&#8221;jdbc:odbc:LOG&#8221;;<br />
			conn=DriverManager.getConnection(connstring,&#8221;",&#8221;");<br />
			stmt=conn.createStatement();<br />
		}<br />
		catch(Exception e)<br />
		{<br />
			System.out.println(&#8220;Error in program &#8220;+e.toString());<br />
		}<br />
			try<br />
	{<br />
	rs=stmt.executeQuery(&#8220;SELECT KANNADA FROM LOGIN where  ENGLISH=&#8217;&#8221;+lname+&#8221;&#8216;&#8221;);</p>
<p>	while(rs.next())<br />
	{<br />
		System.out.println(rs.getString(1));<br />
	}<br />
	}<br />
	catch(Exception e)<br />
	{<br />
		System.out.println(&#8220;Error while trying to display table&#8221;+e.toString());<br />
	}<br />
}<br />
}<br />
private class CommandAction2 implements ActionListener<br />
{<br />
	public void actionPerformed(ActionEvent ae)<br />
		{<br />
		System.exit(0);<br />
		}<br />
}</p>
<p>	private JPanel panel1,panel2;<br />
	private JLabel LogLabeL;<br />
	private JButton buttonOK,buttonCancel;<br />
	private JTextField Lname;</p>
<p>	String s;<br />
static Connection conn=null;<br />
	static String connstring, sqlD;<br />
	static Statement stmt;<br />
	static 	ResultSet rs;<br />
}</p>
<p>can you please tel me how to connect mysql to linux fedora10 with the help of this program??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Colocation Dedicated Voip</title>
		<link>http://blog.mypapit.net/2008/12/how-to-import-export-mysql-database-from-command-line.html/comment-page-1#comment-265607</link>
		<dc:creator>Colocation Dedicated Voip</dc:creator>
		<pubDate>Mon, 29 Jun 2009 06:01:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mypapit.net/?p=1022#comment-265607</guid>
		<description>Thanks a useful document

&lt;a href=&quot;http://www.profilotelekom.com&quot; rel=&quot;nofollow&quot;&gt;Dedicated Colocation Voip Datacenter&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Thanks a useful document</p>
<p><a href="http://www.profilotelekom.com" rel="nofollow">Dedicated Colocation Voip Datacenter</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ssk sorular?</title>
		<link>http://blog.mypapit.net/2008/12/how-to-import-export-mysql-database-from-command-line.html/comment-page-1#comment-263581</link>
		<dc:creator>ssk sorular?</dc:creator>
		<pubDate>Tue, 26 May 2009 15:55:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mypapit.net/?p=1022#comment-263581</guid>
		<description>mysql -u username -p databasename &gt; backup.sql

thanks</description>
		<content:encoded><![CDATA[<p>mysql -u username -p databasename &gt; backup.sql</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mybands</title>
		<link>http://blog.mypapit.net/2008/12/how-to-import-export-mysql-database-from-command-line.html/comment-page-1#comment-262014</link>
		<dc:creator>mybands</dc:creator>
		<pubDate>Thu, 07 May 2009 17:43:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mypapit.net/?p=1022#comment-262014</guid>
		<description>I need try this. This is interesting.</description>
		<content:encoded><![CDATA[<p>I need try this. This is interesting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: photo sharing</title>
		<link>http://blog.mypapit.net/2008/12/how-to-import-export-mysql-database-from-command-line.html/comment-page-1#comment-258268</link>
		<dc:creator>photo sharing</dc:creator>
		<pubDate>Wed, 18 Mar 2009 15:05:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mypapit.net/?p=1022#comment-258268</guid>
		<description>I&#039;ve also used

mysql -u username -p databasename &gt; backup.sql</description>
		<content:encoded><![CDATA[<p>I&#8217;ve also used</p>
<p>mysql -u username -p databasename &gt; backup.sql</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vps</title>
		<link>http://blog.mypapit.net/2008/12/how-to-import-export-mysql-database-from-command-line.html/comment-page-1#comment-254694</link>
		<dc:creator>vps</dc:creator>
		<pubDate>Tue, 27 Jan 2009 21:19:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mypapit.net/?p=1022#comment-254694</guid>
		<description>I use it nice article thank you</description>
		<content:encoded><![CDATA[<p>I use it nice article thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jadu Saikia</title>
		<link>http://blog.mypapit.net/2008/12/how-to-import-export-mysql-database-from-command-line.html/comment-page-1#comment-254301</link>
		<dc:creator>Jadu Saikia</dc:creator>
		<pubDate>Mon, 19 Jan 2009 05:41:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mypapit.net/?p=1022#comment-254301</guid>
		<description>Nice one. Thanks.

//Jadu, unstableme.blogspot.com</description>
		<content:encoded><![CDATA[<p>Nice one. Thanks.</p>
<p>//Jadu, unstableme.blogspot.com</p>
]]></content:encoded>
	</item>
</channel>
</rss>

