Database Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Codewalkers ForumsOther TechnologiesDatabase Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Codewalkers Forums Sponsor:
  #1  
Old September 23rd, 2003, 09:54 AM
flyingchair flyingchair is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: Hong Kong
Posts: 108 flyingchair User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 3
text file import trouble

This is my situtation - can someone give me a nod in the right direction?

I am building some code for someone to automate lists of quotes. He sent me a text file where he cut and pasted the quotes (these are HK movie quotes. Looked something like this:

A bit suffocated on the chest.[
A fan called for disturbance.[
A gentleman should help the need.[
A man who disguised as woman beated me.[

1375 of them altogether.

I used this code to read the file and insert them into the database:

php Code:
Original - php Code
  1.  
  2. $text = strtok ($file_text, "[");
  3. while ($text)   {
  4.     $text_quote = mysql_escape_string($text);
  5.     $query = "INSERT INTO bwg_quotes
  6.               (quote_text, timestamp)VALUES '$text_quote', '0')";
  7.     $result = mysql_query($query) or die(mysql_error());
  8.     $text = strtok ("[");
  9. }
  10.  


This seemed to work fine until I realised my MySQL LIKE statements were not working. An initial A was not an initial A. THen I did a MySQL dump and discovered this:

INSERT INTO bwg_quotes VALUES (1, 'A bit suffocated on the chest.', NULL, 0);
INSERT INTO bwg_quotes VALUES (2, 'rnA fan called for disturbance.', NULL, 0);
INSERT INTO bwg_quotes VALUES (3, 'rnA gentleman should help the need.', NULL, 0);
INSERT INTO bwg_quotes VALUES (4, 'rnA man who disguised as woman beated me.', NULL, 0);

(1375 of them)

How do I get rid of the initial linefeed characters - I can't see them except when I do the dump?

Reply With Quote
  #2  
Old September 23rd, 2003, 12:12 PM
honcho's Avatar
honcho honcho is offline
Contributing User
Codewalkers Beginner (1000 - 1499 posts)
 
Join Date: Apr 2007
Location: Cape Cod
Posts: 1,347 honcho User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 h 52 m 2 sec
Reputation Power: 4
RE: text file import trouble

The "rn" are carriage return and line feed characters. You can either use trim() to remove these when you load quotes into the database, or one using MySQL functions for the data already in the db:
Code:
UPDATE bwg_quotes SET quote_text=REPLACE(REPLACE(quote_text, 'r', ''), 'n', '');


Reply With Quote
  #3  
Old September 23rd, 2003, 02:28 PM
flyingchair flyingchair is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: Hong Kong
Posts: 108 flyingchair User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 3
RE: text file import trouble

Got ya - thank you

Reply With Quote
Reply

Viewing: Codewalkers ForumsOther TechnologiesDatabase Help > text file import trouble


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump




 Free IT White Papers!
 
Create the Optimal Architecture for your Critical Applications
Warburton's the largest independently owned bakery in the UK faced a number of difficult challenges in providing the most robust yet efficient IT infrastructure for their organization's success. IBM's services combined with their xSeries servers created the perfect platform for their SAP environment with sufficient flexibility, and did so in very time effective fashion.

Request Your Free Technology Downloads!
 
Five Best Practices for Deploying a Successful Service-Oriented Architecture
This white paper describes the benefits you can expect with SOA, and how IBM can help take your business there.

Request Your Free Technology Downloads!
 
Gartner Magic Quadrant for Application Delivery Controllers
Gartner summarizes its view on Application Delivery Controllers, evaluates strengths and weaknesses of solutions, and provides Magic Quadrant reporting for a quick comparison across all vendors. Learn from Gartner how you can benefit from an all-in-one device like Citrix NetScaler that delivers the highest levels of availability, performance and security.

Request Your Free Technology Downloads!
 
Knowledge is Power
What you don't know can hurt you, and is likely costing you money and increasing your security risks during an era of scarce resources. This white paper proposes six key strategies that enterprise security managers can use to improve their network defense posture.

Request Your Free Technology Downloads!
 
Rationalizing the Multi-Tool Environment
The rationalized multi-tool approach is flexible, scalable and cost effective. It provides the necessary input to the IT service management business processes. It preserves prior investments in monitoring tools, empowers technologists to select the best tools with which to do their jobs, and enhances effective response to incidents.

Request Your Free Technology Downloads!
 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 




© 2003-2010 by Developer Shed. All rights reserved. DS Cluster 11 Hosted by Hostway
For more Enterprise Application Development news, visit eWeek