Board index » delphi » Which DBMS can store object type from delphi?

Which DBMS can store object type from delphi?

I want to store object type in DBMS.  Which DBMS should I choose to use?
 

Re:Which DBMS can store object type from delphi?


This is to cryptic...
- Do you want to store Delphi objects in a database ? Delphi has support for
reading/writing objects from/to streams. You could use
TBlobStream.WriteComponent to write components to blob fields.
- Or do you just want to store object types ? In this case you should store
the TObject.ClassName in a string field.

So, as long as the database supports blob fields, any database type could be
used.

"Tapana Uraiwan" <b0292...@student.chula.ac.th> schreef in bericht
news:8igg6o$1c8$1@atom.nectec.or.th...

Quote
> I want to store object type in DBMS.  Which DBMS should I choose to use?

Other Threads