need help in macros and access DB with external oracle DB connectivity? -


in existing microsoft access database have table inputvalue mapped oracle db,i hope of macros getting purged access db oracle db. here question there anyway identify existing mapping between oracle db field access db field? please on this.

using vba:

dim fld dao.field dim tdf tabledef dim db database      set db = currentdb      each tdf in db.tabledefs         ''linked table         if len(tdf.connect) > 0             debug.print tdf.connect             ''local name             debug.print tdf.name             ''source name             debug.print tdf.sourcetablename              each fld in tdf.fields                ''local name                 debug.print fld.name                ''source name                 debug.print fld.sourcefield             next         end if     next 

Comments

Popular posts from this blog

php - What is the difference between $_SERVER['PATH_INFO'] and $_SERVER['ORIG_PATH_INFO']? -

fortran - Function return type mismatch -

queue - mq_receive: message too long -