coldfusion function for table length

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

  1. #1

    Default coldfusion function for table length

    Is there a simple way of finding a tables length in CF?
    stupidStan Guest

  2. Similar Questions and Discussions

    1. Create Table Through Coldfusion
      Hello, I'm trying to create a table through Coldfusion, but I keep getting the following Oracle error: ORA-01031: insufficient privileges ...
    2. How to call a coldfusion function defined in other coldfusion file??
      inside a.cfm, it has code fragment: <cfloop> <cfinclude template="b.cfm"> </cfloop> inside b.cfm, it has code fragment: ...
    3. ColdFusion MX - Firebird table name issues
      Anyone using Firebird DB ever run into this? I have a Coldfusion Firebird connection and I can only view the data in some firebird DB tables (if...
    4. Using a table function with a SET of parms?
      Hi, Given I have defined a TABLE udf of mytableudf(parm1) Is there a way of calling the table function for a SET of parm. values ? i.e once...
    5. How to get length of string? length() problems
      Simplified a bit, I'm parsing HTML documents to get sentences e.g. my $html = get($URL); # remove all HTML TAGs...blah blah blah @sentences =...
  3. #2

    Default Re: coldfusion function for table length

    I mean the number of entries in a table...
    stupidStan Guest

  4. #3

    Default Re: coldfusion function for table length

    select count(somefield) from sometable
    Dan Bracuk 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