.NET Async/Await for ODBC












0















I've been looking into tuts about how to implement Async/Await. I already used it to read text files and process long loops and yeah it improved the responsiveness of my application.



What I'm looking for right now is how to use it in connecting to and getting data from a database.



I'm currently using ODBC to interact with MySQL. According to some tuts, functions like ExecuteNonQueryAsync is only available to SQLClient. If I'm not mistaken, I can't use SQLClient to interact with MySQL. Also tried using MySqlClient, I got nothing.



Did I miss anything or should I start thinking of another way? I'm open to other means.



Thanks in advance!










share|improve this question























  • I don't think there are async versions available yet (I.e. nobody has yet spent the time to write them).

    – Damien_The_Unbeliever
    Nov 26 '18 at 7:28











  • I was afraid someone's gonna comment that. Thanks! Just had to confirm it.

    – Coffeecat
    Nov 26 '18 at 7:48











  • Did you try MySQL's own Connector/Net? The docs list a full set of asynchronous methods. The only problem is that it fakes asynchronous execution by running the command on a background thread. MySQLConnector is a very popular alternative, with 1.5M downloads

    – Panagiotis Kanavos
    Nov 26 '18 at 12:18













  • @PanagiotisKanavos I already got it running by using the usual BackgroundWorker style that I use. Thanks for the tip though. I'll look into that and see what else I can get.

    – Coffeecat
    Nov 26 '18 at 12:36













  • @Coffeecat BGW is obsolete, fully replaced by Task.Run and async/await since 2012. It's particularly unsuitable for data access where you typically need to perform multiple asynchronous actions one after the other

    – Panagiotis Kanavos
    Nov 26 '18 at 12:45


















0















I've been looking into tuts about how to implement Async/Await. I already used it to read text files and process long loops and yeah it improved the responsiveness of my application.



What I'm looking for right now is how to use it in connecting to and getting data from a database.



I'm currently using ODBC to interact with MySQL. According to some tuts, functions like ExecuteNonQueryAsync is only available to SQLClient. If I'm not mistaken, I can't use SQLClient to interact with MySQL. Also tried using MySqlClient, I got nothing.



Did I miss anything or should I start thinking of another way? I'm open to other means.



Thanks in advance!










share|improve this question























  • I don't think there are async versions available yet (I.e. nobody has yet spent the time to write them).

    – Damien_The_Unbeliever
    Nov 26 '18 at 7:28











  • I was afraid someone's gonna comment that. Thanks! Just had to confirm it.

    – Coffeecat
    Nov 26 '18 at 7:48











  • Did you try MySQL's own Connector/Net? The docs list a full set of asynchronous methods. The only problem is that it fakes asynchronous execution by running the command on a background thread. MySQLConnector is a very popular alternative, with 1.5M downloads

    – Panagiotis Kanavos
    Nov 26 '18 at 12:18













  • @PanagiotisKanavos I already got it running by using the usual BackgroundWorker style that I use. Thanks for the tip though. I'll look into that and see what else I can get.

    – Coffeecat
    Nov 26 '18 at 12:36













  • @Coffeecat BGW is obsolete, fully replaced by Task.Run and async/await since 2012. It's particularly unsuitable for data access where you typically need to perform multiple asynchronous actions one after the other

    – Panagiotis Kanavos
    Nov 26 '18 at 12:45
















0












0








0








I've been looking into tuts about how to implement Async/Await. I already used it to read text files and process long loops and yeah it improved the responsiveness of my application.



What I'm looking for right now is how to use it in connecting to and getting data from a database.



I'm currently using ODBC to interact with MySQL. According to some tuts, functions like ExecuteNonQueryAsync is only available to SQLClient. If I'm not mistaken, I can't use SQLClient to interact with MySQL. Also tried using MySqlClient, I got nothing.



Did I miss anything or should I start thinking of another way? I'm open to other means.



Thanks in advance!










share|improve this question














I've been looking into tuts about how to implement Async/Await. I already used it to read text files and process long loops and yeah it improved the responsiveness of my application.



What I'm looking for right now is how to use it in connecting to and getting data from a database.



I'm currently using ODBC to interact with MySQL. According to some tuts, functions like ExecuteNonQueryAsync is only available to SQLClient. If I'm not mistaken, I can't use SQLClient to interact with MySQL. Also tried using MySqlClient, I got nothing.



Did I miss anything or should I start thinking of another way? I'm open to other means.



Thanks in advance!







