Hello,
I looked through some for the forums and can't see what I am looking for. I created a project that points to a schema with this name: TestDB1
but I now want to point that to the TestDB2 schema.
I looked in the documentation and I see this but don't understand how it works.
<configSections>
<section name="oracleSchemaNameOverwrites" type="System.Configuration.NameValueSectionHandler" />
</configSections>
<oracleSchemaNameOverwrites>
<add key="SCOTT" value="HR" />
</oracleSchemaNameOverwrites>
this is my current connection string.
<appSettings>
<add key="Oracle.ConnectionString" value="data source=dummy-data;user id=TestDB1;password=TestDB1;persist security info=false;"/>
<add key="OracleTriggerSequences" value="true" />
</appSettings>
any pointers?
thanks all.