<?xml version="1.0"?>
<doc>
<assembly>
<name>Npgsql</name>
</assembly>
<members>
<member name="T:Npgsql.BackendMessages.CopyDataMessage">
<summary>
Note that this message doesn't actually contain the data, but only the length. Data is processed
directly from the connector's buffer.
</summary>
</member>
<member name="T:Npgsql.BackendMessages.CopyDoneMessage">
<remarks>
Note: This message is both a frontend and a backend message
</remarks>
</member>
<member name="T:Npgsql.BackendMessages.DataRowMessage">
<summary>
DataRow is special in that it does not parse the actual contents of the backend message,
because in sequential mode the message will be traversed and processed sequentially by
<see cref="T:Npgsql.NpgsqlSequentialDataReader"/>.
</summary>
</member>
<member name="T:Npgsql.BackendMessages.ErrorOrNoticeMessage.ErrorFieldTypeCode">
<summary>
Error and notice message field codes
</summary>
</member>
<member name="T:Npgsql.BackendMessages.RowDescriptionMessage">
<summary>
A RowDescription message sent from the backend.
</summary>
<remarks>
See http://www.postgresql.org/docs/current/static/protocol-message-formats.html
</remarks>
</member>
<member name="M:Npgsql.BackendMessages.RowDescriptionMessage.GetFieldIndex(System.String)">
<summary>
Given a string name, returns the field's ordinal index in the row.
</summary>
</member>
<member name="M:Npgsql.BackendMessages.RowDescriptionMessage.TryGetFieldIndex(System.String,System.Int32@)">
<summary>
Given a string name, returns the field's ordinal index in the row.
</summary>
</member>
<member name="T:Npgsql.BackendMessages.RowDescriptionMessage.InsensitiveComparer">
<summary>
Comparer that's case-insensitive and Kana width-insensitive
</summary>
</member>
<member name="T:Npgsql.BackendMessages.FieldDescription">
<summary>
A descriptive record on a single field received from PostgreSQL.
See RowDescription in http://www.postgresql.org/docs/current/static/protocol-message-formats.html
</summary>
</member>
<member name="P:Npgsql.BackendMessages.FieldDescription.Name">
<summary>
The field name.
</summary>
</member>
<member name="P:Npgsql.BackendMessages.FieldDescription.TypeOID">
<summary>
The object ID of the field's data type.
</summary>
</member>
<member name="P:Npgsql.BackendMessages.FieldDescription.TypeSize">
<summary>
The data type size (see pg_type.typlen). Note that negative values denote variable-width types.
</summary>
</member>
<member name="P:Npgsql.BackendMessages.FieldDescription.TypeModifier">
<summary>
The type modifier (see pg_attribute.atttypmod). The meaning of the modifier is type-specific.
</summary>
</member>
<member name="P:Npgsql.BackendMessages.FieldDescription.TableOID">
<summary>
If the field can be identified as a column of a specific table, the object ID of the table; otherwise zero.
</summary>
</member>
<member name="P:Npgsql.BackendMessages.FieldDescription.ColumnAttributeNumber">
<summary>
If the field can be identified as a column of a specific table, the attribute number of the column; otherwise zero.
</summary>
</member>
<member name="P:Npgsql.BackendMessages.FieldDescription.FormatCode">
<summary>
The format code being used for the field.
Currently will be zero (text) or one (binary).
In a RowDescription returned from the statement variant of Describe, the format code is not yet known and will always be zero.
</summary>
</member>
<member name="P:Npgsql.BackendMessages.FieldDescription.Handler">
<summary>
The Npgsql type handler assigned to handle this field.
Returns <see cref="T:Npgsql.TypeHandlers.UnknownTypeHandler"/> for fields with format text.
</summary>
</member>
<member name="P:Npgsql.BackendMessages.FieldDescription.RealHandler">
<summary>
The type handler resolved for this field, regardless of whether it's binary or text.
</summary>
</member>
<member name="M:Npgsql.BackendMessages.FieldDescription.ToString">
<summary>
Returns a string that represents the current object.
</summary>
</member>
<member name="T:Npgsql.IBackendMessage">
<summary>
Base class for all classes which represent a message sent by the PostgreSQL backend.
</summary>
</member>
<member name="T:Npgsql.FrontendMessage">
<summary>
Base class for all classes which represent a message sent to the PostgreSQL backend.
Concrete classes which directly inherit this represent arbitrary-length messages which can chunked.
</summary>
</member>
<member name="M:Npgsql.FrontendMessage.Write(Npgsql.NpgsqlWriteBuffer,System.Boolean)">
<param name="buf">the buffer into which to write the message.</param>
<param name="async"></param>
<returns>
Whether there was enough space in the buffer to contain the entire message.
If false, the buffer should be flushed and write should be called again.
</returns>
</member>
<member name="P:Npgsql.FrontendMessage.ResponseMessageCount">
<summary>
Returns how many messages PostgreSQL is expected to send in response to this message.
Used for message prepending.
</summary>
</member>
<member name="T:Npgsql.SimpleFrontendMessage">
<summary>
Represents a simple frontend message which is typically small and fits well within
the write buffer. The message is first queries for the number of bytes it requires,
and then writes itself out.
</summary>
</member>
<member name="P:Npgsql.SimpleFrontendMessage.Length">
<summary>
Returns the number of bytes needed to write this message.
</summary>
</member>
<member name="M:Npgsql.SimpleFrontendMessage.WriteFully(Npgsql.NpgsqlWriteBuffer)">
<summary>
Writes the message contents into the buffer.
</summary>
</member>
<member name="T:Npgsql.StatementType">
<summary>
Specifies the type of SQL statement, e.g. SELECT
</summary>
</member>
<member name="T:Npgsql.ConnectorPool">
<summary>
Connection pool for PostgreSQL physical connections. Attempts to allocate connections over MaxPoolSize will
block until someone releases. Implementation is completely lock-free to avoid contention, and ensure FIFO
for open attempts waiting (because the pool is at capacity).
</summary>
</member>
<member name="P:Npgsql.ConnectorPool.UserFacingConnectionString">
<summary>
Contains the connection string returned to th
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
是目前经过测试速度最快、最稳定实现多种数据库之间进行数据转换的工具。支持 SQL Server、MySQL、SQLite、PostgresSQL、Access 等多种数据库类型,通过该工具可以把原来的系统,方便快速地部署在不同的数据库甚至是云端数据库下。在大数据情况下(千万级别以上),处理速度比国内外同类软件要高出300%以上。并针对云端数据库中使用最多的 MySQL 数据库进行优化,使得从源数据库复制到新数据库时保留更多的数据表属性设置。这样大大减少程序员、DBA、实施人员将大型数据库进行迁移时的等待、测试和调试时间,减少公司为了测试某系统转换到新数据库系统时的人力成本。
资源推荐
资源详情
资源评论






























