|
| Inicio → WINDEV 2024 → Connecting to a SQL Server (Native access) database using a Connection String |
| Connecting to a SQL Server (Native access) database using a Connection String |
| Iniciado por mark, 03,ene. 2019 22:37 - 3 respuestas |
| |
| | | |
|
| |
| Publicado el 03,enero 2019 - 22:37 |
I have a MS SQL Server database that I need to open using a valid C# connection string. Is there a way to open the connection using the provided connection string? I want to be able to use the provided connection string directly without having to parse it to get the Server, Database and other information needed to describe a "connection" to be used in the "HConnect" functions.
Thanks, Mark |
| |
| |
| | | |
|
| | |
| |
| Publicado el 24,enero 2019 - 03:37 |
| Show us the connection string? |
| |
| |
| | | |
|
| | |
| |
| Publicado el 24,enero 2019 - 03:39 |
| Show us the connection string you have and we can tell you the answer? |
| |
| |
| | | |
|
| | |
| |
| Publicado el 17,abril 2019 - 20:45 |
Using the .NET Framework Data Provider for SQL Server
Standard Security: Server=myServerAddress;Database=myDataBase;User Id=myUsername;Password=myPassword;
Trusted Connection: Server=myServerAddress;Database=myDataBase;Trusted_Connection=True;
Conenction to a SQL Server instance: Server=myServerName\myInstanceName;Database=myDataBase;User Id=myUsername;Password=myPassword; |
| |
| |
| | | |
|
| | | | |
| | |
|