示例#1
0
 public void GetColumnInfo(int hCol, ref DTP_BUFFCOL pCol)
 {
     throw new NotImplementedException();
 }
示例#2
0
 public int RegisterBufferType(int cCols, ref DTP_BUFFCOL rgCols, int lMaxRows, uint dwCreationFlags)
 {
     throw new NotImplementedException();
 }
示例#3
0
文件: Proxies.cs 项目: beefarino/bips
 public void GetColumnInfo(Int32 hBufferType, Int32 hCol, ref DTP_BUFFCOL pCol)
 {
     _innerObject.GetColumnInfo(hBufferType, hCol, ref pCol);
 }
示例#4
0
 public void GetColumnInfo(int hBufferType, int hCol, ref DTP_BUFFCOL pCol)
 {
     pCol.DataType = Microsoft.SqlServer.Dts.Runtime.Wrapper.DataType.DT_BOOL;
 }
示例#5
0
文件: Proxies.cs 项目: beefarino/bips
 public int RegisterBufferType(Int32 cCols, ref DTP_BUFFCOL rgCols, Int32 lMaxRows, UInt32 dwCreationFlags)
 {
     return _innerObject.RegisterBufferType(cCols, ref rgCols, lMaxRows, dwCreationFlags);
 }