0

I was wondering if I could get some advise/suggestions if anyone has experience with the following situation.

So I want to develop a java web app that "talks" with a database that is already built out in .NET. I have experience coding java web apps in eclipse that talked to MySQL DBs so I don't think the database language is that concerning.

What methods would you go about to implement this? Are there certain programs that are more useful than others? What frameworks should I use? Also, examples that I found on the web seem so dated style wise, are there things I can do to web apps coded in eclipse to give it some pop?

Thank you in advance

4
  • a database that is already built out in .NET, so a MS SQL Server database? Commented Sep 26, 2014 at 16:15
  • You'll need a JDBC driver. Commented Sep 26, 2014 at 16:17
  • What does Eclipse have to do with anything? How would an IDE give web pages "pop"? Web pages in HTML5 and CSS3, talking to REST web services, would be a good way to go. Commented Sep 26, 2014 at 16:20
  • Thanks Duffy I'll do a little more research Commented Sep 26, 2014 at 16:22

2 Answers 2

1

Microsoft has a JDBC driver for MSSQL.

Refer to: http://msdn.microsoft.com/en-us/sqlserver/aa937724.aspx

Sign up to request clarification or add additional context in comments.

Comments

0

Call me JDBC on any database.

In these days, from the point of database vendor, they will give us a nice library (driver) to communicate their product from any (widely using) programming language.

Java is a big dealing programming language in world wide, so don't worry about database connection as this can be done by a jar featuring JDBC.

So your challenge is JDBC driver to suite and map to required database brand and its version.

You just need to worry to be right plug between the database's version and the JDBC driver library (jar file) version. Don't care on any database of MySQL, Oracle, MSSql or so on.

Java app -> JDBC Driver -> Database

Famous database's JDBC drivers;

MSSql JDBC Driver (What you need one?)
MySql JDBC Driver
Oracle JDBC Driver

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.