Click here to Skip to main content
15,884,926 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
I have created a login program in Java. It uses a database with two fields (Username and Password). The program accesses the database and retrieves the records from the two fields. It works on my computer with the ODBC server address being set to 192.168.1.4 and the ports have been opened. However I need to know how I can create a ODB Connection via cmd line but having it access the cmd line from the Java application. And also how do I add a driver to the ODBC folder as I am using MySQL and is this needed or could I use the SQL Server driver that is in the files instead.

The code for the Login program is below
Java
	public static void main(String[] args)
	{
		if (ConnectionSetup = true)
		{
			//Do Nothing
		}
		else if (ConnectionSetup = false)
		{
			SetupConnection();
		}
		new Login();
	}
	
	public static void SetupConnection()
	{
		//The code for the command line would go here
	}
}

Can somebody please help me because I have tried everything that I know. Thanks in advance.
Posted
Updated 18-Jun-12 1:57am
v2

1 solution

no command line - you should use a proper JDBC-Connection.

Tutorial on JDBC[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900