csv import php/mysql

Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.

  1. #1

    Default csv import php/mysql

    Hi there,
    Does anybody now of a extension to import CSV files into a MySQL database?
    The CSV file is very large (10MB!) and the content has to go in three
    tables.
    Greetings,
    HJ

    hja Guest

  2. Similar Questions and Discussions

    1. Export Querries from Flash 8 to MySQL and Import Datafrom MySQL
      Hi friends, I am making a web site for a customer and i need to import data from MySQL Database but i don't know how to do it. I would appreciate...
    2. Any GUI to import/export MySQL?
      Hi, I need to export a 200MB database from one domain to another. phpMyAdmin timeout after a while and is not ideal. I don't mind spending...
    3. Import CVS to MySQL
      Hi everybody, I have some big csv-like files with 15.000 and more artikles stored in it. They should be put into a mysql database. I thought...
    4. Import .sql file into MySQL DB ?
      Jerry T <Jerry@ nothanks.com> wrote in message news:<drgkjv03hrpc69p2tt5v0pjmfdspqlnesf@4ax.com>... phpMyAdmin has a functionality to execute...
    5. What is the easiest way to import XML to MYSQL
      What is the easiest way to import an XML Datafeed from a URL into a MYSQL Database? Possibly using PHP Regards Joe PS Please answer to group...
  3. #2

    Default Re: csv import php/mysql

    I dont know of an extension that will do that.


    10 meg is not big.

    [url]http://www.navicat.com/[/url]

    the above will give you a 30 trial and is simple to use.

    k


    twocans Guest

  4. #3

    Thumbs up csv import php/mysql

    LOAD DATA INFILE 'C:/sample.csv' IGNORE INTO TABLE mvts_report_data FIELDS TERMINATED BY ',' ENCLOSED BY '\"' LINES TERMINATED BY '\n' IGNORE 1 LINES

    This will work for you
    Note: If u want to ignore starting lines u can use "IGNORE 1 LINES"
    Laxman 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