About 26,300 results
Open links in new tab
  1. How can I set an SQL Server connection string? - Stack Overflow

    May 8, 2017 · 130 I'm developing a simple C# application, and I'd like to know this: When I connect my application to SQL Server on my PC, I know the connection string (server name, …

  2. How to get the connection String from a database

    May 7, 2012 · The available advanced options vary by server type. If you create the database using SQL Server Management Studio, the database will be created in a server instance, so …

  3. Connection string using Windows Authentication - Stack Overflow

    For connecting to a sql server database via Windows authentication basically needs which server you want to connect , what is your database name , Integrated Security info and provider name.

  4. Connecting to Microsoft SQL server using Python

    Nov 16, 2015 · I am trying to connect to SQL through python to run some queries on some SQL databases on Microsoft SQL server. From my research online and on this forum the most …

  5. how to set the query timeout from SQL connection string

    Jul 29, 2009 · You have always been able to specify the Connect Timeout via the SqlClient connection string, this applies to establishing a connection with the database server, not …

  6. "Server" vs "Data Source" in connection string - Stack Overflow

    Feb 22, 2013 · I'm new to SqlServer, right now I have SqlLocalDb installed to work locally. Good, but I can see two connection strings typically and both works: Data …

  7. sql server - What is the difference between Integrated Security

    Dec 14, 2023 · Note that connection strings are specific to what and how you are connecting to data. These are connecting to the same database but the first is using .NET Framework Data …

  8. Setting up connection string in ASP.NET to SQL SERVER

    Before you setup your connection string in code, ensure you actually can access your database. Start obviously by logging into the database server using SSMS (Sql Server Management …

  9. python - How do I connect to SQL Server via sqlalchemy using …

    71 sqlalchemy, a db connection module for Python, uses SQL Authentication (database-defined user accounts) by default. If you want to use your Windows (domain or local) credentials to …

  10. Connecting to MS SQL Server with Windows Authentication using …

    How do I connect MS SQL Server using Windows Authentication, with the pyodbc library? I can connect via MS Access and SQL Server Management Studio, but cannot get a working …