Ask a Question related to Coldfusion Database Access, Design and Development.
-
WOLFcfm #1
Getting Certain Information
Hi, I have a question that I'm hoping someone could help me with. I'm use
coldfusion and microsoft access. I have a database and I'm trying to access
only a certain piece of information from the database, for example, I want to
get the names of the only the people that signed a form so in the database I
have a column called signed and in microsoft access the data type is
yes/no...so I tried selecting the names of only the people who signed the form
and my code looks like this:
<cfquery name="signedname" datasource="psharp">
select name
from pforms
where signed = 'yes'
unfortunately this code doesn't work, does anyone know what is wrong with it?
I'm not sure if 'yes' is the correct term to use for something selected in
microsoft access database.
Any type of help will be much appreciated, thank you.
WOLFcfm Guest
-
Information
Dear Miss/Mrs./Mr. I intend to move to Australia and work there as an auditor or an accountant.So I'd like to be familiar with Australian accounting... -
RGB information
Hi, everybody, Could somebody tell me how to get the RGB information of a selected color? I mean something like R 120 / G 75 / B 56. Thanks in... -
[PHP] pdf information..
Sven, thanks for the info! "sven" <svenie@gmx.li> wrote in message news:<20030716101807.59042.qmail@pb1.pair.com>... -
Needs some information
Dear Sir/Madam, I work as an IT professional in Jakarta, Indonesia. Until now, we use UNIX Operating system for our Server. we have an idea to... -
pdf information..
Hello, I have been given a task to generate a business card program over the web. The option that i can think of it to make it easier is generate... -
BKBK #2
Re: Getting Certain Information
Use True or -1 in place of ' yes ', thus
<cfquery name="signedname" datasource="psharp">
select name
from pforms
where signed = True
</cfquery>
BKBK Guest
-
WOLFcfm #3
Re: Getting Certain Information
I tried all those before:
yes, true, on, 1
and they all didn't work but one thing I didn't try before which I noticed in
your code is to leave out the single quotes, I just tried them with no quotes
and they worked, thanks a lot for your help, I really appreciate it!
WOLFcfm Guest
-



Reply With Quote

