Serialization is not a database operation so you won't use ODBC or any other database specific classes to perform the actual serialization.
You will use the classes found under the
System.Xml.Serialization Namespace. You can create an
XmlSerializer Class specifying your class type and use it to de/serialize an instance of the class to a string of XML which you can store using standard character storage methods into the database.
-Peter