Ask a Question related to Coldfusion Database Access, Design and Development.
-
Josh_und #1
Invalid Index Descriptor Error#07009 & HY000
I was orginally having trouble accessing stored procedures with CF7.0 & MSSQL
2000 SP4. Random script code would error out on Application.cfc & other pages
trying to retrieve information from a store procedure. Part of the problem was
SQL 2000 was not orginally updated to SP4 which fixes some problems. I had to
changed my database connection type.
Orginally I was using a ODBC Socket trusted connection which was configured
thorough Windows 2003 Server Contol Panel using the Data Sources applet. I
replaced this connection with a MS SQL Server Driver in cfide/administrator
using SQL login account.
Now I'm not having any more wierd errors. The errors I would get was 07009 =
Invalid Descriptor Index and HY000 = lnternal Error at <cfprocresult
name="Menus"> in the Application.cfc
<cfstoredproc procedure="p_Select_AppMenuBuilder"
datasource="#Application.DB#" returncode="no">
<cfprocparam type="In" cfsqltype="CF_SQL_VARCHAR" variable="@page"
value="#Url.page#" maxlength="50" null="no">
<cfprocparam type="In" cfsqltype="CF_SQL_VARCHAR" variable="@username"
value="#Session.Username#" null="no">
<cfprocresult name="Menus">
</cfstoredproc>
<cfloop query="Menus">
<cfset request.AppMenu = request.AppMenu & "<li><a href=""" & Application.Url
& Session.Template & "?page=" & appID & """>" & "<img
src=""images/line_slim2.gif"" border=""0"" align=""absmiddle""
alt=""Arrow""> " & AppName & "</a></li>">
</cfloop>
Josh_und Guest
-
ERROR 2013 (HY000): Lost connection to MySQL server during query
Hi to everybody, I have upgrade to mysql 5.0.18 my linux box and when I'm trying to make any command in this table: select * from PROGETTO;... -
Error parsing the Tag Library Descriptor file
We recently took on a new client that is running a shopping cart that we are suddenly getting lot of these in the application logs. I have never... -
ERROR 2003 (HY000): Can't connect to MySQL server on 'localhost'(10061)
I've had 4.1 installed for over a year and for all this time have been connecting successfully from Tomcat and Java stand-alone classes.. now just... -
Error parsing the Tag Library Descriptor
i have an include on site that is set in a variable (ie. <cfinclude template='#navigation#'>), and all of a sudden i'm getting a 'Error parsing... -
Invalid index 0..?
Hi all, I'm using VS.Net and have put a simple Datagrid on a Webform. I have a SqlConnection, DataAdapter and a Dataview. In design mode I...



Reply With Quote

