Hi all
I've got a problem and I can't solve it.
I'm trying to follow a book example 

That is the code:

<html>
<head><title>Coldfusion Informe Barcos</title></head>
<body>
<!-- Coldfusion query -->
<cfquery name="Datos"  datasource="SGBD_SIPLA" dbtype="ODBC" username="podsd" 
password="23524" >
Select C01010, C01015 from SIG00010 where C01010 ='7327720'
</cfquery>

<cfoutput query="Datos">
<P>Lloyd : #C01010#<br>
<P>Eslora : #C01015#<br>
</cfoutput>
</body>
</html>

And that's what I obtain:

Select C01010, C01015 from SIG00010 where C01010 ='7327720' 
Lloyd : #C01010#
Eslora : #C01015#

The book says that we should obtain the values which correspond with those fields.It 
seems like ColdFusion doesn't recognize his tags
I don't know why 
Can anybody tell me what could be happenig?

Thanks in advance
Best regards
Manuel


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to