Archived

This forum has been archived. Please start a new discussion on GitHub.

distributed database with ICE

hi, I have a question, can you give me a perfect solution?
I want to know how to use database to store business logic data with ICE.
can I use freez or relationship database ?
if I use database how can I make the database to be distributed database ?
I want a simple way to implement that, thanks very much.

Comments

  • bernard
    bernard Jupiter, FL
    Hi Kevin,

    Welcome to our forums.

    You can use any database system with Ice--Freeze is a convenient option if you want to store use the Ice type system for your persistent data, but you're free to use other database systems as well.
    ctl_2009_2 wrote: »
    if I use database how can I make the database to be distributed database ?

    You can use Ice to distribute data (you would send your data as operation parameters between Ice-based programs). However, if you want a distributed database, I would recommend selecting a database system with its own partitioning/replication support ... and then use this database system with your Ice programs.

    Best regards,
    Bernard