====== Improved SQL TableExists() function ====== ===== Modified January 22, 2015 ===== After this modification DynamicZip tests for the existence of a SQL table by using the following query: select * from sys.tables where name = {table name} If this query returns a row, then the table exists otherwise it does not. Prior to this modification DynamicZip tested for the existence of a SQL table by executing a select query on the table in question and checking to see if the query returned an error. If no error, then the table exists, otherwise it was considered to not exist. This fix was made in the following builds: * [[dynamiczip:install:mods:release:build74:build74_2|DynamicZip Build 74.2]] * [[dynamiczip:install:mods:release:build75:build_75_2|DynamicZip Build 75.2]] * [[dynamiczip:install:mods:release:build76:build761|DynamicZip Build 76.1]] ---- [[dynamiczip:install:mods:modifications|Modifications]]