Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
75 views

I have an ASP.NET Core 8.0 web application. In the appsettings.json I have a connection string defined. One pointing to a local database and one pointing to another database. "ConnectionStrings&...
user834252's user avatar
1 vote
0 answers
84 views

I have a .NET application that seeds data to an Azure SQL database after deployment via Azure DevOps pipelines. I'm struggling with authentication when using a connection string in Azure DevOps ...
G Clovs's user avatar
  • 3,221
-1 votes
1 answer
99 views

Firstly there's a similar question on Stack overflow, and I have tried suggestions from the responses, none of which have worked. I have SQL Server and IIS running on my development machine and have ...
Username_null's user avatar
1 vote
0 answers
45 views

I am learning to build an MEVN project. I have a MongoDB connection string that looks like this "mongodb+srv://<username>:<password>@<clustername>.abcdefg.mongodb.net/?...
lilyming's user avatar
  • 125
-1 votes
1 answer
71 views

I have following problem: I use a variable: Server=DESKTOP-156DAO6\FILEWATCHERSER;Database=testDb;User ID=florian;Password=test123321;TrustServerCertificate=true;Trusted_Connection=False for ...
Florian Berwald's user avatar
0 votes
0 answers
119 views

I am writing a python script that connects to Azure Serverless SQL and exports the rows for a given query. I am using sqlalchemy. I build the connection string connection_string = 'DRIVER={ODBC ...
Keith Miller's user avatar
0 votes
2 answers
1k views

Getting following issue: [DEBUG] .NET DNS resolution failed: nodename nor servname provided, or not known [DEBUG] Inner Exception Type: Azure.RequestFailedException when trying to connect to my Azure ...
Belkaz's user avatar
  • 1
0 votes
0 answers
47 views

I'm using System.Data.SqlClient.SqlConnectionStringBuilder to pull apart a connection string we save when loading data. In theory (although not yet in practice), the user could load the OM from one ...
Maury Markowitz's user avatar
0 votes
1 answer
80 views

I have a C# program using this connection string: Server={ServerName,Port##};Database={databasename};Trusted_Connection=True;Application Name=MyApp I'm using System.Data.SqlClient v4.8.6 in a .NET 6....
FastAl's user avatar
  • 6,277
0 votes
1 answer
279 views

with ConnectionPool( conninfo = app.config["POSTGRESQL_DATABASE_URI"], max_size = app.config["DB_MAX_CONNECTIONS"], kwargs = connection_kwargs, ) as pool: With a ...
khteh's user avatar
  • 4,280
0 votes
0 answers
85 views

Just get a new Windows 11 PC replacing my old Windows 10 PC and trying to transfer an ASP.NET Core 6 website for the last 2 days. I have done all the necessary steps, enabled IIS, copied the DB, the ...
Sylvain C.'s user avatar
  • 1,073
0 votes
2 answers
177 views

I am in the process of migrating a large solution from .NET Framework 4.8 to .NET 9.0. I used .NET Upgrade Assistant to get started. I have a long way to go. All of the projects in the solution have ...
Trint's user avatar
  • 29
1 vote
2 answers
62 views

I have an ASP.NET Core 6 Web API project. My controller will connect to a SQL Server database. When I run the app I can't get the connection string in Program.cs, it's returned as null. Here's my ...
CoderForHire's user avatar
-1 votes
1 answer
350 views

I have an Azure Function app created locally using Python code, SQL Server change tracking that tracks any operation and triggers the SQL Server trigger for further process. app = func.FunctionApp() ...
sudip's user avatar
  • 1
0 votes
0 answers
71 views

I have a server running at let’s say 10.55.1.95 that runs MySQL database engine. I try connecting to it on a different server lets say 10.55.1.98 via a connection string like sql_alchemy_conn=mysql+...
Kenart's user avatar
  • 335
0 votes
1 answer
391 views

I created an Azure function project in VS Code, using .NET 8 isolated. I followed the instructions here Develop Azure Functions by using Visual Studio Code and once I finished and deployed it, the ...
Ricker Silva's user avatar
  • 1,175
