Skip to content

Commit

Permalink
调整Pgsql数据库ParamPrefix从$到@
Browse files Browse the repository at this point in the history
  • Loading branch information
advancerzjg committed Jul 17, 2024
1 parent 9edb81b commit 69c75a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion XCode/DataAccessLayer/Database/PostgreSQL.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public override String FormatValue(IDataColumn field, Object? value)
/// <summary>长文本长度</summary>
public override Int32 LongTextLength => 4000;

protected internal override String ParamPrefix => "$";
protected internal override String ParamPrefix => "@";

/// <summary>系统数据库名</summary>
public override String SystemDatabaseName => "postgres";
Expand Down

0 comments on commit 69c75a0

Please sign in to comment.