Click here to Skip to main content
15,896,207 members
Articles / Database Development / SQL Server

GPS Tracer Extension: storing the path on SQL2005 via Web Services

Rate me:
Please Sign up or sign in to vote.
4.53/5 (9 votes)
7 Sep 20075 min read 33.7K   427   33  
This article extends Leonardo Salvatore's project "A GPS tracer application for Windows Mobile CE 5" using the Web Service Software Factory. It shows how to create a robust solution for storing the path on a DB server, using Web Services and SQL
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
using System.Text;
using Microsoft.Practices.EnterpriseLibrary.Data;
using GpsTracerServer.BusinessEntities;
using GpsTracerServer.DataAccess.Generic;
using System.Globalization;

namespace GpsTracerServer.DataAccess
{
    /// <summary>
    /// A class that converts a Device
    /// into a DbCommand that will delete
    /// that Device.
    /// </summary>
    internal class DeviceDeleteFactory : IDeleteFactory<System.Guid>
    {
        /// <summary>
        /// Creates the DeviceDeleteFactory to build a delete statement for
        /// the given System.Guid.
        /// </summary>
        /// <param name="System.Guid">System.Guid to delete from the database.</param>    
        public DeviceDeleteFactory()
        {
        }

        #region IDeleteFactory<System.Guid> Members
        public DbCommand ConstructDeleteCommand(Database db, System.Guid iD)
        {
            DbCommand command = db.GetStoredProcCommand("dbo.DeleteDevice");
            db.AddInParameter(command, "iD", DbType.Guid, iD);
            return command;
        }
        #endregion

        #region IDbToBusinessEntityNameMapper Members
        /// <summary>
        /// Maps a field name in the database (usually a parameter name for a stored proc)
        /// to the corresponding business entity property name.
        /// </summary>
        /// <remarks>This method is intended for error message handling, not for reflection.</remarks>
        /// <param name="dbParameter">Name of field/parameter that the database knows about.</param>
        /// <returns>Corresponding business entity field name.</returns>
        public string MapDbParameterToBusinessEntityProperty(string dbParameter)
        {
            switch (dbParameter)
            {
                case "iD":
                    return "iD";
                default:
                    throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, GenericResources.InvalidParameterName), dbParameter);
            }
        }
        #endregion
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions