Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Identifier is too long

Guest
Jul 05, 2007 Jul 05, 2007
I'm getting a :

Microsoft OLE DB Provider for ODBC Drivers error '80004005'

[Informix][Informix ODBC Driver][Informix]Identifier is too long.

/insurance/test1.asp, line 72

Meanwhile, line 72 only says Set Recordset1 = Recordset1_cmd.Execute.


I don't understand since this particular web page used to work.

How do I resolve this?

Thanks.
TOPICS
Server side applications
423
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jul 05, 2007 Jul 05, 2007
Can you post the full ASP code?

--
Regards

John Waller


Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Jul 09, 2007 Jul 09, 2007
LATEST
John,

Thanks for looking into this.

Here's the recordset:

<%
Dim Recordset1
Dim Recordset1_cmd
Dim Recordset1_numRows

Set Recordset1_cmd = Server.CreateObject ("ADODB.Command")
Recordset1_cmd.ActiveConnection = MM_finance_STRING
Recordset1_cmd.CommandText = "SELECT cafe_empno, cafe_medical, cafe_basiclife, cafe_basicadd, cafe_basicstd, cafe_life, cafe_add, cafe_deplife, cafe_dental, cafe_unum, cafe_legal, cafe_aflac, cafe_aflac_taxable, cafe_bflex, cafe_oflex, cafe_unre_med, cafe_dep_care, cafe_hsa, cafe_unum_a, cafe_unum_c, cafe_unum_h, cafe_unum_i, cafe_unum_l, cafe_unum_p, cafe_unum_r, cafe_unum_s, cafe_retired, up_date FROM erupert.rskcafetmp WHERE cafe_empno = ?"
Recordset1_cmd.Prepared = true
Recordset1_cmd.Parameters.Append Recordset1_cmd.CreateParameter("param1", 5, 1, -1, Recordset1__MMColParam) ' adDouble

Set Recordset1 = Recordset1_cmd.Execute
Recordset1_numRows = 0
%>
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines