Ask a Question related to Macromedia Contribute General Discussion, Design and Development.

  1. #1

    Default Reading from a file

    The text file contains lines of data where each line contains data separated by
    a delimiter, representing separate columns (See example below). I need to able
    to read each file (Size is 64KB), line by line until end of file and then
    insert that into the database. Should I write a custom function to accomplish
    this?
    So using the example, the data represents 3 rows and each row has 3 columns.
    Example of text file layout:
    AAA|BBBB|KKKK|
    CCC|DDDD|FFFF|
    EEE|JJJ|HHHH

    KMED Guest

  2. Similar Questions and Discussions

    1. Reading CSv File
      I have a csv file having format ItemName,ItemDesc,FileName,Author,PubDate,isEnable,ProdType,UserType,Category1,S...
    2. install HTML::Template - Problem reading cache file / Bad file number
      i get the following error when i try to install HTML::Template to my local space, ie, not as root: +---------------------------- % perl -MCPAN...
    3. Reading a log file, again
      Try this: Caveat: This all assumes LOTS about the format of your data being consistent, and so should be treated as a "quick and dirty" as...
    4. reading a .txt-file with php
      Hello NG, I have the following problem and it would be nice, if someone could help me out on this problem: Thanks for your help! Jules Bach
    5. Reading in a file using asp
      I have the following code in an asp that just seems to hang when executed. When I disable the "Set theFileReader =...
  3. #2

    Default Re: Reading from a file

    What scripting are you using?

    You may want to post in a different forum or newsgroup- this one is for the
    Contribute product for end users to edit pages.

    Alan 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