vote up 2 vote down star

I'm passing a query to an internal application that runs that query and returns the result, the connection is to a CSV file and I'm connecting with the Provider=Microsoft.Jet.OLEDB.4.0

I'd like to join to strings in to one column but I'm getting an error.

Can this be done, does anyone know how to do it?

Example of what I'm doing:

select 
 PurchaseOrderNo, 
 PurchaseOrderDate, 
 Description, 
 Quantity,
 ContractName + 'delimiter' + ContractNo as LinePrimaryKeys
from [POImport baseline.csv]

the error is: - Error - The provider could not determine the Double value. For example, the row was just created, the default for the Double column was not available, and the consumer had not yet set a new Double value.

From other reading it looks like not both of the values I'm joining are being recognized as strings.

for example replacing PurchaseOrderNo + 'delimiter' + ContractNo as LinePrimaryKeys with PurchaseOrderNo + 'delimiter' + PurchaseOrderNo as LinePrimaryKeys

stops the error. So now how do I Cast to string?

This doesn't work. ContractName + 'cn' + CAST(ContractName as nvarchar(50)) as LinePrimaryKeys

flag

75% accept rate
What's the error? – JP May 19 at 6:31

1 Answer

vote up 2 vote down check

You have to use & instead of +.

& does a string concatenation, + performs a (numeric) addition. Using & automatically casts all operands to strings.

select 
 PurchaseOrderNo, 
 PurchaseOrderDate, 
 Description, 
 Quantity,
 PurchaseOrderNo & 'delimiter' & ContractNo as LinePrimaryKeys
from [POImport baseline.csv]
link|flag
You get the error: - Error - An error occurred while parsing EntityName – Jiminy May 19 at 6:40
That is an XML/XHTML error message. What are you doing :) – DR May 19 at 6:48
You might be right, it looks like this error could be coming from the XML file I'm adding the query to. – Jiminy May 19 at 6:52
Ok, in that case you have to escape the & with & – DR May 19 at 6:53
Thanks DR, that worked a treat – Jiminy May 19 at 6:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.