> Le 19 mai 2017 à 21:12, Cannon Smith via 4D_Tech <[email protected]> a > écrit : > > I’d like to programmatically loop through all the tables in a database and > see whether they have the “Include in Log File” property set. Does anyone > know of a way to do this?
See here: <http://doc.4d.com/4Dv16/4D/16/System-Tables.300-3201182.en.html> array boolean($logged_ab;0) //>>>this one array longint($table_al;0) array text($name_at;0) begin sql SELECT LOGGED, TABLE_NAME, TABLE_ID FROM _USER_TABLES INTO :$logged_ab, :$name_at, :$table_al; end sql Not available in v14. -- Arnaud de Montard ********************************************************************** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html Archive: http://lists.4d.com/archives.html Options: http://lists.4d.com/mailman/options/4d_tech Unsub: mailto:[email protected] **********************************************************************

