WPF Login system with SQLite using C#

Sdílet
Vložit
  • čas přidán 28. 08. 2024
  • #Sqlite #EntityFramework #wpf #login #C#

Komentáře • 62

  • @bradh6207
    @bradh6207 Před rokem +3

    Legend, this solved all the problems i was having using mysql

  • @MadhuraD-s8w
    @MadhuraD-s8w Před 5 dny

    Thank you!

  • @nushanhansana1873
    @nushanhansana1873 Před rokem

    Thank you for the video, explained very well!

  • @fooballers7883
    @fooballers7883 Před 7 měsíci

    After few changes ... got it to work... Excellent. tutorial. Thank you

  • @feeeliks2910
    @feeeliks2910 Před rokem

    Thank you for the video, explained very well!!

  • @AmirRobo
    @AmirRobo Před dnem

    wow. it's cool

  • @jassielove8538
    @jassielove8538 Před 4 měsíci

    You are amazing! Thank you ❤

  • @tristy7364
    @tristy7364 Před 2 lety +1

    This tutorial is so great, is there a way to make the input not case sensitive?

  • @nyendwa
    @nyendwa Před rokem

    Can we continute this tutorial? Dude you are a good tutor

  • @chanchan8406
    @chanchan8406 Před rokem

    hi i have an error in da.Fill(dt); what should i do?

  • @Makku293
    @Makku293 Před 2 lety

    Which provider should I use on EF6? I'm trying to link through a connection string (App.Config) an EDM to an SQLite database?

    • @TacticDevs
      @TacticDevs  Před 2 lety

      You can try System.Data.SQLite.EF6

  • @jerichosantonia6412
    @jerichosantonia6412 Před 2 lety

    thank you so much!

  • @sergsergesrgergseg
    @sergsergesrgergseg Před 2 lety +1

    what use is this.. defeats the entire purpose of a login

  • @990stars
    @990stars Před 2 lety

    how would you pass the successfully logged in user Object to the MainWindow ? without complicating things

    • @TacticDevs
      @TacticDevs  Před 2 lety

      You can write an extra constructor on the MainWindow class to take in a parameter which in this case is the user, then every time you login successfully and want to open the main window you can pass that object through the constructor. The other way is you can create a static instance of the user class that you can access throughout the application

  • @tristy7364
    @tristy7364 Před 2 lety +1

    I am using the .NET 5.0 framework and the OnStartup method isn't avaliable anymore, what can I do?

    • @tristy7364
      @tristy7364 Před 2 lety +1

      Also, what Framework is the project in this video running on?

    • @TacticDevs
      @TacticDevs  Před 2 lety

      The Onstartup method has to be overridden , you can type override in the App.xaml.cs class it will show up some suggestions of methods, check this part of the video 9:14

    • @TacticDevs
      @TacticDevs  Před 2 lety

      The Onstartup method has to be overridden , you can type override in the App.xaml.cs class it will show up some suggestions of methods

    • @tristy7364
      @tristy7364 Před 2 lety +1

      @@TacticDevs for me it is 'MainWindow.xaml.cs' class, I did some research and think the OnStartUp method is only supported by 4.0 framework, but I changed from the 4.0 framework to the 5.0 because one of the nuget packages doesn't support 4.0 framework, suggestions?

    • @TacticDevs
      @TacticDevs  Před 2 lety +1

      @@tristy7364 I used .net5 for this project ,the OnStartUp method is still supported(shorturl.at/lsuT0) it is part of the App or Application Class which mean you can only override it inside the App class (App.xaml.cs) not MainWindow , in your project there is a file named App.xaml click the expander next to it, it will reveal the (App.xaml.cs) file open that file to add the OnStartup Method

  • @gernothartung
    @gernothartung Před 2 lety

    Great stuff, thanks a lot! Thumb is up and channel subscribed
    Allow me to ask: How to prevent users from simply reading the db file and get all the usernames and passwords? I mean sqlite dbs are mainly for local use, or am i wrong?

    • @TacticDevs
      @TacticDevs  Před 2 lety

      Hi welcome, check out this video ( czcams.com/video/ZbUCgU3G1z4/video.html ) were I explain how to encrypt passwords before storing them to a database, this resolves the problem you just mentioned

    • @gernothartung
      @gernothartung Před 2 lety

      @@TacticDevs Thank you sir! I just finnished watching that video... great Channel

    • @TacticDevs
      @TacticDevs  Před 2 lety

      @@gernothartung That’s good to hear I’m glad it helped

    • @classicsracingleague9441
      @classicsracingleague9441 Před rokem

      Best practice is to prepend a 6-8 random salt to the password, then hash it to MD5. When writing your the DB, only the salt and hashed password are stored.
      Now, when the using enters his/her password, the salt is taken from the database and prepended to the password which is once again hashed to MD5. If both hashes match, let the user in. This way the actual password is never stored in the database

  • @user-ob3lu5qf2z
    @user-ob3lu5qf2z Před 8 měsíci

    I am getting user not found, I already stored username and userpassword to SQLite table, but getting same issue.

    • @TacticDevs
      @TacticDevs  Před 8 měsíci

      try using a the (DB Browser for SQLite) software to verify if the user is in the database , also make sure the save changes method called each time you add a user this will ensure the user is saved

  • @tristy7364
    @tristy7364 Před 2 lety +1

    Is there a way to save the user ID into a variable?

    • @TacticDevs
      @TacticDevs  Před 2 lety

      Yes you can save it to variable however in this case the user the ID is auto generated by the database this is because we set the ID property to a primary key this prevents duplicates,however you can define your own user ID but just make sure they’re all different you can use a hashing function to do that ,

    • @tristy7364
      @tristy7364 Před 2 lety +1

      @@TacticDevs I want to save it so a variable so that it acts as a foreign key in another table, in order to do that I need to save the user ID with the input

  • @black_sauce2478
    @black_sauce2478 Před rokem

    All in one video

  • @coldhell738
    @coldhell738 Před 2 lety

    I did everything identical to yours, but every time it says "User not found". What could be the problem?

    • @TacticDevs
      @TacticDevs  Před 2 lety

      You have to manually add the user and once you add a user make sure you save the changes to the database

    • @coldhell738
      @coldhell738 Před 2 lety

      @@TacticDevs Thanks for the answer.
      But I added as many as two users, there are no errors in the code, but every time "User not found" :(

    • @coldhell738
      @coldhell738 Před 2 lety

      I solved the problem!
      Thanks again

    • @TacticDevs
      @TacticDevs  Před 2 lety

      @@coldhell738 awesome

  • @zergzerg4844
    @zergzerg4844 Před 2 lety

    Why your object MainPage main have method ""SHOW" but my haven't ? Do I need to install some library?

    • @TacticDevs
      @TacticDevs  Před 2 lety

      No I did not install any libraryThe main page is a “window class” the window class has a method called show,make sure you’re calling the method on the right object(windows object ) And you need to create an instance before you can call the show method

    • @TacticDevs
      @TacticDevs  Před 2 lety

      @@zergzerg4844 No that’s not a problem I also use .NET5

    • @TacticDevs
      @TacticDevs  Před 2 lety

      @@zergzerg4844 Before you can use the method you need to create an instance (new object )of the window class. Example “MainWindow mywindow = new MainWindow()" then “mywindow.Show();”

  • @goccle2952
    @goccle2952 Před rokem

    So i really want to make when i have added the user to the database when he login one time he doesn't have to login again "only one time window" i mean

    • @goccle2952
      @goccle2952 Před rokem

      Only time window but if he logged in in the first time

    • @TacticDevs
      @TacticDevs  Před 11 měsíci

      Look at 2:10

  • @zenfps255
    @zenfps255 Před 2 lety

    can someone pls help me? at 14:09 i get an error when doing "var Password = PasswordText.Password;" it says 'Textbox' does not contain a definition of 'Password'

    • @TacticDevs
      @TacticDevs  Před 2 lety

      Make sure you use a “password textbox” control in the ui because the two types of textbox

    • @zenfps255
      @zenfps255 Před 2 lety

      @@TacticDevs huh

    • @TacticDevs
      @TacticDevs  Před 2 lety

      @@zenfps255 In the UI there are two textbox controls defined one is for the username and the other one is for the password,just be sure that the text box for the password is a (password textbox), The reason it’s giving you the error is probably because you are using a normal textbox instead of a password textbox. WPF has two types of textbox ,(Textbox)and (PasswordTextBox)

    • @zenfps255
      @zenfps255 Před 2 lety

      @@TacticDevs tysm, Im kinda new to this...

  • @SigneTrance
    @SigneTrance Před 2 lety

    Great tutorial. But... How to make a username from the dropdown list instead of login textbox?

    • @TacticDevs
      @TacticDevs  Před 2 lety

      Do you mean displaying previously used names in a drop-down list

    • @SigneTrance
      @SigneTrance Před 2 lety

      @@TacticDevs yes. Usernames from db displaying as dropdown list + pin code / pass as passwordbox.

    • @TacticDevs
      @TacticDevs  Před 2 lety +1

      it's not ideal to display user names and passwords in a drop-down list for security reasons however you can cache previously entered information this can be done by storing the usernames to a json file I will make a tutorial on how to do it

    • @SigneTrance
      @SigneTrance Před 2 lety +1

      @@TacticDevs I mean... Display only usernames as dropdown list... Passwords will be hidden. Its app for local users.

  • @sivasothytharsi1203
    @sivasothytharsi1203 Před rokem

    how to bind those username and password?
    could you please tell me?

    • @TacticDevs
      @TacticDevs  Před rokem

      You use the data context property to pass the the user object to the ui , Once the object is available in the UI you can then simply bind the text property to the username and password, WPF will automatically bind to the password and username because you passed the object using the data context property which is found on the window that is holding the Ui

    • @sivasothytharsi1203
      @sivasothytharsi1203 Před rokem

      @@TacticDevs thank you sir. sir how to use mvvm format to do a student registration system? could you please help me?