Can someone help me figure out how to connect to a sql table?

Here is what I have so far:
Code:
public static string GetJobListingURL (string title, string company, string found)
{
     title = (from URL in JobListings
              where title == Title
              select URL);
     company = (from URL in JobListings
                where company == Company
                select URL);
...