CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Dec 2009
    Posts
    2

    Distributed databases

    Hey,
    In my project I’m going to use distributed databases. My target is creation of sales system so I will distribute for example order table. Mainly I use horizontal partition.
    So my question is about solutions for .NET?Do you know any framework that supports heterogenic distributed databases?I want to define partition strategy in separate class(or alternatively in separate class). Then framework should allow me insert record and decide which database should be used.
    It’s my first distributed database project so please share your experience. I have no idea how to start.

  2. #2
    Join Date
    Sep 2008
    Posts
    33

    Re: Distributed databases

    hi,

    I'm interesting in a similiar topic. Any hints?

  3. #3
    Join Date
    Apr 2009
    Posts
    598

    Re: Distributed databases

    I have used ADOdb and it is working very well. With the same syntax, I could access and update data from Oracle, Sybase and MS Access. Only a connection string is different for these databases. See http://en.wikipedia.org/wiki/ADOdb
    But it works with PHP or Python, not with .Net.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured