Skip to content

Instantly share code, notes, and snippets.

View benapetr's full-sized avatar
💩
Poopin' around

Petr Bena benapetr

💩
Poopin' around
View GitHub Profile
@m8s00
m8s00 / App.config
Last active October 12, 2022 16:25
C# Oracle.ManagedDataAccess Sample
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="oracle.manageddataaccess.client"
type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.122.1.0, Culture=neutral, PublicKeyToken=89b483f429c47342"/>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2"/>
</startup>
<system.data>
// Supertype
function Person(name) {
this.name = name;
}
Person.prototype.describe = function () {
return "Person called " + this.name;
};
// Subtype