Added files and folders for TARGET_JVM code base
[mono.git] / mcs / class / System.Data / System.Data.SqlClient.jvm / MetaType.cs
1 namespace System.Data.SqlClient
2 {
3
4 using System.Data;
5
6 public class MetaType
7 {
8     /**@todo Implement this CLASS!!!*/
9     public MetaType()
10     {
11     }
12
13
14     public static MetaType GetDefaultMetaType()
15     {
16         return null;
17     }
18
19     public static MetaType GetMetaType(DbType value)
20     {
21         return null;
22     }
23
24     public static MetaType GetMetaType(SqlDbType value)
25     {
26         return null;
27     }
28
29     public DbType DbType
30     {
31         get
32         {
33             return DbType.String;
34         }
35     }
36
37     public SqlDbType SqlDbType
38     {
39         get
40         {
41             return SqlDbType.VarChar;
42         }
43     }
44
45     public int TDSType
46     {
47         get
48         {
49             return 0;
50         }
51     }
52 }}