I used this code to create a connection to SQL Server.
String connectionUrl = \"jdbc:sqlserver://IP:1433;\" +
\"databaseName=db;user=db;password=pwd\
Check out this Microsoft JDBC Blog post:
for resolve SSL problems with SQLServer (specially for android clients:JDBC driver can not be used effectively in the Android OS on unfortunately) try to using jDTS:
jTDS
is an open source 100% pure Java (type 4) JDBC 3.0 driver for Microsoft SQL Server (6.5, 7, 2000, 2005, 2008 and 2012)
Is it
databaseName=MyDB
or
database=MyDB
?
Try the latter.
Are you on a Windows Machine? http://www.microsoft.com/en-us/download/details.aspx?id=24009
Download that and try to talk to your server outside of your code. The port query tool will show you if its a firewall (or similar) issue, outside of the code.