本文整理匯總了C#中Npgsql.NpgsqlConnector.UnexpectedMessageReceived方法的典型用法代碼示例。如果您正苦於以下問題:C# NpgsqlConnector.UnexpectedMessageReceived方法的具體用法?C# NpgsqlConnector.UnexpectedMessageReceived怎麽用?C# NpgsqlConnector.UnexpectedMessageReceived使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Npgsql.NpgsqlConnector
的用法示例。
在下文中一共展示了NpgsqlConnector.UnexpectedMessageReceived方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: NpgsqlRawCopyStream
internal NpgsqlRawCopyStream(NpgsqlConnector connector, string copyCommand)
{
_connector = connector;
_buf = connector.Buffer;
_connector.SendSingleMessage(new QueryMessage(copyCommand));
var msg = _connector.ReadSingleMessage();
switch (msg.Code)
{
case BackendMessageCode.CopyInResponse:
var copyInResponse = (CopyInResponseMessage) msg;
IsBinary = copyInResponse.IsBinary;
_canWrite = true;
break;
case BackendMessageCode.CopyOutResponse:
var copyOutResponse = (CopyOutResponseMessage) msg;
IsBinary = copyOutResponse.IsBinary;
_canRead = true;
break;
default:
throw _connector.UnexpectedMessageReceived(msg.Code);
}
}
示例2: Prepare
/// <summary>
/// Creates a prepared version of the command on a PostgreSQL server.
/// </summary>
public override void Prepare()
{
_connector = CheckReadyAndGetConnector();
if (Parameters.Any(p => !p.IsTypeExplicitlySet))
throw new InvalidOperationException("The Prepare method requires all parameters to have an explicitly set type.");
Log.Debug("Preparing: " + CommandText, _connector.Id);
using (_connector.StartUserAction())
{
DeallocatePrepared();
ProcessRawQuery();
_sendState = SendState.Start;
_writeStatementIndex = 0;
Send(PopulatePrepare);
_readStatementIndex = 0;
while (true)
{
var msg = _connector.ReadMessage(DataRowLoadingMode.NonSequential);
switch (msg.Code)
{
case BackendMessageCode.CompletedResponse: // prepended messages, e.g. begin transaction
case BackendMessageCode.ParseComplete:
case BackendMessageCode.ParameterDescription:
continue;
case BackendMessageCode.RowDescription:
var description = (RowDescriptionMessage) msg;
FixupRowDescription(description, _readStatementIndex == 0);
_statements[_readStatementIndex++].Description = description;
continue;
case BackendMessageCode.NoData:
_statements[_readStatementIndex++].Description = null;
continue;
case BackendMessageCode.ReadyForQuery:
Contract.Assume(_readStatementIndex == _statements.Count);
IsPrepared = true;
return;
default:
throw _connector.UnexpectedMessageReceived(msg.Code);
}
}
}
}
示例3: Prepare
/// <summary>
/// Creates a prepared version of the command on a PostgreSQL server.
/// </summary>
public override void Prepare()
{
Prechecks();
if (Parameters.Any(p => !p.IsTypeExplicitlySet)) {
throw new InvalidOperationException("NpgsqlCommand.Prepare method requires all parameters to have an explicitly set type.");
}
_connector = Connection.Connector;
Log.Debug("Prepare command", _connector.Id);
using (_connector.StartUserAction())
{
DeallocatePrepared();
ProcessRawQuery();
for (var i = 0; i < _queries.Count; i++)
{
var query = _queries[i];
ParseMessage parseMessage;
DescribeMessage describeMessage;
if (i == 0)
{
parseMessage = _connector.ParseMessage;
describeMessage = _connector.DescribeMessage;
}
else
{
parseMessage = new ParseMessage();
describeMessage = new DescribeMessage();
}
query.PreparedStatementName = _connector.NextPreparedStatementName();
_connector.AddMessage(parseMessage.Populate(query, _connector.TypeHandlerRegistry));
_connector.AddMessage(describeMessage.Populate(StatementOrPortal.Statement,
query.PreparedStatementName));
}
_connector.AddMessage(SyncMessage.Instance);
_connector.SendAllMessages();
_queryIndex = 0;
while (true)
{
var msg = _connector.ReadSingleMessage();
switch (msg.Code)
{
case BackendMessageCode.CompletedResponse: // prepended messages, e.g. begin transaction
case BackendMessageCode.ParseComplete:
case BackendMessageCode.ParameterDescription:
continue;
case BackendMessageCode.RowDescription:
var description = (RowDescriptionMessage) msg;
FixupRowDescription(description, _queryIndex == 0);
_queries[_queryIndex++].Description = description;
continue;
case BackendMessageCode.NoData:
_queries[_queryIndex++].Description = null;
continue;
case BackendMessageCode.ReadyForQuery:
Contract.Assume(_queryIndex == _queries.Count);
IsPrepared = true;
return;
default:
throw _connector.UnexpectedMessageReceived(msg.Code);
}
}
}
}
示例4: NpgsqlRawCopyStream
internal NpgsqlRawCopyStream(NpgsqlConnector connector, string copyCommand)
{
_connector = connector;
_readBuf = connector.ReadBuffer;
_writeBuf = connector.WriteBuffer;
_connector.SendQuery(copyCommand);
var msg = _connector.ReadMessage(DataRowLoadingMode.NonSequential);
switch (msg.Code)
{
case BackendMessageCode.CopyInResponse:
var copyInResponse = (CopyInResponseMessage) msg;
IsBinary = copyInResponse.IsBinary;
_canWrite = true;
break;
case BackendMessageCode.CopyOutResponse:
var copyOutResponse = (CopyOutResponseMessage) msg;
IsBinary = copyOutResponse.IsBinary;
_canRead = true;
break;
default:
throw _connector.UnexpectedMessageReceived(msg.Code);
}
}