aa8eb123f7549a168b828d24cecc01de3c1d3d81
[mono.git] / mcs / class / Mono.Data.DB2Client / Mono.Data.Db2Client / DB2ClientLOBLocator.cs
1 #region Licence\r
2         /// DB2DriverCS - A DB2 driver for .Net\r
3         /// Copyright 2003 By Christopher Bockner\r
4         /// Released under the terms of the MIT/X11 Licence\r
5         /// Please refer to the Licence.txt file that should be distributed with this package\r
6         /// This software requires that DB2 client software be installed correctly on the machine\r
7         /// (or instance) on which the driver is running.  \r
8 #endregion\r
9 using System;\r
10 using System.Data;\r
11 \r
12 namespace DB2DriverCS\r
13 {\r
14         /// <summary>\r
15         /// Summary description for DB2ClientLOB.\r
16         /// Base class for LOB support.  Other LOB classes inherit from this.  My support at first will be limited to \r
17         /// handling LOB locators, but we'll see where we go...\r
18         /// </summary>\r
19         public class DB2ClientLOB\r
20         {\r
21                 internal IntPtr hwndStmt;\r
22 \r
23                 public DB2ClientLOB()\r
24                 {\r
25                         //\r
26                         // TODO: Add constructor logic here\r
27                         //\r
28                 }\r
29         }\r
30 }\r