26 lines
477 B
C#
26 lines
477 B
C#
|
//
|
||
|
// OracleLobOpenMode.cs
|
||
|
//
|
||
|
// Part of the Mono class libraries at
|
||
|
// mcs/class/System.Data.OracleClient/System.Data.OracleClient
|
||
|
//
|
||
|
// Assembly: System.Data.OracleClient.dll
|
||
|
// Namespace: System.Data.OracleClient
|
||
|
//
|
||
|
// Author: Tim Coleman <tim@timcoleman.com>
|
||
|
//
|
||
|
// Copyright (C) Tim Coleman, 2003
|
||
|
//
|
||
|
// Licensed under the MIT/X11 License.
|
||
|
//
|
||
|
|
||
|
using System;
|
||
|
|
||
|
namespace System.Data.OracleClient {
|
||
|
public enum OracleLobOpenMode
|
||
|
{
|
||
|
ReadOnly = 0x01,
|
||
|
ReadWrite = 0x02
|
||
|
}
|
||
|
}
|