void execSql( char[] aSql, ... ){ char[] sql = std.string.format( aSql, _arguments, _argptr ); database.exec( sql ); } The forwarding of all arguments to format() seams not to work. how can I do this?