view m-toolbox/classes/tests/database/@ltpda_database/getDataIdFromAoTable.m @ 41:6def6533cb16 database-connection-manager

Report authentication errors to user
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Mon, 05 Dec 2011 18:04:34 +0100
parents 79dc7091dbbc
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