connection_string_parser

Creator: coderz1093

Last updated:

0 purchases

connection_string_parser Image
connection_string_parser Images

Languages

Categories

Add to Cart

Description:

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

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.