Janek
Janek
CC#
Created by Janek on 6/6/2024 in #help
✅ Why I'm getting ArgumentException/System.Windows.Markup.XamlParseException exception?
nvm, this was ridiculous.. I used ctrl+r to rename dg_input_AutoGeneratingColumn to correct form and it did not update it on xaml file.. I'm so stupid..
2 replies
CC#
Created by Janek on 5/28/2024 in #help
✅ Microsoft sql unable to connect. What I'm missing?
SQL Server password policy requirements because it is too short... Edit, seems like that is not all :S Got it to work. Thank you so much @Pobiega !
49 replies
CC#
Created by Janek on 5/28/2024 in #help
✅ Microsoft sql unable to connect. What I'm missing?
ohh, such a stupid error..
49 replies
CC#
Created by Janek on 5/28/2024 in #help
✅ Microsoft sql unable to connect. What I'm missing?
Yeah same issue, running for like 10 seconds then shutting down :S
49 replies
CC#
Created by Janek on 5/28/2024 in #help
✅ Microsoft sql unable to connect. What I'm missing?
I found something similar, but it kept shutting down. Let me try again.
49 replies
CC#
Created by Janek on 5/28/2024 in #help
✅ Microsoft sql unable to connect. What I'm missing?
I'm new to this all, so I probably failed to write working docker-compose.yml. I also tried to google and felt like I found decent answers, but no success
49 replies
CC#
Created by Janek on 5/28/2024 in #help
✅ Microsoft sql unable to connect. What I'm missing?
I tried to get MSSQL to work with docker but no success, so I moved to mysql.
49 replies
CC#
Created by Janek on 5/28/2024 in #help
✅ Microsoft sql unable to connect. What I'm missing?
ahh, I totally forgot that it can be different on different sql.. I used ; before (https://www.connectionstrings.com/sql-server-2008/) and after that I used ,
49 replies
CC#
Created by Janek on 5/28/2024 in #help
✅ Microsoft sql unable to connect. What I'm missing?
I used docker to set up mysql
services:
mysql:
container_name: mysql_db
restart: always
image: mysql:latest
environment:
MYSQL_ROOT_PASSWORD: 'root'
MYSQL_USER: 'admin'
MYSQL_PASS: 'admin'
volumes:
- mysql_db_data:/var/lib/mysql
ports:
- "3307:3306"
volumes:
mysql_db_data:
services:
mysql:
container_name: mysql_db
restart: always
image: mysql:latest
environment:
MYSQL_ROOT_PASSWORD: 'root'
MYSQL_USER: 'admin'
MYSQL_PASS: 'admin'
volumes:
- mysql_db_data:/var/lib/mysql
ports:
- "3307:3306"
volumes:
mysql_db_data:
internal string Server { get; private set; } = "127.0.0.1, 3307";
internal string Username { get; private set; } = "root";
internal string Password { get; private set; } = "root";
internal string Database { get; private set; } = "mysql_db";
internal string Server { get; private set; } = "127.0.0.1, 3307";
internal string Username { get; private set; } = "root";
internal string Password { get; private set; } = "root";
internal string Database { get; private set; } = "mysql_db";
I can't really see what part is wrong..
49 replies
CC#
Created by Janek on 5/28/2024 in #help
✅ Microsoft sql unable to connect. What I'm missing?
?
49 replies
CC#
Created by Janek on 5/28/2024 in #help
✅ Microsoft sql unable to connect. What I'm missing?
password
49 replies
CC#
Created by Janek on 5/28/2024 in #help
✅ Microsoft sql unable to connect. What I'm missing?
But I don't get why access is denied. I have full access on MySql Workbench with same username
49 replies
CC#
Created by Janek on 5/28/2024 in #help
✅ Microsoft sql unable to connect. What I'm missing?
But I don't really understand why it changes ip address to private from local.. This is something totally new to me
49 replies
CC#
Created by Janek on 5/28/2024 in #help
✅ Microsoft sql unable to connect. What I'm missing?
No description
49 replies
CC#
Created by Janek on 5/28/2024 in #help
✅ Microsoft sql unable to connect. What I'm missing?
@Pobiega Do you know why it tries to connect to 172.18.0.0.1 instead of 127.0.0.1?
49 replies
CC#
Created by Janek on 5/28/2024 in #help
✅ Microsoft sql unable to connect. What I'm missing?
I see. I was wondering why the hell my code is not working. This explains everything. Thank you!
49 replies
CC#
Created by Janek on 5/28/2024 in #help
✅ Microsoft sql unable to connect. What I'm missing?
Wait, really?
49 replies