very Urgent: problem in RDA

  • Thread starter Thread starter bob
  • Start date Start date
B

bob

Hi

i want to pull data from two tables using RDA from SqlServer database which
is on main server .

when i write code
objServer.Pull("LoginInfo","Select UserId,UserName,Password from
LoginInfo",StartingPoint.ServerConnectionString,RdaTrackOption.TrackingOnWit
hIndexes,"ErrorTable");

objServer.Pull("ServerInfo","Select ServerId,Name from
ServerInfo",StartingPoint.ServerConnectionString,RdaTrackOption.TrackingOnWi
thIndexes,"ErrorTable");

it gives me error on line

objServer.Pull("ServerInfo","Select ServerId,Name from
ServerInfo",StartingPoint.ServerConnectionString,RdaTrackOption.TrackingOnWi
thIndexes,"ErrorTable");

Error: Local table is already exists.



but it doesn't exist on local database .

i m doing it for my pocket pc application , i m creating application in c#.



Anyone can tell me wht's a problem

thanx.
 
You error table is the same name. Change the name of your Error table for
each Pulled table to be unique.

--------------------
| From: "bob" <[email protected]>
| Subject: very Urgent: problem in RDA
| Date: Mon, 16 Feb 2004 17:33:16 +0500
| Lines: 37
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <[email protected]>
| Newsgroups: microsoft.public.dotnet.framework.compactframework
| NNTP-Posting-Host: 203.89.133.138
| Path:
cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFTNGXA05.phx.gbl!TK2MSFTNGP08
.phx.gbl!TK2MSFTNGP11.phx.gbl
| Xref: cpmsftngxa07.phx.gbl
microsoft.public.dotnet.framework.compactframework:45822
| X-Tomcat-NG: microsoft.public.dotnet.framework.compactframework
|
| Hi
|
| i want to pull data from two tables using RDA from SqlServer database
which
| is on main server .
|
| when i write code
| objServer.Pull("LoginInfo","Select UserId,UserName,Password from
|
LoginInfo",StartingPoint.ServerConnectionString,RdaTrackOption.TrackingOnWit
| hIndexes,"ErrorTable");
|
| objServer.Pull("ServerInfo","Select ServerId,Name from
|
ServerInfo",StartingPoint.ServerConnectionString,RdaTrackOption.TrackingOnWi
| thIndexes,"ErrorTable");
|
| it gives me error on line
|
| objServer.Pull("ServerInfo","Select ServerId,Name from
|
ServerInfo",StartingPoint.ServerConnectionString,RdaTrackOption.TrackingOnWi
| thIndexes,"ErrorTable");
|
| Error: Local table is already exists.
|
|
|
| but it doesn't exist on local database .
|
| i m doing it for my pocket pc application , i m creating application in
c#.
|
|
|
| Anyone can tell me wht's a problem
|
| thanx.
|
|
|
|
|
 
Back
Top