Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default Blank database

    Hi community
    i have a problem
    i put this
    <CFQUERY NAME="cuenta" DATASOURCE="myaccount">
    Select Codigo, Destino,NumeroDestino
    from dbo.Llamadas

    </CFQUERY>
    <cfform format="flash" width="500">
    <cfgrid name="Tabla" query="cuenta" selectmode="single">
    <cfgridcolumn name="Codigo">
    <cfgridcolumn name="Destino">
    </cfgrid>
    </cfform>
    no error on displaying that
    but when the downloading finish it doesnt show anything
    whyyyy i have all fine but i dont see the database

    gcmenotti Guest

  2. Similar Questions and Discussions

    1. about:blank - flash popup is blank
      When going to yahoo maps (the new version that runs on flash9), when clicking on "printable version" I get a blank page that pops up with...
    2. BLANK ENTRIES IN ACCESS DATABASE
      Hi, I've developed a simple registration form, a html version and a rich form (flash) one. The problem is that when you complete the form and...
    3. Flash forms and blank database entries
      Hi, I've developed a simple registration form, a html version and a rich form (flash) one. The problem is that when you complete the form and...
    4. Blank fields in database
      Hi, I have a blank field in the database for Address. How do I refer to that? For ex: Set hrRS = Server.CreateObject("ADODB.Recordset") ...
    5. Passing database info to page allow user input then pass into another database
      Hi I really am going crazy! I'm using VBScript, ASP, and SQL My page reminds me of a shopping cart but looking at shopping cart examples has not...
  3. #2

    Default Re: Blank database

    Check and see if the database is populated

    <cfoutput>#cuenta.recordcount#</cfoutput>
    jorgepino Guest

  4. #3

    Default Re: Blank database

    it tells me that the
    Element RECORDCOUNT is undefined in CUENTA.
    gcmenotti Guest

  5. #4

    Default Re: Blank database

    <CFQUERY NAME="cuenta" DATASOURCE="myaccount">
    Select Codigo, Destino,NumeroDestino
    from dbo.Llamadas

    </CFQUERY>

    <!--- Place Here --->
    <cfoutput>#cuenta.recordcount#</cfoutput>
    <!--- Place Here --->

    <cfform format="flash" width="500">
    <cfgrid name="Tabla" query="cuenta" selectmode="single">
    <cfgridcolumn name="Codigo">
    <cfgridcolumn name="Destino">
    </cfgrid>
    </cfform>

    jorgepino Guest

  6. #5

    Default Re: Blank database

    nothings happend
    gcmenotti Guest

  7. #6

    Default Re: Blank database

    comment out the form and try it again.
    Dan Bracuk Guest

  8. #7

    Default Re: Blank database

    lol i miss to put the CFIDE in the same directory
    gcmenotti Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139