Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Check your connection string. If you need help with it check <a href="http://www.connectionstrings.com/">Connection Strings</a>, which has a list of commonly used ones.</p> <p>Commonly used Connection Strings:</p> <h1><strong>SQL Server 2012</strong></h1> <p><strong><em>Standard Security</em></strong></p> <pre><code>Server=myServerAddress;Database=myDataBase;User Id=myUsername;Password=myPassword; </code></pre> <p><strong><em>Trusted Connection</em></strong></p> <pre><code>Server=myServerAddress;Database=myDataBase;Trusted_Connection=True; </code></pre> <p><strong><em>Connection to a SQL Server instance</em></strong></p> <p><em>The server/instance name syntax used in the server option is the same for all SQL Server connection strings.</em></p> <pre><code>Server=myServerName\myInstanceName;Database=myDataBase;User Id=myUsername; Password=myPassword; </code></pre> <h1><strong>SQL Server 2005</strong></h1> <p><strong><em>Standard Security</em></strong></p> <pre><code>Server=myServerAddress;Database=myDataBase;User Id=myUsername;Password=myPassword; </code></pre> <p><strong><em>Trusted Connection</em></strong></p> <pre><code>Server=myServerAddress;Database=myDataBase;Trusted_Connection=True; </code></pre> <p><strong><em>Connection to a SQL Server instance</em></strong></p> <p><em>The server/instance name syntax used in the server option is the same for all SQL Server connection strings.</em></p> <pre><code>Server=myServerName\myInstanceName;Database=myDataBase;User Id=myUsername;Password=myPassword; </code></pre> <h1><strong>MySQL</strong></h1> <p><strong><em>Standard</em></strong></p> <pre><code>Server=myServerAddress;Database=myDataBase;Uid=myUsername;Pwd=myPassword; </code></pre> <p><strong><em>Specifying TCP port</em></strong></p> <pre><code>Server=myServerAddress;Port=1234;Database=myDataBase;Uid=myUsername;Pwd=myPassword; </code></pre> <h1><strong>Oracle</strong></h1> <p><strong>Using TNS</strong></p> <pre><code>Data Source=TORCL;User Id=myUsername;Password=myPassword; </code></pre> <p><strong><em>Using integrated security</em></strong></p> <pre><code>Data Source=TORCL;Integrated Security=SSPI; </code></pre> <p><strong><em>Using ODP.NET without tnsnames.ora</em></strong></p> <pre><code>Data Source=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=MyHost)(PORT=MyPort)))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=MyOracleSID)));User Id=myUsername;Password=myPassword; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload