This is a discussion on Object-Oriented database within the MySQL General forum forums, part of the MySQL category; --> Is there such thing call Object-Oriented database for mysql? Basically can I store an item as an object in ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Is there such thing call Object-Oriented database for mysql? Basically can I store an item as an object in myql? --------------------------------- Looking for earth-friendly autos? Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center. |
| |||
| You can store any object as blob, but that's not a good idea (unless object is atomic in terms of your application). If you want to refer to your data in object-oriented manner, you can use one of the ORM pattern implementations on the client sise. As for a separate data type, no, MySQL doesn't have it. ------------------------------------------------------------- Olexandr Melnyk, http://omelnyk.net/ 2007/5/4, sam rumaizan <samcalc@yahoo.com>: > > Is there such thing call Object-Oriented database for mysql? Basically can > I store an item as an object in myql? > > > > > > > --------------------------------- > Looking for earth-friendly autos? > Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center. |
| ||||
| If you serialize the object, you can store it in the data base as a blob. Regards, Jerry Schwartz Global Information Incorporated 195 Farmington Ave. Farmington, CT 06032 860.674.8796 / FAX: 860.674.8341 > -----Original Message----- > From: sam rumaizan [mailto:samcalc@yahoo.com] > Sent: Friday, May 04, 2007 6:27 AM > To: mysql@lists.mysql.com > Subject: Object-Oriented database > > Is there such thing call Object-Oriented database for mysql? > Basically can I store an item as an object in myql? > > > > > > > --------------------------------- > Looking for earth-friendly autos? > Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center. > |