-1 votes
2 answers
160 views

I have four identical environments containing Windows Server 2019 servers running IIS and Microsoft SQL Server 2019. ASP.NET 4.7.2 applications on the IIS servers access databases on our SQL servers ...
Zachary's user avatar
  • 141
1 vote
0 answers
98 views

I have a custom configuration builder that changes database connection strings based on the current environment configuration using the concept of this answer as shown in the code below. To my ...
SyndRain's user avatar
  • 3,932
1 vote
1 answer
120 views

I have a severe problem preventing some of my Excel sheets from working properly. Till version 2408 of Excel 365, all vba code in it worked just fine. Since the update from September (2024) to version ...
Stefan Lippitsch's user avatar
0 votes
1 answer
99 views

I have an app that is called on a remote web hosting server. It calls up customer details and amends records in response to notification of a sale. It used to work fine but recently it does not. The ...
Mike Vaughan Edwards's user avatar
0 votes
1 answer
471 views

I am trying to have different sets of connection strings based on the build configuration. (Debug, Release, Beta, LocalTraining, etc...) The use of Config Transform files, such as web.beta.config can ...
SyndRain's user avatar
  • 3,932
0 votes
1 answer
59 views

Using VBA I can make a dsnless connection to oracle in the following way. Driver={Oracle in OraClient21Home1};DBQ=<<string_returned_from_tnsping>>;User Id=fake_user;Password=fake_password; ...
Z T Minhas's user avatar
0 votes
1 answer
89 views

I have a test application that uses EF and it is using Context Factory to create context for use with migration. I can call add migration and it generates suitable migration in my project, but when I ...
mans's user avatar
  • 18.4k
1 vote
1 answer
282 views

Issue: In VS Code, I created a .NET Web API application using Entity Framework. To activate .NET commands, I always have to run the following command: export PATH="$PATH:$HOME/.dotnet/tools" ...
Khashayar Rohani's user avatar
0 votes
1 answer
83 views

I am trying to connect to an application registered at MS Azure that enables me to retrieve information from CRM (connecting to D365). I am using HttpClient library. When I try to send a GET method to ...
user27480649's user avatar
0 votes
1 answer
150 views

I am encountering the error below. I tried both with jdbc:oracle:thin:@ and without it. I didn't understand what is the issue? The error is: Unable to connect to the DB. Check if DB connection ...
Carlos Estaban Jimenez's user avatar
0 votes
4 answers
413 views

I have a WPF app using C# that connects to a MS Access file to read and write data input by the user, and there are around 20 users that use the application almost daily (at one time, there may be ...
krobelusmeetsyndra's user avatar
0 votes
1 answer
152 views

In the .net core I'm having a connection string something like this, Data Source=.\\SQLEXPRESS;Initial Catalog=TestDB;MultipleActiveResultSets=True;User Id=AdminUser;Password=Admin;Integrated Security=...
Karan Parmar's user avatar
0 votes
2 answers
99 views

I have a web app on Azure that I am trying to connect to a mysql db hosted on aiven.io. The connection works if I hard code the connection string in appsettings.json. When I enter the exact same ...
TorenRob's user avatar
-2 votes
1 answer
682 views

I am running a local MongoDB docker using following command docker run --name mongodb -p 27017:27017 -d mongodb/mongodb-community-server:latest This works fine and I can connect to this using ...
sachin p's user avatar
1 vote
1 answer
386 views

created Linked service to Azure SQL database in Synapse Analytics that uses Authentication type " System Assigned Managed Identity". Than referencing it in PySpark Notebook. Method ...
Balbeer Singh's user avatar
0 votes
1 answer
314 views

I am trying to copy a blob from one container to another and am creating a BlobServiceClient using a connection string as described here. However I am running into the following error. Error ...
Siri Mudunuri's user avatar
0 votes
0 answers
120 views

I have a Java Spring Boot app deployed on Microsoft Azure that is connected to a PostgreSQL database. I want to connect to the database using credentials stored in Azure as Connection strings. The ...
paulfilip's user avatar
0 votes
1 answer
666 views

