基本信息
源码名称:C#使用Thrift2操作HBase数据库
源码大小:1.49M
文件格式:.rar
开发语言:C#
更新时间:2023-10-31
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
C#使用Thrift2访问Hbase库,实现了简单的增、删、改、查。 便于大家快速入门。

.
├── C#&thrift2&ConnectToHbase
│   ├── readme.txt
│   ├── thrift-0.7.0
│   │   ├── TestConsoleApplication
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── TestConsoleApplication.csproj
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │       ├── TestConsoleApplication.exe
│   │   │   │       ├── TestConsoleApplication.pdb
│   │   │   │       ├── TestConsoleApplication.vshost.exe
│   │   │   │       ├── TestConsoleApplication.vshost.exe.manifest
│   │   │   │       ├── ThriftHbaseCommon.dll
│   │   │   │       ├── ThriftHbaseCommon.pdb
│   │   │   │       ├── thrift-0.7.0.dll
│   │   │   │       └── thrift-0.7.0.pdb
│   │   │   └── obj
│   │   │       └── Debug
│   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │           ├── TempPE
│   │   │           ├── TestConsoleApplication.csproj.FileListAbsolute.txt
│   │   │           ├── TestConsoleApplication.csprojResolveAssemblyReference.cache
│   │   │           ├── TestConsoleApplication.exe
│   │   │           └── TestConsoleApplication.pdb
│   │   ├── ThriftHbaseCommon
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── TAppend.cs
│   │   │   ├── TAuthorization.cs
│   │   │   ├── TCellVisibility.cs
│   │   │   ├── TColumn.cs
│   │   │   ├── TColumnIncrement.cs
│   │   │   ├── TColumnValue.cs
│   │   │   ├── TDelete.cs
│   │   │   ├── TDeleteType.cs
│   │   │   ├── TDurability.cs
│   │   │   ├── TGet.cs
│   │   │   ├── THBaseService.cs
│   │   │   ├── THRegionInfo.cs
│   │   │   ├── THRegionLocation.cs
│   │   │   ├── TIOError.cs
│   │   │   ├── TIllegalArgument.cs
│   │   │   ├── TIncrement.cs
│   │   │   ├── TMutation.cs
│   │   │   ├── TPut.cs
│   │   │   ├── TResult.cs
│   │   │   ├── TRowMutations.cs
│   │   │   ├── TScan.cs
│   │   │   ├── TServerName.cs
│   │   │   ├── TTimeRange.cs
│   │   │   ├── ThriftHbaseCommon.csproj
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── ThriftHbaseCommon.dll
│   │   │   │   │   ├── ThriftHbaseCommon.pdb
│   │   │   │   │   ├── thrift-0.7.0.dll
│   │   │   │   │   └── thrift-0.7.0.pdb
│   │   │   │   └── Release
│   │   │   └── obj
│   │   │       └── Debug
│   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │           ├── TempPE
│   │   │           ├── ThriftHbaseCommon.csproj.FileListAbsolute.txt
│   │   │           ├── ThriftHbaseCommon.csprojResolveAssemblyReference.cache
│   │   │           ├── ThriftHbaseCommon.dll
│   │   │           └── ThriftHbaseCommon.pdb
│   │   ├── thrift-0.7.0
│   │   │   ├── Collections
│   │   │   │   └── THashSet.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Protocol
│   │   │   │   ├── TBase.cs
│   │   │   │   ├── TBase64Utils.cs
│   │   │   │   ├── TBinaryProtocol.cs
│   │   │   │   ├── TField.cs
│   │   │   │   ├── TJSONProtocol.cs
│   │   │   │   ├── TList.cs
│   │   │   │   ├── TMap.cs
│   │   │   │   ├── TMessage.cs
│   │   │   │   ├── TMessageType.cs
│   │   │   │   ├── TProtocol.cs
│   │   │   │   ├── TProtocolException.cs
│   │   │   │   ├── TProtocolFactory.cs
│   │   │   │   ├── TProtocolUtil.cs
│   │   │   │   ├── TSet.cs
│   │   │   │   ├── TStruct.cs
│   │   │   │   └── TType.cs
│   │   │   ├── Server
│   │   │   │   ├── TServer.cs
│   │   │   │   ├── TSimpleServer.cs
│   │   │   │   ├── TThreadPoolServer.cs
│   │   │   │   └── TThreadedServer.cs
│   │   │   ├── TApplicationException.cs
│   │   │   ├── TProcessor.cs
│   │   │   ├── Transport
│   │   │   │   ├── TBufferedTransport.cs
│   │   │   │   ├── TFramedTransport.cs
│   │   │   │   ├── THttpClient.cs
│   │   │   │   ├── THttpHandler.cs
│   │   │   │   ├── TServerSocket.cs
│   │   │   │   ├── TServerTransport.cs
│   │   │   │   ├── TSocket.cs
│   │   │   │   ├── TStreamTransport.cs
│   │   │   │   ├── TTransport.cs
│   │   │   │   ├── TTransportException.cs
│   │   │   │   └── TTransportFactory.cs
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── thrift-0.7.0.dll
│   │   │   │   │   ├── thrift-0.7.0.pdb
│   │   │   │   │   └── thrift-0.7.0.vshost.exe
│   │   │   │   └── Release
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │       ├── TempPE
│   │   │   │       ├── thrift-0.7.0.csproj.FileListAbsolute.txt
│   │   │   │       ├── thrift-0.7.0.dll
│   │   │   │       └── thrift-0.7.0.pdb
│   │   │   └── thrift-0.7.0.csproj
│   │   ├── thrift-0.7.0.sln
│   │   └── thrift-0.7.0.v11.suo
│   └── thrift-0.7.0代码生成工具
│       └── 0.7.0
│           ├── Hbase.thrift
│           └── thrift-0.7.0.exe
└── C#使用Thrift2操作HBase数据库_C#_thrift2_ConnectToHbase.rar

31 directories, 99 files