开发者

How can I store an object which contains a Queue in MySQL?

开发者 https://www.devze.com 2022-12-25 11:10 出处:网络
My object, contains a queue which stores DateTime objects. Storing objects with just the usual single dimensional properties is not a problem.

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消