CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Sep 2007
    Posts
    405

    How do Xamarin forms connect to SQL Server ?

    How do I process the xamarin forms that connect to SQL Server and export data to the listView ? I'm looking for this simple example xamarin forms that connect to SQL Server and display data to the listView. What do I find on google ?

  2. #2
    Join Date
    Jan 2026
    Posts
    12

    Re: How do Xamarin forms connect to SQL Server ?

    You should not connect Xamarin.Forms directly to SQL Server. Create a Web API that accesses SQL Server, then have your app call the API, parse the JSON response, and bind it to a ListView. This is secure, cross-platform, and standard practice.

  3. #3
    Join Date
    Jan 2026
    Posts
    12

    Re: How do Xamarin forms connect to SQL Server ?

    You shouldn?t connect Xamarin.Forms directly to SQL Server. Instead, create a Web API that accesses the database, have your app call the API, parse the JSON response, and bind it to a ListView. This is the secure, cross-platform standard approach

  4. #4
    Join Date
    Jan 2013
    Location
    Clearwater, FL.
    Posts
    370

    Re: How do Xamarin forms connect to SQL Server ?

    Quote Originally Posted by Milenart View Post
    You shouldn?t connect Xamarin.Forms directly to SQL Server. Instead, create a Web API that accesses the database, have your app call the API, parse the JSON response, and bind it to a ListView. This is the secure, cross-platform standard approach
    Please pay attention to the DATE when the first post was made... In this thread -> June 23rd, 2018 is the date...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured