I am trying to connect to a SQL Server 2008 R2 instance which is using sql auth. No exception is raised (I'm catching SqlException), and my code is as follows:
SQLServerDataSource ds = new SQLServerDataSource();
ds.setUser(dbUserID);
ds.setPassword(Password);
ds.setServerName(DBServer);
ds.setPortNumber(1433);
ds.setDatabaseName(dbName);
con = (SQLServerConnection) ds.getConnection();
Statement statement = con.createStatement();
resultSet = statement.executeQuery(SQL);
All the parameters (username, password, etc) are 100% correct. The database is running etc. The query is a simple select * from a table which exists. There are no null objects after they're used, connection object is setup etc, but the resultset has 0 rows.
Any ideas what I'm doing wrong? I'm using Microsoft SQL Server JDBC Driver 3.0.
Thanks