How can I store an object which contains a Queue in MySQL?
My object, contains a queue which stores DateTime objects. Storing objects with just the usual single dimensional properties is not a problem.
开发者_StackOverflowWhat if, I want to store a queue in MySQL using C#. I am using MySQLite and ADO.NET wrapper of System.Data.Sqlite;
You can serialize the Object and store it as a binary column, or you can create a new table and store there every item of your queue.
精彩评论