-
Hi! I'm migrating from MySQL.Data/MySQL Connector.NET and I was wondering if there's an equivalent class to MySQL.Data's MySqlHelper. The class basically provides static methods for querying, a connection string can be passed in, and in that case it will manage connections pools automatically. https://dev.mysql.com/doc/connector-net/en/connector-net-connections-pooling.html If I'm right, I should just create a new |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Correct; all |
Beta Was this translation helpful? Give feedback.
Correct; all
MySqlConnection
objects created with the same connection string are automatically pooled (unless it containsPooling=false
).