收起资源包目录




























共 20 条
- 1
资源评论

- qq_350328432024-06-14有没有linux版本

shengtian
- 粉丝: 0
上传资源 快速赚钱
我的内容管理 展开
我的资源 快来上传第一个资源
我的收益
登录查看自己的收益我的积分 登录查看自己的积分
我的C币 登录后查看C币余额
我的收藏
我的下载
下载帮助


最新资源
- 网络安全考试题.doc
- 广州互联网产业发展现状评估及进一步发展建议.docx
- 任务驱动教学法在《计算机应用基础》实践课程教学的应用.docx
- 基于机器学习的广告推荐系统点击率与转化率预估研究
- 计算机应用基础简答题.doc
- 开源机器人学(Open Robotics):助力机器人学习者轻松入门的开源项目 开源机器人学(Open Robotics)项目:为机器人学习者入门提供支持的开源平台 助力机器人学习者入门的开源项目
- 微机原理、汇编于接口技术课件.ppt
- 中国第三方网络支付的发展与监管.docx
- (源码)基于Nginx TCP负载均衡和Redis发布订阅的集群聊天服务器.zip
- 初探广播电视工程中计算机技术的有效应用.docx
- 最专业、最详细、最牛逼CAD标注样式设置.docx
- 基于中学计算机基础教学的几点研究.docx
- PLC办公楼自动门课程方案设计书.doc
- 互联网+环境下大学计算机基础课程教学革新分析及解读.docx
- 物联网异构系统综合管理平台的设计开发.docx
- 基于水箱液位控制系统的wincc与matlab的opc通讯系统方案设计书.doc
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈



安全验证
文档复制为VIP权益,开通VIP直接复制
