Commit 778c3529 authored by Savorboard's avatar Savorboard

fix bug of connection driver.

parent 8e7398d1
using System; using System;
using System.Data; using System.Data;
using System.Data.SqlClient;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using Dapper; using Dapper;
...@@ -62,7 +61,7 @@ namespace DotNetCore.CAP.PostgreSql ...@@ -62,7 +61,7 @@ namespace DotNetCore.CAP.PostgreSql
internal IDbConnection CreateAndOpenConnection() internal IDbConnection CreateAndOpenConnection()
{ {
var connection = _existingConnection ?? new SqlConnection(_options.ConnectionString); var connection = _existingConnection ?? new NpgsqlConnection(_options.ConnectionString);
if (connection.State == ConnectionState.Closed) if (connection.State == ConnectionState.Closed)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment