Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Import data from text to mysql (forward)

2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

Import data from text into mysql(to)[@more@]access can easily import data from text into tables, mysql is not so convenient to use, in fact, it is very simple.

First of all, the data records are processed into lines and separated by specific characters such as: ","

Records such as:

aaa,bbb,ccc,ddd,eee

fff,ggg,hhh,iii,jjj,kkk

Create loaddate.php

 $hostname="localhost";

 $username="yourname";

 $password="yourpwd";

 $dbname="yourdb";

mysql_connect( $hostname, $username, $password);

mysql_select_db(" $dbname");

 $mydate=file("yourdate.txt");

 $n=count( $mydate);

for( $i=0; $i

Run loaddle.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 229

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report