Exemple #1
0
        /// <summary>
        /// Add table to XML export\import list
        /// </summary>
        /// <param name="cpTableName">Table name</param>
        /// <returns>Return true if success else false</returns>
        public bool AddToExportList(string cpTableName)
        {
            if (databaseId <= 0)
            {
                return(false);
            }

            lock (SyncRoot)
            {
                VistaDBAPI.ivdb_SelectDb(databaseId);
                return(VistaDBAPI.ivdb_AddToExportList(cpTableName));
            }
        }