In database course our professor said us that in SQL:2003 we have object oriented features with our database, we can create type , define method for every type, define constructor, inherit a type from another type, use array, use multiset , .... .But when I come to mysql to use from this interesting features, I encountered errors. Now I want to know , how can I use this object oriented features in mysql.
thanks

link|improve this question

72% accept rate
2  
MySQL does not support this; you can get this sort of functionality using something like Hibernate (an Object-Relational-Mapping tool), which is free but has a learning curve. In PHP you have Propel, Doctrine, RedBean. Alternatively you can serialize an object and then store it in blob type column. – Uday Sawant Jan 12 at 8:09
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.