Setup SQLite Database in Visual Studio (14/23)

Поділитися
Вставка
  • Опубліковано 12 січ 2025

КОМЕНТАРІ • 21

  • @trxe420
    @trxe420 15 днів тому +1

    It's amazing how hard this info is to find, I never use SQLite and it was pissing me off that I couldn't view it. For those that are using the core version and migrations, if you have already updated or created the db the toolbox will still work to view the tables. Just add a connection and then browse to it (toolbox was unable to locate it in my solution).

  • @UlisesGB.
    @UlisesGB. Рік тому +1

    Thank you very much for the video! You just saved my life. Pura vida!

  • @emilie1977
    @emilie1977 Рік тому +1

    Thank you! You saved me

  • @shahzaibhassan6504
    @shahzaibhassan6504 Рік тому +1

    Finnaly an Dated tutorial.

  • @OrisonAlmeida
    @OrisonAlmeida Рік тому +1

    Thanks!

  • @222amonra
    @222amonra 10 місяців тому

    "Unable to find the requested .NET framework data provider. It might not be installed" error. I'm using .NET framework 4.8 and using VB script.

  • @BADREDDINESLIOUI
    @BADREDDINESLIOUI 9 місяців тому

    i can't find the sqlite after i install it in tools or in vew ? help me plz

  • @2003Abdulla
    @2003Abdulla 8 місяців тому +1

    legend

  • @yanamyron768
    @yanamyron768 Рік тому

    Dont u know what to do with the error " namespace "System::Data" has no member "SQLite" even after instaling System.Data.SQLite? It's c++ clr empty progect.

    • @rorymulcahey
      @rorymulcahey  Рік тому

      Check your install:
      Go to Project > Manage NuGet Project and see if System.Data.SQLite is installed.
      Go to Solution Explorer (on right by default) > References and see if System.Data.SQLite is installed.

  • @maynardcabanizas8170
    @maynardcabanizas8170 7 місяців тому

    No package found😢

  • @rrenildopereiraa
    @rrenildopereiraa 6 місяців тому +1

    thx friend yr a friend! o/

  • @irfannaseef
    @irfannaseef 7 місяців тому

    Please share the database helper code file

  • @zerogliff
    @zerogliff 11 місяців тому

    I use SQLiteStudio instead of DB browser

  • @muhammadhadiputrajamal6638
    @muhammadhadiputrajamal6638 Рік тому

    A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 50 - Local Database Runtime error occurred.
    Error occurred during LocalDB instance startup: SQL Server process failed to start.
    Why 😭🥲

    • @rorymulcahey
      @rorymulcahey  Рік тому

      This video is about SQLite, not SQL Server. Based on your error it appears you are trying to setup SQL Server.

    • @zeelock2926
      @zeelock2926 10 місяців тому

      I had a similar problem. The problem was that I was using SqlConnection instead of SQLiteCommand. It looks like all sql... has the same but SQLite... just one is for servers and one is for the light version.