Console.WriteLine(“Using DataSets”);
FbDataAdapter da = new FbDataAdapter(); // Create a new DataAdapter
da.SelectCommand = new FbCommand(@”select * from company”, c); // Assign a Select Command to the DataAdapter
DataSet ds = new DataSet(); // Create a DataSet to Collect the Output
da.Fill(ds); // Use the DataAdapter to Fill the DataSet
DataRow dr = ds.Tables[0].Rows[0]; // Create and Fill a DataRow
Console.WriteLine(“Data Row Value” + dr[“name”].ToString()); // Pull out the field “NAME” from the table “COMPANY” and print it
Tough Mudder 2012 Southern California Route Elevation
Start: 1483 ft
End: 1462 ft
Max: 1834 ft
Min: 1355 ft
Total Gain/Loss: 2558 ft / -2579 ft
Average Slope 7.3% / -6.8
Max Slope: 44.5 % / -53.0%
Today I was able to climb up to 10060 feet above sea level. Definitely a first for me, but not without some sacrifice.
http://www.mapitnow.com/?maproute=7639
Shot with a decrepit Blackberry 8330, stitched in Hugin.




