Ejemplo n.º 1
0
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member
        #endregion

        #region Schema
        /// <summary>
        ///     Creates or updates a schema.
        ///     The schema name used is from <paramref name="credential"/> default schema.
        ///     If it already exists, only new tables are created, and existing data is preserved.
        /// </summary>
        /// <parameters>
        /// <param name="credential">The credential used to perform the operation.</param>
        /// </parameters>
        /// <returns>
        ///     True if the schema could be created or updated. False if the operation failed.
        /// </returns>
        public virtual bool CreateTables(ICredential credential)
        {
            return(Connector.CreateTables(credential));
        }