最新文章 (全部类别)
.NETCore WebApi阻止接口重复调用(请求并发操作)
VS2022消除编译警告
“SymmetricAlgorithm.Create(string)”已过时:“Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead
SHA256Managed/SHA512Managed已过时:Derived cryptographic types are obsolete. Use the Create method on the base type instead
MD5CryptoServiceProvider已过时:Derived cryptographic types are obsolete. Use the Create method on the base type instead
C#使用HttpClient获取IP地址位置和网络信息
判断IP是否是外网IP、内网IP
C#使用HttpClient获取公网IP
WebRequest.Create(string)已过时:WebRequest, HttpWebRequest, ServicePoint, and WebClient are obsolete. Use HttpClient instead
C#根据第三方提供的IP查询服务获取公网外网IP地址
html/dom/js/javascript开发记录
调试ASP.NETCore Web站点 - 清理IISExpress缓存数据(js,css)
EFCore+Oracle根据不同的Schema连接数据库
主程序集成CSFramework.EF 数据库框架(.NET7版本)
CSFramework.EF数据库框架简介(.NET8+EFCore)
迁移ECS服务器:导致ORACLE监听服务启动不了解决方案
SQLite数据库
VS2022编译报错:Visual Studio 容器工具需要 Docker Desktop
.NET 9 预览版+C#13新功能
EFCore禁用实体跟踪
WebApi开发框架V3.0 (.NETCore+EFCore) 增加AppSettings全局参数类
C#获取应用程序所有依赖的程序集
LINQ Expression 多条件复合条件组合(And/Or)
CSFrameworkV6客户案例 - MHR - 宁德时代制造人力资源系统
CS软件授权注册系统V3 - 发布证书
C/S软件授权注册系统V3.0(Winform+WebApi+.NET8+EFCore版本)
CS软件授权注册系统V3 - 购买方式
CS软件授权注册系统V3 - 试用版下载
CS软件授权注册系统-客户登记(制作证书)
C/S软件授权注册系统V3.0 - 管理员工具
CSFrameworkV6旗舰版开发框架 - 集成软件授权认证系统
CSFramework.Authentication 软件证书管理系统 - 制作软件客户授权证书
CSFramework.Authentication 软件证书管理系统 - MAC地址管理
CSFramework.Authentication 软件授权证书管理系统
Login/Logout接口调用dalUser的Login/Logout方法
C# Newtonsoft.Json.Linq.JObject 转对象
CSFramework.Authentication 软件授权认证系统 - 软件测试报告
C/S架构软件开发平台 - 旗舰版V6.0 - 底层框架迭代开发
C/S架构软件开发平台 - 旗舰版V6.1新功能 - 增加软件授权认证模块
C/S架构软件开发平台 - 旗舰版CSFrameworkV6 Bug修改记录
CS软件授权注册系统V3 - 开发手册 - 软件集成与用户注册
CS软件授权注册系统-模拟MES/ERP用户注册软件
CS软件授权注册系统-发布/部署WebApi服务器(IIS+.NET8+ASP.NETCore)
CS软件授权注册系统-VS2022调试WebApi接口
.NETCore Console控制台程序使用ILogger日志
CS软件授权注册系统-WebApi服务器介绍
ASP.NETCore集成Swagger添加Authorize按钮Bearer授权
CS软件授权注册系统-WebApi服务器配置
.NETCore WebApi发布到IIS服务器无法打开swagger
.NET8/ .NETCore /ASP.NETCore 部署WebApi到IIS服务器需要安装的运行环境
.net敏捷开发,创造卓越

C#SQL客户端处理大文本数据通用接口


C#SQL客户端处理大文本数据通用接口

A uniform interface for large texts for a C# SQL client

By AlexS9999

The article provides a simple interface for handling large text in SqlClient and C# file streams.


C#SQL客户端处理大文本数据通用接口

本文提供一个简单的接口用于处理SqlClient大文本和C#文件流.

