store-data

The fastest way to update a database table

Hello, I've got a website where people can create a table of an unknown length containing two columns, word_1 and word_2, and store this table in a database. It is of course very simple to insert these values into the database by just iterating through the rows. Now someone decides to update some of the values and he goes to the edit-p...

C#: How should I save my data?

I have two structs like so: public struct KeyLog { Keys key; DateTime time; } public struct MouseLog { MouseEvents mouse; Point coordinates; DateTime time; } For every keyboard key press and mousebutton click I wish to save this data but I do not know which way would be the most efficient to store/handle it in? Ar...