Tagged: Server SQL
- This topic has 8 replies, 4 voices, and was last updated 2 months ago by
xawomo50.
-
AuthorPosts
-
March 26, 2023 at 1:39 pm #52918
I’ve connected to my local database on my machine as per the connection string, but I’m unable to see the tables described in the migration folders. What could be the reason for this, and am I making any mistakes?
March 26, 2023 at 1:44 pm #52920Im using the free Quick-Application Startup (Angular 15 & ASP .NET 7 Web Api) Project from Visual Studio Marketplace
March 26, 2023 at 1:47 pm #52924Interestingly, when I start the project, it runs without any errors! This adds to the confusion about not being able to see the tables after connecting to the local database.
March 26, 2023 at 7:43 pm #52936If you haven’t modified the connection string and you’re on Windows you can use this connection string to connect to the default Development database:
(localdb)\MSSQLLocalDBMarch 27, 2023 at 7:59 am #52956Thanks you very much
May 2, 2023 at 9:20 am #53683My appsetting.json looks like this.
“ConnectionStrings”: {
“DefaultConnection”: “Server=(localdb)\MSSQLLocalDB;Database=QuickApp;Trusted_Connection=True;MultipleActiveResultSets=true”
},The project builds successfully but I can’t see the database and any tables in MySQL Server Management Studio.
Can you help me, please?
May 2, 2023 at 10:31 am #53686My appsetting.json looks like this.
“ConnectionStrings”: {
“DefaultConnection”: “Server=(localdb)\MSSQLLocalDB;Database=QuickApp;Trusted_Connection=True;MultipleActiveResultSets=true”
},The project builds successfully but I can’t see the database and any tables in MySQL Server Management Studio.
Can you help me, please?
The ConnectionString you specified points to an SQL Local Database and not a “MySQL” server.
You can connect to this using the “Microsoft SQL Server Management Studio” or any MS SQL database management tool of your choice using
(localdb)\MSSQLLocalDBas the server name.October 1, 2025 at 8:05 am #66070It usually happens if the connection is made to the server but the wrong database is selected, or your user account doesn’t have the right permissions to view the tables. Double-check that:
You’re connecting with the correct database name.
The user has privileges to access and view tables.
Tables actually exist (sometimes they don’t get created if migrations or imports fail).
If you want a step-by-step check on database setup and common connection issues, this guide may help: https://barberhairfade.com/ -
AuthorPosts
- You must be logged in to reply to this topic.