作者:AlexS9999


贴图图片

We also might want to change the implementation from SQL storage to file storage. So, we suggested a uniform interface and provided two implementations of it: one for C# text streams and one for the SQL Server database.

译: 我们有可能要把SQL的数据存储到本地文件。所以我们建议策划出一个通用接口,并提供这两种实现方式:
C#文本流和SQL Server数据库

The interface itself is:
译: 接口相当简单:


public interface ICharsHandler

        {

            char[] GetChars(long offset, int length);  // read data chunk

            void PutChars(long offset, char[] buffer); // put data chunk

            void Close(); // release the resources (recordset, connection or stream)

        }


The implementation for the text writers follows:
译: 文本写入实现:


public class StreamTextHandler : ICharsHandler

        {

            TextReader reader;

            TextWriter writer;

            char[] buffer;

 

            public StreamTextHandler(TextWriter wr, TextReader rd)

            {

                reader = rd;

                writer = wr;

            }

 

            #region ICharsHandler Members

 

            public char[] GetChars(long offset, int length)

            {

                if (reader == null)

                    throw new InvalidOperationException("Can’t read data");

                if (buffer == null || buffer.Length != length)

                    buffer = new char[length];

                int cnt = reader.Read(buffer, (int)offset, length);

                if (cnt < length)

                {

                    char[] nv = new char[cnt];

                    Array.Copy(buffer, nv, cnt);

                    return nv;

                }

                return buffer;

            }

 

            public void PutChars(long offset, char[] buffer)

            {

                if (writer == null)

                    throw new InvalidOperationException("Can’t write data");

                writer.Write(buffer, (int)offset, buffer.Length);

            }

 

            public void Close()

            {

                if (reader != null) reader.Close();

                if (writer != null) writer.Close();

            }

 

            #endregion

        }



Maybe, it would be a good idea to split this interface to a "reader" and a "writer".
The Microsoft SqlClient implementation follows:

译: 也许分离出来“reader"和"writer"是个非常棒的主意,下面是Microsoft SqlClient实现:


  class SqlTextHandler : ICharsHandler

        {

            SqlCommand readCommand;

            SqlCommand writeCommand;

            int column;

            SqlDataReader rd;

            bool previousConn = false;

 

            public SqlTextHandler(SqlCommand cmd, SqlCommand wr, int _column)

            {

                readCommand = cmd;

                writeCommand = wr;

                column = _column;

                previousConn = (wr != null) ?

                wr.Connection.State == ConnectionState.Open :

                     cmd.Connection.State == ConnectionState.Open;

            }

 

            protected void OpenReader()

            {

                readCommand.Connection.Open();

                rd = readCommand.ExecuteReader(CommandBehavior.SequentialAccess |

                                               CommandBehavior.SingleRow);

                rd.Read();

            }

            // We assume that the input command

            // contain variables: @Value, @Offset and @Length

            protected void OpenWriter()

            {

                SqlParameter Out =

                  writeCommand.Parameters.Add("@Value", SqlDbType.NVarChar);

                SqlParameter OffsetParam =

                  writeCommand.Parameters.Add("@Offset", SqlDbType.BigInt);

                SqlParameter LengthParam =

                  writeCommand.Parameters.Add("@Length", SqlDbType.Int);

                writeCommand.Connection.Open();

            }

 

            char[] buffer;

 

            #region ICharsHandler Members

 

            public char[] GetChars(long offset, int length)

            {

                if (rd == null) OpenReader();

                if (buffer == null || buffer.Length != length)

                {

                    buffer = new char[length];

                }

                long cnt = rd.GetChars(column, offset, buffer, 0, length);

                if (cnt < length)

                {

                    char[] nv = new char[cnt];

                    Array.Copy(buffer, nv, cnt);

                    return nv;

                }

                return buffer;

            }

 

            public void PutChars(long offset, char[] buffer)

            {

                if (writeCommand.Parameters.Count < 4) OpenWriter();

                writeCommand.Parameters["@Length"].Value = buffer.Length;

                writeCommand.Parameters["@Value"].Value = buffer;

                writeCommand.Parameters["@Offset"].Value = offset;

                writeCommand.ExecuteNonQuery();

            }

 

            public void Close()

            {

                if (rd != null) rd.Close();

                if (!previousConn)

                {

                    if (readCommand != null) readCommand.Connection.Close();

                    if (writeCommand != null) writeCommand.Connection.Close();

                }

            }

 

            #endregion

        }



