Mercurial > hg > ltpda
view m-toolbox/classes/tests/database/@ltpda_database/getTableEntry.m @ 52:daf4eab1a51e database-connection-manager tip
Fix. Default password should be [] not an empty string
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 07 Dec 2011 17:29:47 +0100 |
parents | 79dc7091dbbc |
children |
line wrap: on
line source
% % DESCRIPTION: Returns a table enty for the given inputs: database table, % column name, object ID % % VERSION: $Id: getTableEntry.m,v 1.2 2011/05/25 16:20:37 ingo Exp $ % function val = getTableEntry(utp, dbTable, tableField, objID) q = sprintf('SELECT %s.%s FROM %s WHERE %s.obj_id = ?', dbTable, tableField, dbTable, dbTable); val = utils.mysql.execute(utp.conn, q, objID); end