How to connect Azure Sql Database to my Xamarin.Forms.App? [duplicate]
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 ?
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.
add a comment |
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 ?
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
add a comment |
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
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
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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:

Insert&Update:

Hope this can helps you.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
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:

Insert&Update:

Hope this can helps you.
add a comment |
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:

Insert&Update:

Hope this can helps you.
add a comment |
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:

Insert&Update:

Hope this can helps you.
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:

Insert&Update:

Hope this can helps you.
edited Dec 28 '18 at 7:22
answered Dec 28 '18 at 7:13
Leon YueLeon Yue
2142
2142
add a comment |
add a comment |
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