Mercurial > hg > ltpda
view m-toolbox/classes/tests/database/@ltpda_database/getDataIdFromAoTable.m @ 25:79dc7091dbbc database-connection-manager
Update tests
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 16:20:06 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% % DESCRIPTION: Returns the data ID (different only in a old databases) for % the given object ID % % VERSION: $Id: getDataIdFromAoTable.m,v 1.1 2011/05/25 16:23:53 ingo Exp $ % function val = getDataIdFromAoTable(utp, objID) q = sprintf('SELECT data_id FROM ao WHERE ao.obj_id = ?'); val = utils.mysql.execute(utp.conn, q, objID); end