Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using SQL Server 2005. I am getting this error while connecting with sql server from java. Using SQL Server Authentication. Login:sa Table name=Task

[microsoft][odbc sql server driver][sql server]invalid object name 'Task' 

Below is the connection code in java file in try-catch block.

Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
conn=DriverManager.getConnection("jdbc:odbc:dsndbPMA;");
st=conn.createStatement();
query="select * from Task";
rs=st.executeQuery(query);  

Can anyone please help me where I have mistaken?

share|improve this question

1 Answer

It sounds like the connection isn't attaching to the correct database. Can you posy the connection string? Does the connection string specify the data source?

share|improve this answer
Thanks for your help..Sorry due to certain reasons I have just switched to the older database where everything was working properly. – bsm Apr 25 '11 at 12:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.