How can i create a mobile application server?

How to connect eclipse and microsoft sql server to create an application?

  • am using MS sql server 2005 management studio and eclipse to create a database application. my skills in sql are good but i lack complete knowledge in java.So far i have downloaded the sql jdbc connector...now i have no clue as to what to do next. i have created my required database and tables with entries complete. what is left is creating windows and buttons and feilds and connecting each of these to a query in the database. if anyone could show a tutorial website online would be nice also. Please do help....thankyou

  • Answer:

    Check the MS docs page at http://msdn.microsoft.com/en-us/library/ms378526.aspx. Here's what it says: Make sure the jar is in your build path, then call... Class.forName("com.microsoft.sqlserver... //only need to call once String connectionUrl = "jdbc:sqlserver://localhost:1433;" + "databaseName=AdventureWorks;user=MyUser... Connection con = DriverManager.getConnection(connectionUr...

tasha nole at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

Check the MS docs page at http://msdn.microsoft.com/en-us/library/ms378526.aspx. Here's what it says: Make sure the jar is in your build path, then call... Class.forName("com.microsoft.sqlserver… //only need to call once String connectionUrl = "jdbc:sqlserver://localhost:1433;" + "databaseName=AdventureWorks;user=MyUser… Connection con = DriverManager.getConnection(connectionUr…

godfathe...

1) Make a connection 2) Open the database 3) Query 4) Close the database http://docs.oracle.com/javase/tutorial/jdbc/index.html

TheSnoopy

1) Make a connection 2) Open the database 3) Query 4) Close the database http://docs.oracle.com/javase/tutorial/jdbc/index.html

TheSnoopy

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.