How to Run SQLITE in Visual Studio Code

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

КОМЕНТАРІ • 56

  • @luis_hb99
    @luis_hb99 Рік тому +5

    You are the goat, it took me hours to get sql to work on vs code and you my friend explained it very well, I appreciate this so much. Thank you

  • @ebubeokoyeblogs
    @ebubeokoyeblogs Місяць тому +1

    you saved my night and hours of searching on sql and database. Many thanks

  • @benjaminokochi2550
    @benjaminokochi2550 2 роки тому +8

    This is a very practical walkthrough. I recommend it highly.

  • @danvillecoyle3647
    @danvillecoyle3647 3 місяці тому +2

    10/10 instruction, you're the best

  • @poupdujour
    @poupdujour 4 місяці тому +1

    Awesome, thanks. Also love that you can just right click and run queries.

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

    you saved my life, i was really stuck with a .db file , thank you!

  • @ebubeokoyeblogs
    @ebubeokoyeblogs Місяць тому

    Thank you so so much for this. This was so helpful

  • @leolee7884
    @leolee7884 2 роки тому +1

    Excelent video my friend, you got my subscribe! A big hug from Guatemala

  • @j3553hh
    @j3553hh 3 місяці тому

    Exactly what I needed. Thank you.

  • @deldridg
    @deldridg 2 роки тому +2

    Thank you for this. Very helpful! Cheers and Happy New Year from Australia - David

  • @julioclavijol
    @julioclavijol 3 місяці тому

    Thanks, Greetings from Colombia

  • @ROHAN-pg3gh
    @ROHAN-pg3gh 2 роки тому +1

    Number one!
    Ty for this tutorial sir!

  • @jeff-creations
    @jeff-creations 2 місяці тому

    Excellent, thank you sir!

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

    Straight to the point. Thank you man!

  • @m.candace4967
    @m.candace4967 3 місяці тому

    Thank you very much, this helped me a lot

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

    Great vid man! The extension page has really poor instructions and this totally got me started on the right foot. Thank you.

  • @Braveuser-x7j
    @Braveuser-x7j Рік тому

    Lot's of thanks.....❤❤❤❤❤❤

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

    Awesome tutorial for beginner

  • @namelesszx
    @namelesszx 11 місяців тому +1

    Great vid

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

    very helpful thanks!

  • @andrewzhukov9722
    @andrewzhukov9722 3 місяці тому

    instead of shortcuts, can they be displayed on the screen or be shown from the menu option?

  • @Andy-qi5nh
    @Andy-qi5nh 2 роки тому +1

    Thank you, this was helpful

  • @jameskungu8720
    @jameskungu8720 4 місяці тому

    Nice!

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

    Thank you mate, appreciated

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

    Thank you so much sir.

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

    Do we need JDBC to connect sqlite to java project in vscode ? or the sqlite extension is enough ?? please let me know

  • @valtermacicame2430
    @valtermacicame2430 6 місяців тому

    Very useful

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

    Thank you so much!

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

    Hi I already had table for sqlite how to import it to node js

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

    amazinggggg

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

    You help me a lot

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

    Thank you, you help me a lot!

  • @pane4170
    @pane4170 2 роки тому +1

    Thanks a lot

  • @asazycat5467
    @asazycat5467 5 місяців тому

    Thank you.

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

    Thanks bro

  • @nicolasdemaria2164
    @nicolasdemaria2164 2 роки тому

    thanks a lot man!!!

  • @mirlot1298
    @mirlot1298 2 роки тому +1

    Muchas gracias amigo, exelente... saludos

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

    sir we need to comment ot each time for this

  • @flavius95
    @flavius95 4 місяці тому

    I don't find the command run sqlite query

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

    thanks!

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

    ❤ gracias crack

  • @СергейКолядин-ь6я

    thanks

  • @leow5
    @leow5 2 роки тому

    Do you by any chance know how to import a csv file into a SQLite database? I am unfortunately having problems. Thanks anyway for the video!

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

      I can do it with two lines:
      .separator ;
      .import myfile.csv mytable
      From then on, the data from your csv file will be available in the table "mytable" (of course you can change this name into whatever you want)
      Note: for the separator, you can replace the semicolon ; with a comma , or whatever separator is used in your csv file. If you don't know what separator is used, you can guess first (maybe leave it as a comma or semicolon), and then you can check if it's correct, see below...
      You can check whether or not you have imported it correctly by checking the headers like so:
      .schema mytable
      If you see each header listed out separately, then the import has been done well. However, if you see all of them lumped together as a single TEXT column header, then you can see the separator in between the headers, that is the separator you were supposed to use

  • @shahedali02
    @shahedali02 8 місяців тому

    When making the table's columns I put empid , INTERGER and wondered why it wasn't working lol

  • @RinglisLuan
    @RinglisLuan 2 роки тому

    Help!! need db file to study, pls!

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

    я тебя не понял, но понял то что ты делаешь

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

    Не смогли смириться с поражением. И куда вас это привело? Снова ко индусам

  • @nrodear
    @nrodear 3 дні тому

    gg

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

    sicolait

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

    Thankyou!

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

    Thank you sir