/// <summary>
		/// Get an IPreparedCommand.
		/// </summary>
		/// <returns></returns>
		static public IPreparedCommand GetPreparedCommand(bool isEmbedStatementParams)
		{
			IPreparedCommand preparedCommand = null;

//			if (isEmbedStatementParams)
//			{
//				preparedCommand = new EmbedParamsPreparedCommand();
//			}
//			else
//			{
				preparedCommand = new DefaultPreparedCommand();
//			}

			return preparedCommand;
		}
        /// <summary>
        /// Get an IPreparedCommand.
        /// </summary>
        /// <returns></returns>
        static public IPreparedCommand GetPreparedCommand(bool isEmbedStatementParams)
        {
            IPreparedCommand preparedCommand = null;

//			if (isEmbedStatementParams)
//			{
//				preparedCommand = new EmbedParamsPreparedCommand();
//			}
//			else
//			{
            preparedCommand = new DefaultPreparedCommand();
//			}

            return(preparedCommand);
        }