We provide two SQL commands, the cmdReader for reading text and cmdWriter for writing text.

The code below shows a sample of input parameters for SqlTextHandler. The update T-SQL Command uses the .WRITE clause. Both SQL statements have been made bold in the sample below:

我们提供2个SQL命令,cmdReader用于读取文本和cmdWriter用于写入文本。
下面的代码展示SqlTextHandler类的输入参数.使用.WRITE条件更新T-SQL.


public
ICharsHandler GetTextHandler(long id)

        {

            SqlConnection _connection = new System.Data.SqlClient.SqlConnection();

            _connection.ConnectionString =

            MyApp.Properties.Settings.Default.MyAppConnectionString;

 

            SqlCommand cmdWriter = new SqlCommand("UPDATE dbo.MessageUnit" +

            " SET plainText .WRITE (@Value, @Offset, @Length) WHERE id = @id ",

            _connection);

            cmdWriter.Parameters.Add(new SqlParameter("@id", id));

            SqlCommand cmdReader = new SqlCommand(

            "SELECT plainText FROM dbo.MessageUnit WHERE id = @id",

            _connection);

            cmdReader.Parameters.Add(new SqlParameter("@id", id));

            return new SqlTextHandler(cmdReader, cmdWriter, 0);

        }



An alternative implementation can be based on the UPDATETEXT SQL command, but it has been announced obsolete in the future versions of SQL server.

Two possible requirements should be mentioned:

  • Use the proper SQL table column type nvarchar(MAX) or varchar(MAX). Otherwise, SQL Server reports an error operation.
  • The value of the column should be initialized (as an empty string). If the initial value is null, the PutChars operation fails too.

A usage sample code may look like:

数据转移主要方法:



void MoveText(ICharHandler source, ICharHandler target)

        {

            long offset = 0;

            for (; ; )

            {

                char[] buffer = source.GetChars(offset, BUFFER_SIZE);

                ptext.PutChars(offset, buffer);

                if (buffer.Length < BUFFER_SIZE) break;

                offset += BUFFER_SIZE;

            }

        }



The conclusive notes are:

  • Once we have two handlers, we can combine them into one handler, such that one PutChars operation will write into two logical streams.
  • The same idea can be easily applied to binary data. So far, instead of the char[] buffer, we would deal with a byte[] buffer, and instead of text streams, we would deal with C# binary streams.

总结:
  1.两个处理程序可以合并为一个处理程序,其中通过PutChars()方法将数据写入两个逻辑流。
  2.同样的机制可简单应用于二进制数据处理。处理一个byte[]缓冲区而不要处理字符数组缓冲区,
同理,用C#二进制流处理而不要用文本流处理。



原文:http://www.codeproject.com/KB/database/CharsHandlerSQL.aspx

www.csframework.com 翻译

版权声明:本文为开发框架文库发布内容,转载请附上原文出处连接
C/S框架网
上一篇:C#DataSet监视工具2.0(DataSet Watch 2.0)
下一篇:C#数据库本地缓存技术(Database local cache)
评论列表

发表评论

评论内容
昵称:
关联文章

