How to Run SQLITE in Visual Studio Code

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 ก.ย. 2024
  • In this video, I will explain how to set up SQLite on Vs code. You will master how to run SQLite on a visual studio in a proper way.
    Visual Studio Code installation link
    👇👇👇👇
    code.visualstu...
    Subscribe to our channel to get updates and announcements regarding my paid SQLITE course for Free.
    🔔 If you like the video, Please Like, Comment, and Subscribe to my TH-cam channel
    th-cam.com/users/tutori...
    #tutorialbrain
    #sqlite
    #vscode
    #sqlitevscode
    #sqlliteOnVsCode
    #visualstudiocode
    🚩Let’s connect on social:
    Website: www.tutorialbr...
    Facebook: / tutorialbrain
    Twitter: / tutorial_brain
    LinkedIn: / tutorialbrain
    Complete Visual Studio Tutorial Playlist:
    • Visual Studio Code Tut...
    How to Run Java on Visual Studio Code:
    • How to Install & Run J...
    ‪@TutorialBrain‬

ความคิดเห็น • 46

  • @luis_hb99
    @luis_hb99 10 หลายเดือนก่อน +3

    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

  • @benjaminokochi2550
    @benjaminokochi2550 ปีที่แล้ว +7

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

  • @juandiegoorozco5531
    @juandiegoorozco5531 ปีที่แล้ว

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

  • @leolee7884
    @leolee7884 ปีที่แล้ว +1

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

  • @jameskungu8720
    @jameskungu8720 8 วันที่ผ่านมา

    Nice!

  • @ROHAN-pg3gh
    @ROHAN-pg3gh ปีที่แล้ว +1

    Number one!
    Ty for this tutorial sir!

  • @deldridg
    @deldridg ปีที่แล้ว +1

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

  • @machinimaaquinix3178
    @machinimaaquinix3178 ปีที่แล้ว

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

  • @tiagomanuel7616
    @tiagomanuel7616 10 หลายเดือนก่อน

    Straight to the point. Thank you man!

  • @Andy-qi5nh
    @Andy-qi5nh ปีที่แล้ว +1

    Thank you, this was helpful

  • @asazycat5467
    @asazycat5467 หลายเดือนก่อน

    Thank you.

  • @regular2024
    @regular2024 ปีที่แล้ว

    very helpful at last time

  • @alvin47k
    @alvin47k ปีที่แล้ว

    Awesome tutorial for beginner

  • @namelesszx
    @namelesszx 7 หลายเดือนก่อน +1

    Great vid

  • @gianlucaalfieri3607
    @gianlucaalfieri3607 ปีที่แล้ว

    Thank you mate, appreciated

  • @rupika213
    @rupika213 3 หลายเดือนก่อน

    Thankyou!

  • @mirlot1298
    @mirlot1298 2 ปีที่แล้ว +1

    Muchas gracias amigo, exelente... saludos

  • @user-sp8ne7hj3n
    @user-sp8ne7hj3n 11 หลายเดือนก่อน

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

  • @beforeandafterphotos
    @beforeandafterphotos 6 หลายเดือนก่อน

    very helpful thanks!

  • @akojusowmya8626
    @akojusowmya8626 11 หลายเดือนก่อน

    Thank you so much sir.

  • @user-dq3qf2to1d
    @user-dq3qf2to1d 2 หลายเดือนก่อน

    Thanks bro

  • @AlejandroBelloRD
    @AlejandroBelloRD 7 หลายเดือนก่อน

    Thank you so much!

  • @diegs5001
    @diegs5001 ปีที่แล้ว

    Thank you, you help me a lot!

  • @pane4170
    @pane4170 ปีที่แล้ว +1

    Thanks a lot

  • @valtermacicame2430
    @valtermacicame2430 2 หลายเดือนก่อน

    Very useful

  • @danielborgesgoncalves8591
    @danielborgesgoncalves8591 ปีที่แล้ว

    amazinggggg

  • @wotko1785
    @wotko1785 ปีที่แล้ว

    You help me a lot

  • @nicolasdemaria2164
    @nicolasdemaria2164 ปีที่แล้ว

    thanks a lot man!!!

  • @luisberalopez2466
    @luisberalopez2466 ปีที่แล้ว

    ❤ gracias crack

  • @user-bp3mx5id2z
    @user-bp3mx5id2z ปีที่แล้ว

    thanks

  • @manjushabezawada6384
    @manjushabezawada6384 5 หลายเดือนก่อน

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

  • @chaymajebri6670
    @chaymajebri6670 10 หลายเดือนก่อน

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

  • @shahedali02
    @shahedali02 3 หลายเดือนก่อน

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

  • @SankerPAMIDIMARRI
    @SankerPAMIDIMARRI 5 หลายเดือนก่อน

    sir we need to comment ot each time for this

  • @leow5
    @leow5 ปีที่แล้ว

    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

  • @RinglisLuan
    @RinglisLuan 2 ปีที่แล้ว

    Help!! need db file to study, pls!

    • @TutorialBrain
      @TutorialBrain  2 ปีที่แล้ว

      What sort of db files do you need?

  • @santuquiiii
    @santuquiiii 11 หลายเดือนก่อน

    sicolait

  • @RusaysTV
    @RusaysTV ปีที่แล้ว

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

  • @romul2640
    @romul2640 ปีที่แล้ว

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

  • @druadiza7639
    @druadiza7639 5 หลายเดือนก่อน

    Thank you sir

  • @SydneyApplebaum
    @SydneyApplebaum 7 หลายเดือนก่อน

    thanks!