I currently have a java application that I need to connect and write to a SQLEXPRESS
instance of the SQLserver
DB, at the moment my code will connect to the DB, but only if I open the SQL server config manager and manually enable the TCP/IP
protocol,set the port to 1433 and then restart the server. The following link describes what i am talking about https://dzone.com/articles/connecting-sql-server-java this.
I want to distribute my application to users, but I don't want the users to have to manually set this themselves I want my java code to do it for them, is this possible to do in java?