I have this local.settings.json in my local Azure function (Timer trigger) { "IsEncrypted": false, "Values": { "AzureWebJobsStorage": "", "...
María Casasola Calzadilla's user avatar
0 votes
1 answer
186 views

I am doing a maintenance on several Python applications, which use connections to Redis services. Due to an infrastructure need, I am reducing the number of variables we will have in the environment ...
Gustavo Gonçalves's user avatar
0 votes
0 answers
71 views

In Powerpoint, I'm writing VBA code to read data from different data source files. To get data from Excel, I have no problem creating a recordset by using a connection string as follows: With cn ....
thardy's user avatar
  • 1
1 vote
1 answer
333 views

I have been working with Google Cloud Run and PostgreSQL for some years. Now I am trying to set up a new web application for hours, created the postgres instance, set the password to the user postgres,...
Emaborsa's user avatar
  • 2,940
0 votes
1 answer
404 views

I want to connect to azure blob storage via my React-Native Application. I am getting this error: [Error: Account connection string is only supported in Node.js environment] Does this mean that I ...
Freyal Shah's user avatar
0 votes
0 answers
66 views

I want to create an Excel file that can fetch data from SQL. This should be with embedded username & password so I can pass on the file to a colleague who doesn't have SQL permissions. I have made ...
EpicHerring's user avatar
0 votes
1 answer
703 views

I have a problem where I have a Power BI semantic model in 2 different workspaces, one for Test and one for Prod. A user is accessing the dataset via a PivotTable in Excel connecting with "From ...
Patrick Baumann's user avatar
0 votes
0 answers
215 views

I'm trying to connect to a new SQL Server Express database (SQL Server 16.0.1000) and I can establish the connection with a .BAT file and also SSMS, but not in VBA. The name in SQL Server Management ...
S. Jagermanjensen 's user avatar
1 vote
2 answers
481 views

I am facing a little problem with my NHibernate configuration connection with SQL server database. My App structure is just for simple test. Here is my hibernate.xml.cfg: <?xml version="1.0&...
Oussema's user avatar
  • 41
0 votes
2 answers
90 views

I am having a problem with making an Access passthrough query in the following code which uses Oracle as the database: Sub doit() Dim db As DAO.Database Dim qdf As DAO.QueryDef Dim rs As ...
Z T Minhas's user avatar
0 votes
1 answer
1k views

I built an excel file with macro code that accesses a lot of data on one of its own worksheets. I use an ADO connection so that I can use SQL on the data. This worked fine on my local computer. When I ...
Paul K.'s user avatar
  • 105
0 votes
0 answers
55 views

Currently I am using .NET 8 and AddDbContext with UseSqlServer: services.AddDbContext<DbContext>((provider, options) => { options.UseSqlServer(dbConnectionString);...
Odrai's user avatar
  • 2,433
-2 votes
1 answer
49 views

What is the Best Location for connection string in the Program.cs or Appsetting.json and i want To know about the hard codding more .. Well I put the connection string in the appsetting.json and ...
Jack Rabbit's user avatar
0 votes
0 answers
393 views

I've started working on an older C# API application (over 10+ years when it was created), it has recently been updated by another dev somewhat to use .NET framework 4.8 with EF 6 (but still with the ...
John's user avatar
  • 3,934
0 votes
0 answers
86 views

I am trying to link my program to my google drive but only for the database but it gives me an error message. In my program properties - settings - I have the name "RatesConnectionString" ...
Mike's user avatar
  • 23
-1 votes
1 answer
343 views

I wanted to check in program.cs "force" after "builde", when the application is loaded, if it is local (127.0.0.1), it will use the local database (LocalConnection), and if it is a ...
مهدی's user avatar
  • 452
2 votes
1 answer
345 views

I am working on an asp.net core web api project and its hosted on azure app service. What I'm trying is to put my cosmos db connection string in app service connection string. I added a document db ...
wasi hyder's user avatar

1
2 3 4 5
93