C# Login & Registration System with MySQL Database using XAMPP

Поделиться
HTML-код
  • Опубликовано: 19 окт 2024

Комментарии • 14

  • @xolanixola-dj6fu
    @xolanixola-dj6fu Месяц назад +1

    dynamic link libraries ?

  • @furkanykn
    @furkanykn 9 месяцев назад +1

    but doesn't this only connect to the localhost address if there is sql? so how can I connect to a general sql address with the correct password from the forms application and have it added from there? I tried but I couldn't do it

    • @kodeleap
      @kodeleap  9 месяцев назад

      Thanks for checking out my video! I understand your concern about connecting to a general SQL address instead of just localhost. Connecting to a remote SQL server involves a few additional steps compared to connecting to a local one. Here's a basic guide to help you achieve this in a C# Forms application:

    • @kodeleap
      @kodeleap  9 месяцев назад

      1. Update Connection String:
      In your C# code, you likely have a connection string that specifies the server, database, username, and password. Update the server part of the connection string to the IP address or domain name of your remote SQL server.
      *string connectionString = "Server=your_remote_server_address;Database=your_database_name;User Id=your_username;Password=your_password;";
      2. Check SQL Server Configuration:
      Ensure that your remote SQL server is configured to allow remote connections. You may need to configure the firewall settings and enable TCP/IP protocol.

  • @manantanbernard8978
    @manantanbernard8978 5 месяцев назад +1

    why it says fatal error during command execution

    • @kodeleap
      @kodeleap  5 месяцев назад +1

      kindly make sure you are not making any error.

    • @kodeleap
      @kodeleap  5 месяцев назад +1

      Normally such error is from your sql query, so kindly check your queries well and make sure there are no errors in there.

    • @manantanbernard8978
      @manantanbernard8978 5 месяцев назад +1

      Do you have a tutorial on how to make a payroll system

    • @kodeleap
      @kodeleap  5 месяцев назад +1

      @@manantanbernard8978 I'm currently working on a system like that... I will do tutorial on that soon...

  • @steveyounes
    @steveyounes 2 месяца назад +1

    vs theme name ?

    • @kodeleap
      @kodeleap  2 месяца назад

      Night owl

    • @steveyounes
      @steveyounes 2 месяца назад +1

      @@kodeleap link ?

    • @kodeleap
      @kodeleap  2 месяца назад

      @@steveyounes just use the extensions tab in Visual Studio, When the windows opens, select online and search for "Night Owl" theme and install. After the installation, just restart your visual studio and you are good to go.