The information in this article applies to:
SYMPTOMSWhen trying to do an insert to an Oracle table, you receive the following error message:
CAUSEThe SourceColumn Property of rdoColumns is bringing back the incorrect column name. It does not place the quotes around the column name as specified in the statement: cn.Execute "CREATE TABLE mixed(""Col1"" varchar(20))"This statement specifies quotes around Col1. In Oracle, this creates a column name "Col1." RESOLUTIONBefore trying the Insert, change the SourceColumn property to add the quotes around the column name. For example: rs.rdoColumns(0).SourceColumn = """Col1""" STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. MORE INFORMATIONSteps to Reproduce Problem
Result: You will receive the "Invalid Column name" error. Additional query words:
Keywords : kbOracle kbRDO kbRDO200bug kbVBp500bug kbVBp600bug kbGrpVBDB |
Last Reviewed: January 5, 2000 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |