Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Selecting a server #16

Closed
CorpulentBrony opened this issue Jan 6, 2017 · 1 comment
Closed

Selecting a server #16

CorpulentBrony opened this issue Jan 6, 2017 · 1 comment
Labels

Comments

@CorpulentBrony
Copy link

I feel pretty dumb, but I've installed TSQLEasy in Sublime but cannot for the life of me figure out how to define a server. I am only given two options: Main and Offline. How do I connect to an external server? There's unfortunately no documentation on how to just set this up that I can find.

@tosher
Copy link
Owner

tosher commented Jan 8, 2017

Preferences -> Package settings -> TSQLEasy -> Settings - User:

    "te_sql_server":
    {
        "Offline":
        {
            "driver": ""
        },
        "Server1":
        {
            "autocommit": true,
            "database": "dbname1",
            "driver": "SQL Server",
            "password": "password1",
            "server": "ip_address1",
            "server_port": "1433",
            "timeout": 1,
            "username": "username1"
        },
        "Server2":
        {
            "autocommit": true,
            "database": "dbname2",
            "driver": "SQL Server",
            "password": "password2",
            "server": "ip_address2",
            "server_port": "1433",
            "timeout": 1,
            "username": "username2"
        }
    }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants