Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
DaveLrs01 #1
Getting a 'Null Pointers' error when using query ofQueries
Hi,
I am using text in a file to create a new query.
This section works correctly.
I am then using query of Queries:-
<cfquery dbtype="query" name="MyQoQQuery">
SELECT *
FROM qMyQuery
</cfquery>
"qMyQuery" is the name of the new query I have created from the text file.
It all works fine until I get 54 rows in the query when it sotps working and
gives me a
'java.lang.NullPointerException'
any ideas?
Dave
DaveLrs01 Guest
-
Check for null query
I have some code something like this in a query of a query: SELECT query1.field1, query1.field2, query1.field3 FROM query1 WHERE field1 not in... -
NULL NULL Error
I have run out of things to check for and could use some help. We are on a unix box, CFMX 7, and have started to use the CFDOCUMENT tag. The tag... -
cfapplication Null Pointers
Hi All, I'm using ColdFusion 6.0 server. I keep getting Error Occurred While Processing Request for Null Pointers are another name for undefined... -
CGI.pm form query sometime return null value
I am using CGI.pm, and getting the parameters similiar to the followings, use CGI::Carp qw(fatalsToBrowser); use CGI qw(:all); : my $task =... -
Error: ?null? is null or not an object
eloine: That is a bogus error message in that it probably refers to something you have done (or not done) on the page. So, looking in the... -
shp.jc #2
Re: Getting a 'Null Pointers' error when using query ofQueries
Whenever I've had problems with QofQ it's come down to datatyping problems.
CF looks at the first row to assign column data types.
If later on in the data set a value is introduced that doesn't match what it
guessed (let's say it was a blank column and CF figured STRING and later on an
INT appears), it can throw that error.
Hope that helps.
shp.jc Guest
-
DaveLrs01 #3
Re: Getting a 'Null Pointers' error when using query ofQueries
Thank you,
I looked at the datatypes and values and found 1 Int value missing therefore it threw up an error.
Dave
DaveLrs01 Guest



Reply With Quote

