Click here to Skip to main content
15,891,033 members

Comments by Saurabh.abhyankar (Top 18 by date)

Saurabh.abhyankar 30-May-17 1:20am View    
Ok thanks will look into it.
Saurabh.abhyankar 30-Oct-12 2:08am View    
This is how we used to refer in our C++ environment
#import "c:\program Files\Common Files\system\ado\msado15.dll" rename_namespace("ADOCG") rename("EOF","EndofFile")

I have changed it to
#import "c:\program Files\Common Files\system\ado\msado28.tlb" rename_namespace("ADOCG") rename("EOF","EndofFile")

Also can you please elaborate on what you mean by "you'd have to import both old and new typelibs (using the rename_namespace[^] directive) and have two implementations"
Saurabh.abhyankar 14-Aug-12 6:52am View    
Humm.. need to check .. if i can do that.. its going to be a long process if i take up this part suggested by you.. Any thing else coming up in your mind?? And thanks a lot for the help..
Saurabh.abhyankar 14-Aug-12 6:20am View    
we are using the MergeSynchronizationAgent class's Synchronize() method. Does it use index?
Saurabh.abhyankar 14-Aug-12 4:57am View    
The databases are similr the only thing that is worrying me is that say in the central database we have columns 'A', 'B', 'C' while replicating we delete the column 'B'(this column is not replicated) and create it after the local database is created . So no the local database sequence becomes 'A', 'C', 'B'.
Is this causing the problem while sync as it cant map the columns one to one???