Reputation: 128
Is there any way to connect SQLAnywhere 11 server from a remote location?
Upvotes: 1
Views: 846
Reputation: 57248
For version 11, you will need to add the LINKS parameter to your DSN or connection string. The documentation on the LINKS parameter for v11 is here. If you are using SQL Anywhere v12 or later, take a look at the HOST parameter which is a little simpler.
Upvotes: 1
Reputation: 2378
Use the connectivity options that allowyou to specify host + port (like dbisql -host ... -port...)
Upvotes: 1