0 purchases
connection string parser
Microsoft Connection String Parser #
This Dart library is made to parse Microsoft Connection Strings.
Example #
final connectionString = "Provider=sqloledb;Data Source=myServerAddress;Initial Catalog=myDataBase;Integrated Security=SSPI;";
final map = parseConnectionString(connectionString);
print(map);
copied to clipboard
This gives the map:
{
"Provider": "sqloledb",
"Data Source": "myServerAddress",
"Initial Catalog": "myDataBase",
"Integrated Security": "SSPI"
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.