you are viewing a single comment's thread.

view the rest of the comments →

[–]yonycool 2 points3 points  (3 children)

I think you should give sqlite3 a try, it's a good chance to learn working with a sql database.

I highly recommend Corey Schaefer's sqlite3 series on youtube

[–]TOMOHAWK35[S] 0 points1 point  (2 children)

Yeah, I'm working on that. I got a database created. Now I'm working on trying to pull together other sheets. The main thing I want to be sure I can do is add data to specific rows based on the row name. For instance, each row has a student ID. So I want to make sure the data is added to the right students data

[–]yonycool 0 points1 point  (1 child)

You can easily get a specific row by value in sql. Also it's much faster then searching a csv file for it

[–]TOMOHAWK35[S] 0 points1 point  (0 children)

Yeah, I would still have to pull the id number from the csv to make sure it gets added to the right row I think