mysql .net asynchronous async-await






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 26 '18 at 7:19









CoffeecatCoffeecat

55




55













  • I don't think there are async versions available yet (I.e. nobody has yet spent the time to write them).

    – Damien_The_Unbeliever
    Nov 26 '18 at 7:28











  • I was afraid someone's gonna comment that. Thanks! Just had to confirm it.

    – Coffeecat
    Nov 26 '18 at 7:48











  • Did you try MySQL's own Connector/Net? The docs list a full set of asynchronous methods. The only problem is that it fakes asynchronous execution by running the command on a background thread. MySQLConnector is a very popular alternative, with 1.5M downloads

    – Panagiotis Kanavos
    Nov 26 '18 at 12:18













  • @PanagiotisKanavos I already got it running by using the usual BackgroundWorker style that I use. Thanks for the tip though. I'll look into that and see what else I can get.

    – Coffeecat
    Nov 26 '18 at 12:36













  • @Coffeecat BGW is obsolete, fully replaced by Task.Run and async/await since 2012. It's particularly unsuitable for data access where you typically need to perform multiple asynchronous actions one after the other

    – Panagiotis Kanavos
    Nov 26 '18 at 12:45





















  • I don't think there are async versions available yet (I.e. nobody has yet spent the time to write them).

    – Damien_The_Unbeliever
    Nov 26 '18 at 7:28











  • I was afraid someone's gonna comment that. Thanks! Just had to confirm it.

    – Coffeecat
    Nov 26 '18 at 7:48











  • Did you try MySQL's own Connector/Net? The docs list a full set of asynchronous methods. The only problem is that it fakes asynchronous execution by running the command on a background thread. MySQLConnector is a very popular alternative, with 1.5M downloads

    – Panagiotis Kanavos
    Nov 26 '18 at 12:18













  • @PanagiotisKanavos I already got it running by using the usual BackgroundWorker style that I use. Thanks for the tip though. I'll look into that and see what else I can get.

    – Coffeecat
    Nov 26 '18 at 12:36













  • @Coffeecat BGW is obsolete, fully replaced by Task.Run and async/await since 2012. It's particularly unsuitable for data access where you typically need to perform multiple asynchronous actions one after the other

    – Panagiotis Kanavos
    Nov 26 '18 at 12:45



















I don't think there are async versions available yet (I.e. nobody has yet spent the time to write them).

– Damien_The_Unbeliever
Nov 26 '18 at 7:28





I don't think there are async versions available yet (I.e. nobody has yet spent the time to write them).

– Damien_The_Unbeliever
Nov 26 '18 at 7:28













I was afraid someone's gonna comment that. Thanks! Just had to confirm it.

– Coffeecat
Nov 26 '18 at 7:48





I was afraid someone's gonna comment that. Thanks! Just had to confirm it.

– Coffeecat
Nov 26 '18 at 7:48













Did you try MySQL's own Connector/Net? The docs list a full set of asynchronous methods. The only problem is that it fakes asynchronous execution by running the command on a background thread. MySQLConnector is a very popular alternative, with 1.5M downloads

– Panagiotis Kanavos
Nov 26 '18 at 12:18







Did you try MySQL's own Connector/Net? The docs list a full set of asynchronous methods. The only problem is that it fakes asynchronous execution by running the command on a background thread. MySQLConnector is a very popular alternative, with 1.5M downloads

– Panagiotis Kanavos
Nov 26 '18 at 12:18















@PanagiotisKanavos I already got it running by using the usual BackgroundWorker style that I use. Thanks for the tip though. I'll look into that and see what else I can get.

– Coffeecat
Nov 26 '18 at 12:36







@PanagiotisKanavos I already got it running by using the usual BackgroundWorker style that I use. Thanks for the tip though. I'll look into that and see what else I can get.

– Coffeecat
Nov 26 '18 at 12:36















@Coffeecat BGW is obsolete, fully replaced by Task.Run and async/await since 2012. It's particularly unsuitable for data access where you typically need to perform multiple asynchronous actions one after the other

– Panagiotis Kanavos
Nov 26 '18 at 12:45







@Coffeecat BGW is obsolete, fully replaced by Task.Run and async/await since 2012. It's particularly unsuitable for data access where you typically need to perform multiple asynchronous actions one after the other

– Panagiotis Kanavos
Nov 26 '18 at 12:45














0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53476316%2fnet-async-await-for-odbc%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53476316%2fnet-async-await-for-odbc%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Wiesbaden

Marschland

Dieringhausen