Installation and usage of SQLite in Windows

  Рет қаралды 5,329

Bisqwit

Bisqwit

Күн бұрын

Пікірлер: 105
@AkshayKumarX
@AkshayKumarX 3 ай бұрын
Hello Bisqwit's students, you have been blessed to be able to receive an education from the man, the myth and the legend himself.
@DiggOlive
@DiggOlive 3 ай бұрын
wake up babe, we're moving to finland
@Humble_Electronic_Musician
@Humble_Electronic_Musician 3 ай бұрын
I don't speak Finish, but still am very happy with a new Bisqwit video!
@Bisqwit
@Bisqwit 3 ай бұрын
As usual with my videos, captions are provided!
@Humble_Electronic_Musician
@Humble_Electronic_Musician 3 ай бұрын
@@Bisqwit Thanks 🙂 I watched without subtitles, without knowing Finish and could still follow along perfectly. So very clear video 👍 God bless you!
@JoeBurnett
@JoeBurnett 3 ай бұрын
Good to see you back. Thank goodness for English subtitles!
@GrepGaming
@GrepGaming 3 ай бұрын
Writing my chip-8 interpreter in rust after doing it in c++. Love the channel
@matias-dev
@matias-dev 3 ай бұрын
I don't remember why i had notifications on but this was a great tutorial, thank you for making it, will try it out this way!
3 ай бұрын
For people learning finnish language, this is really cool!
@channel11121
@channel11121 3 ай бұрын
It is!
@oramatash
@oramatash 3 ай бұрын
that language sounds like ta ta ta ta ta ta ta tapatapatapatapa
@Bisqwit
@Bisqwit 3 ай бұрын
Finnish is very rhythmical indeed. In fact, phoneme length plays a crucial role in Finnish.
@sneak3009
@sneak3009 3 ай бұрын
I neither need a guide on this topic nor speak Finnish yet here I am. Your students are lucky.
@grumpyssandbox8363
@grumpyssandbox8363 3 ай бұрын
Glad you're doing well Bisqwit! Wishing you the best!
@philo23
@philo23 3 ай бұрын
pro tip: If you click on the address bar, replace the address with “cmd” and hit enter, it opens cmd up to the current folder
@Bisqwit
@Bisqwit 3 ай бұрын
Confirmed. I only learned this when I asked for reviews and verification from Discord users. Not many people in general seem to know it.
@Chriva
@Chriva 3 ай бұрын
I salute you for that trick! :D
@BradenBest
@BradenBest 3 ай бұрын
what the fuck? That's so weird. I'll have to remember that. There used to be a thing where you could right click in a folder and there was an option to "open command window here", but I haven't seen that option in years
@Chriva
@Chriva 3 ай бұрын
@@BradenBest They've replaced it with powershell or, if you have installed it, Microsoft terminal. Seem to recall one having to push shift as you right-click to un-hide the option on some unknown prior version of Windows in the past but could be misremembering.
@philo23
@philo23 3 ай бұрын
@@BradenBest ~as far as I know, it'll work with any .exe in your $PATH that accepts a folder as its first argument~ edit: ignore me, this is wrong
@educate9946
@educate9946 3 ай бұрын
I worked as a teaching assistant ten years ago, trying my best to explain how to set PATH and so on in Windows. It was, well, let's call it exciting. This reminds me of that.
@Mobay18
@Mobay18 3 ай бұрын
Pretty cool, I used SQLite from a dev environment before, but never knew interacting with it was so easy outside of the dev environment.
@EzequielCarvalho
@EzequielCarvalho 3 ай бұрын
I missed your videos. Hugs from Brazil
@petereskileskilsson
@petereskileskilsson 3 ай бұрын
Thanks for the video! Do you think the NES was the defining console for our generation, Gen X?
@Bisqwit
@Bisqwit 3 ай бұрын
I have no idea how the generation designations go, but I am inclined to agree with that assessment.
@taeril8442
@taeril8442 3 ай бұрын
Yay! New video :) I prefer to type in Explorer alt+d to highlight path (you've done it with mouse) and then type there cmd. Faster and I'm already in right directory :D Reopening database was great moment to tell that it can be done also as command line argument, with filename completions and less typing (no .open). Overall looks like good introduction, but it's hard to judge at what total beginners can trip, and how to balance density of given knowledge.
@Bisqwit
@Bisqwit 3 ай бұрын
Yes, alt+d and cmd would have been more efficient. I learned of both only after I had made this video. I contemplated whether to remake that part, but I then thought, it doesn’t really do harm to teach the “cd” command, as it subtly reinforces the concept of current working directory, that comes up time to time again. I also covered the usage of the commandline argument later in the video, but starting with .open seemed to flow better when the sqlite instance was already open. Thank you for the comment, I appreciate it.
@darealshinji
@darealshinji 3 ай бұрын
Installation through winget package manager command is possible too.
@Bisqwit
@Bisqwit 3 ай бұрын
@@darealshinjiOn which systems? Never heard of it.
@bug1083
@bug1083 Ай бұрын
@@Bisqwit It's a package manager built into Windows. However, I'm ensure if this package manager is Windows 11 only or supported and installed on both 10 and 11.
@JoLiKMC
@JoLiKMC 3 ай бұрын
Finnish, huh? Alright. Appreciate the tutorial, and appreciate the subtitles. As always, this was informative. Thank you.
@lMINERl
@lMINERl 3 ай бұрын
nice to see you back
@yyny0
@yyny0 3 ай бұрын
One confusing part about CD is that it will not change directory to another drive, so `cd "D:\..."` won't work, and you will have to type `D:` to switch drives as well.
@Bisqwit
@Bisqwit 3 ай бұрын
That's true. Should have thought of that. There's always something. Not only is it a hostile platform for developers, it's also a hostile platform for tutorial writers.
@charlesthethobe9300
@charlesthethobe9300 3 ай бұрын
Or use the /d switch `cd /d "E:\..."` It changes both the directory and the current drive.
@BradenBest
@BradenBest 3 ай бұрын
supplemental information: * cd stands for change directory * if you use a command a lot, you don't have to navigate to its directory every time to run it, you can go into your environment variables settings and add the directory where the exe is located to your %PATH%, and then you can use the program (sqlite3 in this case) anywhere you want as if it were a regular command * you can change your environment variables by opening explorer, right clicking "This PC" or "My Computer" (depends on windows version), properties, advanced system settings, environment variables (button on the bottom), if you just look around a bit, you'll find it
@Bisqwit
@Bisqwit 3 ай бұрын
Good tips. However, %PATH% does not set the current working directory, which determines where the database files will be accessed from.
@BradenBest
@BradenBest 3 ай бұрын
@@Bisqwit True, and I see that as a benefit--rather than have all your databases in the same folder as sqlite3, you can organize them in the way that makes the most sense.
@Bisqwit
@Bisqwit 3 ай бұрын
The reason this video was made is because students keep having trouble with their database file locations. They download the file in some folder, launch sqlite and try to access the file, but they only end up creating a blank database in some completely unrelated folder. It is the single most time-consuming recurring thing that comes up when I assist the students.
@vildis.
@vildis. 3 ай бұрын
Voit myös kirjottaa "cmd" suoraan resurssienhallinnan polun kohtaan joka avaa cmd:n kasioon suoraan
@focuseletronica
@focuseletronica 3 ай бұрын
O conteúdo aqui é fantástico... Que bom ver você postar mais uma obra prima. Grato por compartilhar conhecimento.
@channel11121
@channel11121 3 ай бұрын
Please do more Finnish-language videos :)
@Veso266
@Veso266 3 ай бұрын
Yey a new video Thats the longest finish video I have seen from u Do u always speak that fast, or is this some kind of dialect, cuz this sounds like a computer (the flow of voice is so consistent and fast) :)
@Bisqwit
@Bisqwit 3 ай бұрын
I actually spoke slower than normal in this video…
@Veso266
@Veso266 3 ай бұрын
@@Bisqwit oh ok, what kind of accent are u speaking Because if you see how this guy speaks: kzbin.info/www/bejne/haPXf2mkZtt7nJo Its way slower Sorry for personal questions, just a foreigner intrasted in finish :)
@Bisqwit
@Bisqwit 3 ай бұрын
Different people speak differently. Here probably the important difference is that Lauri was not reading a script, but pausing to think and to choose his words, etc. I was mostly speaking kirjakieli, literal language, while Lauri mostly speaks Tampere dialect (which is just common Southern Finnish, with slight pronounciation differences).
@Veso266
@Veso266 3 ай бұрын
@@Bisqwit you saw my comment Wow, I thought I was censored again :) I do wonder how to bypass this comment scanning, maybe encode my letters with different character set or something
@Bisqwit
@Bisqwit 3 ай бұрын
@@Veso266 Actually those methods are easily detectable by an algorithm and reek of spam&scam. The only thing they fool is humans.
@Rahul-ys3yh
@Rahul-ys3yh 3 ай бұрын
Hello Bisqwit, looking forward for the multi-threading from ground-up series from you since a long time. Please consider our request.
@Bisqwit
@Bisqwit 3 ай бұрын
Didn’t I already make a video series on parallelism?
@crenio5
@crenio5 3 ай бұрын
Do you have gallstone problems?
@Bisqwit
@Bisqwit 3 ай бұрын
Not that I know. Why?
@kelo.0
@kelo.0 3 ай бұрын
Holding shift and right clicking on an empty spot in the explorer window shows an option to open the CMD.exe pointing to the current directory too.
@Bisqwit
@Bisqwit 3 ай бұрын
@@kelo.0 Only on some Windows versions or installations. Doesn't do so on mine.
@weegeeweeg
@weegeeweeg 3 ай бұрын
Thanks Bisqwit. I don't know Finnish and I don't like Windows 8 or higher but I like your videos.
@m4rt_
@m4rt_ 3 ай бұрын
Reminds me of the time I had to try and solve an issue I had, and the only resource I found on it was a video tutorial in German ... I don't speak German.
@Bisqwit
@Bisqwit 3 ай бұрын
This video, though, has subtitles.
@SuperNolane
@SuperNolane 3 ай бұрын
Kiitos videosta!
@acos21
@acos21 3 ай бұрын
I will be honest: after 8 months silence from you i expected something more when i saw the new video notification.
@Bisqwit
@Bisqwit 3 ай бұрын
I know, and I am sorry. This video was not really meant for this channel’s primary audience either, as it was written for some particular course, but I thought, can’t do harm to publish it either. I have previously published similar videos on my Extra channel instead (kzbin.infovideos). However, those videos were more closely tied with the course’s tasks, while this was a bit more general.
@felixgertrude9311
@felixgertrude9311 3 ай бұрын
SQLite is the GOAT
@GiygasForPresident
@GiygasForPresident 3 ай бұрын
Can you do one for Debian/Ubuntu?
@Bisqwit
@Bisqwit 3 ай бұрын
The desktop environments for Linux are so numerous that I don't think I can even give a general instruction how to launch a terminal window. I mean, I could hit alt-F2 and type xterm, but does that shortkey even work on anything other than Cinnamon? Many systems don't have xterm installed, they've got some other terminal. Debian has /usr/bin/x-terminal-emulator, but do other Linux distributions have the same? Does Ubuntu? Does Kubbli? I don't know.
@GiygasForPresident
@GiygasForPresident 3 ай бұрын
@@Bisqwit Yeah, 99% of the time, I don't even use a desktop environment, I do everything by CLI to save resources on the machine.
@jlmg3543
@jlmg3543 3 ай бұрын
Paren todo, Bisqwit subio video!!
@woj95
@woj95 3 ай бұрын
I was expecting him speaking English, and at first didn't understand a thing and thought I had a stroke 😂
@Logicatube
@Logicatube 3 ай бұрын
Bisqwit is genius
@0xdeadbeef131
@0xdeadbeef131 3 ай бұрын
Goat uploaded
@lrobertiii
@lrobertiii 3 ай бұрын
Did not expect this
@ivandelgadov.6806
@ivandelgadov.6806 3 ай бұрын
Saludos desde república dominicana.
@Bisqwit
@Bisqwit 3 ай бұрын
Hello!
@kenoxys
@kenoxys 3 ай бұрын
Installation and usage of SQLite in Linux
@chetana9802
@chetana9802 3 ай бұрын
Would be nice to add English Audio
@Bisqwit
@Bisqwit 3 ай бұрын
KZbin videos can only have one audio track (or at least, I don’t have means to add another track without replacing the current one, and even then KZbin only provides means to replace it with some stock music).
@leocarvalho8051
@leocarvalho8051 3 ай бұрын
Why english title if video not in english?
@Bisqwit
@Bisqwit 3 ай бұрын
Title, description, and subtitles are all provided in both Finnish and English. Audio, however can only be one language.
@DiggOlive
@DiggOlive 3 ай бұрын
Titles are automatically presented by KZbin based on your device's region settings.
@leocarvalho8051
@leocarvalho8051 3 ай бұрын
@@DiggOlive oh ok. Any way to disable it as a user? I used to skip every indian channel because most were in hindi
3 ай бұрын
​@@Bisqwit Actually, KZbin now allows for different audio tracks that viewers can select in the player. (I'm not suggesting that you have to do that extra work, I'm just pointing out the possibility.)
@Arti9m
@Arti9m 3 ай бұрын
I do not believe multiple audio tracks are available to everyone. Is this functionality even out of testing phase?
@woahhhhhh9571
@woahhhhhh9571 3 ай бұрын
precompiled binaries for windows 🗣🗣🗣
@Bisqwit
@Bisqwit 3 ай бұрын
Okay okay😒. I added in the video description now: SUBTITLES/CAPTIONS ARE AVAILABLE. ENABLE THEM IF YOU NEED THEM. Looks like I have to explicitly say that, or otherwise people don’t realize that subtitles are a thing that exists.🙄
@gnu-lynx2501
@gnu-lynx2501 3 ай бұрын
not the Bisqwit I expected :( lol sql windows :D
@Amberlynn_Reid
@Amberlynn_Reid 3 ай бұрын
This is like how they installed jetfuel lite on the twin towers
@DiggOlive
@DiggOlive 3 ай бұрын
(Translator's note: pista means dot)
@Bisqwit
@Bisqwit 3 ай бұрын
Piste
@v3ldin
@v3ldin 3 ай бұрын
*Finish**Finish* Precomipled binaries for Windows *Finish**Finish**Finish*
@Bisqwit
@Bisqwit 3 ай бұрын
@@v3ldin Subtitles - did you forget to enable?
@LasRozasDeMadrid
@LasRozasDeMadrid 3 ай бұрын
Repent, you infidels! I knew he would come back!
@kallebanan1924
@kallebanan1924 3 ай бұрын
Wait so are you a teacher now?
@Bisqwit
@Bisqwit 3 ай бұрын
I have helped with the teaching and designing material for certain CS courses for two years already, as a side job.
@kallebanan1924
@kallebanan1924 3 ай бұрын
@@Bisqwit Ah, I see, I think I heard a few years ago that you had started going to university to become a teacher. I was surprised to see this video, because it made me think that thought were done! "That went fast", I thought.
@Bisqwit
@Bisqwit 3 ай бұрын
Well, I did actually graduate already. But this video is unrelated to that.
@kallebanan1924
@kallebanan1924 3 ай бұрын
@@Bisqwit Wow, isn't it supposed to be like 5 years? Well done either way!
@Bisqwit
@Bisqwit 3 ай бұрын
@kallebanan1924 Yes, I did in 3 years what should nominally take 5 years and then some. Thank you.
@GameBacardi
@GameBacardi 3 ай бұрын
He Hei!
@Bisqwit
@Bisqwit 3 ай бұрын
Hei hei
@slipcurve1410
@slipcurve1410 3 ай бұрын
I wasn't sure if this was SQLite instructions or a tech support scam in Finnish.
@yurikhramov656
@yurikhramov656 3 ай бұрын
OMG! Windows ??? Wtf is wrong with you ?
@Bisqwit
@Bisqwit 3 ай бұрын
Many of the students use Windows, and explaining the concept of current working directory takes way too much of my energy. A video tutorial works better.
What are EXE files made of?
11:00
Bisqwit
Рет қаралды 146 М.
Mom Hack for Cooking Solo with a Little One! 🍳👶
00:15
5-Minute Crafts HOUSE
Рет қаралды 23 МЛН
Каха и дочка
00:28
К-Media
Рет қаралды 3,4 МЛН
How I got Mario in That Editor - And how Norton Got 🐁
13:30
Windows & macOS can't do this, but Linux can!
15:55
The Linux Experiment
Рет қаралды 997 М.
Install Windows Subsystem for Linux (WSL)
8:41
TechWithCosta
Рет қаралды 23 М.
Convert Windows PC to VM
12:45
SemperVideo
Рет қаралды 11 М.
The New Outlook is TERRIBLE
20:19
Chris Titus Tech
Рет қаралды 135 М.
SQLite's WAL mode is fast fast
9:25
Aaron Francis
Рет қаралды 20 М.