I am using SQL Server 2008 R2/SSIS.
My source is SQL Server.
My Destination is U2 Database. I am using U2 ADO.NET Provider.
It generates the SQL Syntax for write:
Error: 0xC020844B at Data Flow Task, ADO NET Destination [58]: An exception has occurred during data insertion, the message returned from the provider is: [U2][UCINET-UO] [U2][UCINET][UNIVERSE]:UniVerse/SQL: syntax error. Unexpected symbol. Token was "p1". Scanned command was INSERT INTO "zzz2" ( "CUSTID" , "FNAME" , "LNAME" ) VALUES ( p1
I want to generate
INSERT INTO "zzz2" ( "CUSTID" , "FNAME" , "LNAME" ) VALUES ( @p1 ,@p2,@p3)
OR
INSERT INTO "zzz2" ( "CUSTID" , "FNAME" , "LNAME" ) VALUES ( ?,?,?)
Is there any thing I can configure to get desired SQL INSERT Statement?
Rajan