How to connect Azure Sql Database to my Xamarin.Forms.App? [duplicate]












0















This question already has an answer here:




  • How to connect a Xamarin app to a SQL Azure DB

    2 answers




I am having an simple login page app in xamarin.forms ,two fields are there in login page namely UserName and Password. I having a table in SQL DataBase in AZURE which is holding username and Password. I have no idea how to connect DataBase to my app. Can you suggest any idea for this ?










share|improve this question













marked as duplicate by Peter Bons, rickvdbosch, Community yesterday


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.















  • This should help - stackoverflow.com/questions/46015474/…
    – Yogi
    Dec 28 '18 at 6:32






  • 1




    Please implement something like an API. Just some of lots of reasons: Having database credentials in an App is very concerning. If you need to scale in the future, an API will be much easier (and cheaper) to scale than a database. And if your app will get lots of users, the database will get lots of connections. You will not be able to optimize, for instance by using caching.
    – rickvdbosch
    Dec 28 '18 at 10:48
















0















This question already has an answer here:




  • How to connect a Xamarin app to a SQL Azure DB

    2 answers




I am having an simple login page app in xamarin.forms ,two fields are there in login page namely UserName and Password. I having a table in SQL DataBase in AZURE which is holding username and Password. I have no idea how to connect DataBase to my app. Can you suggest any idea for this ?










share|improve this question













marked as duplicate by Peter Bons, rickvdbosch, Community yesterday


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.















  • This should help - stackoverflow.com/questions/46015474/…
    – Yogi
    Dec 28 '18 at 6:32






  • 1




    Please implement something like an API. Just some of lots of reasons: Having database credentials in an App is very concerning. If you need to scale in the future, an API will be much easier (and cheaper) to scale than a database. And if your app will get lots of users, the database will get lots of connections. You will not be able to optimize, for instance by using caching.
    – rickvdbosch
    Dec 28 '18 at 10:48














0












0








0


0






This question already has an answer here:




  • How to connect a Xamarin app to a SQL Azure DB

    2 answers




I am having an simple login page app in xamarin.forms ,two fields are there in login page namely UserName and Password. I having a table in SQL DataBase in AZURE which is holding username and Password. I have no idea how to connect DataBase to my app. Can you suggest any idea for this ?










share|improve this question














This question already has an answer here:




  • How to connect a Xamarin app to a SQL Azure DB

    2 answers




I am having an simple login page app in xamarin.forms ,two fields are there in login page namely UserName and Password. I having a table in SQL DataBase in AZURE which is holding username and Password. I have no idea how to connect DataBase to my app. Can you suggest any idea for this ?





This question already has an answer here:




  • How to connect a Xamarin app to a SQL Azure DB

    2 answers








azure xamarin.forms azure-sql-database






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Dec 28 '18 at 6:13









Karthik RjKarthik Rj

1




1




marked as duplicate by Peter Bons, rickvdbosch, Community yesterday


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.






marked as duplicate by Peter Bons, rickvdbosch, Community yesterday


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.














  • This should help - stackoverflow.com/questions/46015474/…
    – Yogi
    Dec 28 '18 at 6:32






  • 1




    Please implement something like an API. Just some of lots of reasons: Having database credentials in an App is very concerning. If you need to scale in the future, an API will be much easier (and cheaper) to scale than a database. And if your app will get lots of users, the database will get lots of connections. You will not be able to optimize, for instance by using caching.
    – rickvdbosch
    Dec 28 '18 at 10:48


















  • This should help - stackoverflow.com/questions/46015474/…
    – Yogi
    Dec 28 '18 at 6:32






  • 1




    Please implement something like an API. Just some of lots of reasons: Having database credentials in an App is very concerning. If you need to scale in the future, an API will be much easier (and cheaper) to scale than a database. And if your app will get lots of users, the database will get lots of connections. You will not be able to optimize, for instance by using caching.
    – rickvdbosch
    Dec 28 '18 at 10:48
















This should help - stackoverflow.com/questions/46015474/…
– Yogi
Dec 28 '18 at 6:32




This should help - stackoverflow.com/questions/46015474/…
– Yogi
Dec 28 '18 at 6:32




1




1




Please implement something like an API. Just some of lots of reasons: Having database credentials in an App is very concerning. If you need to scale in the future, an API will be much easier (and cheaper) to scale than a database. And if your app will get lots of users, the database will get lots of connections. You will not be able to optimize, for instance by using caching.
– rickvdbosch
Dec 28 '18 at 10:48




Please implement something like an API. Just some of lots of reasons: Having database credentials in an App is very concerning. If you need to scale in the future, an API will be much easier (and cheaper) to scale than a database. And if your app will get lots of users, the database will get lots of connections. You will not be able to optimize, for instance by using caching.
– rickvdbosch
Dec 28 '18 at 10:48












1 Answer
1






active

oldest

votes


















0














This link talks about Create a Xamarin.Forms app with Azure, I think it can helps you.



And here is an another tutorial shows How to build a Xamarin App connected to Azure and query、insert、update、delete data from the Azure SQL database.



For example:



Query data:



enter image description here



Insert&Update:



enter image description here



Hope this can helps you.






share|improve this answer






























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    This link talks about Create a Xamarin.Forms app with Azure, I think it can helps you.



    And here is an another tutorial shows How to build a Xamarin App connected to Azure and query、insert、update、delete data from the Azure SQL database.



    For example:



    Query data:



    enter image description here



    Insert&Update:



    enter image description here



    Hope this can helps you.






    share|improve this answer




























      0














      This link talks about Create a Xamarin.Forms app with Azure, I think it can helps you.



      And here is an another tutorial shows How to build a Xamarin App connected to Azure and query、insert、update、delete data from the Azure SQL database.



      For example:



      Query data:



      enter image description here



      Insert&Update:



      enter image description here



      Hope this can helps you.






      share|improve this answer


























        0












        0








        0






        This link talks about Create a Xamarin.Forms app with Azure, I think it can helps you.



        And here is an another tutorial shows How to build a Xamarin App connected to Azure and query、insert、update、delete data from the Azure SQL database.



        For example:



        Query data:



        enter image description here



        Insert&Update:



        enter image description here



        Hope this can helps you.






        share|improve this answer














        This link talks about Create a Xamarin.Forms app with Azure, I think it can helps you.



        And here is an another tutorial shows How to build a Xamarin App connected to Azure and query、insert、update、delete data from the Azure SQL database.



        For example:



        Query data:



        enter image description here



        Insert&Update:



        enter image description here



        Hope this can helps you.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Dec 28 '18 at 7:22

























        answered Dec 28 '18 at 7:13









        Leon YueLeon Yue

        2142




        2142















            Popular posts from this blog

            Mossoró

            Cannot access a disposed object : DataContext

            Can't read property showImagePicker of undefined in react native iOS