C#SQL客户处理文本数据通用接口
通用十、十六进制数据处理
CSFramework.WebApi服务处理流程与机制
WebApi框架数据安全、信息安全与接口安全六机制
C#多线程异步处理数据通用界面窗体(frmThreadOperating)
C#异步操作等待窗体,异步多线程处理数据通用界面(frmThreadOperating)
CSFramework.WebApi后服务器框架:客户调用WebApi接口方式(签名+Token令牌)
CSFramework.WebApi框架 - DoController - 通用接口控制器说明
C/S客户Winform窗体调用WebApi接口(C# 实例)
C#调用Delphi编译的DLL函数库返回文本数据
EFCore+Linq高效批量删除包含图片及文本数据两种性能对比
C#实现.Net Remoting服务客户通信
C#.NET 处理SQL特殊数据类型Geography/Geometry/Hierarchyid/XML
WebApi接口安全机制:API接口限流防止恶意访问 ThrottlingHandler消息处理机制
CSFramework.WebApiV3.客户请求流程图
CSFramework.WebApiV3.客户请求流程图
WCF开发框架-客户采用BASIC身份认证调用HTTPS协议WCF接口
WCF开发框架-客户采用Windows身份认证调用HTTPS协议WCF接口
WCF开发框架-客户采用Certificate认证模式调用基于HTTPS协议的WCF接口
WebApiTools.cs - WebApi客户调用Web Api接口工具类

热门标签
软件著作权登记证书 .NET .NET Reactor .NET5 .NET6 .NET7 .NET8 .NET9 .NETFramework APP AspNetCore AuthV3 Auth-软件授权注册系统 Axios B/S B/S开发框架 B/S框架 BSFramework Bug Bug记录 C#加密解密 C#源码 C/S CHATGPT CMS系统 CodeGenerator CSFramework.DB CSFramework.EF CSFramework.License CSFrameworkV1学习版 CSFrameworkV2标准版 CSFrameworkV3高级版 CSFrameworkV4企业版 CSFrameworkV5旗舰版 CSFrameworkV6.0 CSFrameworkV6.1 CSFrameworkV6旗舰版 DAL数据访问层 Database datalock DbFramework Demo教学 Demo实例 Demo下载 DevExpress教程 Docker Desktop DOM ECS服务器 EFCore EF框架 Element-UI EntityFramework ERP ES6 Excel FastReport GIT HR IDatabase IIS JavaScript LINQ MES MiniFramework MIS MySql NavBarControl NETCore Node.JS NPM OMS Oracle资料 ORM PaaS POS Promise API PSD RedGet Redis RSA SAP Schema SEO SEO文章 SQL SQLConnector SQLite SqlServer Swagger TMS系统 Token令牌 VS2022 VSCode VS升级 VUE WCF WebApi WebApi NETCore WebApi框架 WEB开发框架 Windows服务 Winform 开发框架 Winform 开发平台 WinFramework Workflow工作流 Workflow流程引擎 XtraReport 安装环境 版本区别 报表 备份还原 踩坑日记 操作手册 达梦数据库 代码生成器 迭代开发记录 功能介绍 国际化 基础资料窗体 架构设计 角色权限 开发sce 开发工具 开发技巧 开发教程 开发框架 开发平台 开发指南 客户案例 快速搭站系统 快速开发平台 框架升级 毛衫行业ERP 秘钥 密钥 权限设计 软件报价 软件测试报告 软件加壳 软件简介 软件开发框架 软件开发平台 软件开发文档 软件授权 软件授权注册系统 软件体系架构 软件下载 软件著作权登记证书 软著证书 三层架构 设计模式 生成代码 实用小技巧 视频下载 收钱音箱 数据锁 数据同步 微信小程序 未解决问题 文档下载 喜鹊ERP 喜鹊软件 系统对接 详细设计说明书 新功能 信创 行政区域数据库 需求分析 疑难杂症 蝇量级框架 蝇量框架 用户管理 用户开发手册 用户控件 在线支付 纸箱ERP 智能语音收款机 自定义窗体 自定义组件 自动升级程序
联系我们
联系电话:13923396219(微信同号)
电子邮箱:23404761@qq.com
站长微信二维码
微信二维码