pq connection string parsing from other project

This commit is contained in:
eelke 2024-11-24 12:48:12 +01:00
parent 9a5feb9d54
commit d803cd8003
10 changed files with 529 additions and 0 deletions

View file

@ -0,0 +1,10 @@
namespace pgLabII.PgUtils.ConnectionStrings;
public interface IPqConnectionStringTokenizer
{
bool Eof { get; }
//PqToken NextToken(out string? text);
string GetKeyword();
void ConsumeEquals();
string GetValue();
}