Re: Special Characters

2008-11-24 Thread Mike Blezien
z" <[EMAIL PROTECTED]> To: "'Mike Blezien'" <[EMAIL PROTECTED]>; "'MySQL List'" Sent: Monday, November 24, 2008 9:21 AM Subject: RE: Special Characters -Original Message- From: Mike Blezien [mailto:[EMAIL PROTECTED] Sent

RE: Special Characters

2008-11-24 Thread Jerry Schwartz
>-Original Message- >From: Mike Blezien [mailto:[EMAIL PROTECTED] >Sent: Sunday, November 23, 2008 4:59 PM >To: MySQL List >Subject: Special Characters > >Hello, > >we are in the process of setting up a database with members data and >other info. >We&#x

Special Characters

2008-11-23 Thread Mike Blezien
Hello, we are in the process of setting up a database with members data and other info. We'll need to enter names with special characters, i.e: apostrophes: O'Rourke tildes: Magglio Ordóñez titlo: Anaïs hyphen: Chun-Myers Is there some special table setup required, collation

Handling special characters

2008-04-18 Thread Jerry Schwartz
This isn't really a problem with MySQL; MySQL just trips on it. Let me caution you that this discussion applies to Windows. I did observe this in my applications on Linux, but the problem will show itself only when reading a file, whether uploaded or not; there will be no problem if the data is en

Re: data truncation warnings by special characters [SOLVED]

2008-04-18 Thread C.R.Vegelin
ubject: Re: data truncation warnings by special characters I have some php code I use to import data that is a bit more flexible and robust than the load data statement in MySQL If you use php I can share the code with you. C.R.Vegelin wrote: Hi Jerry, Sorry, I should have mentioned that I

Re: data truncation warnings by special characters

2008-04-18 Thread Chris W
, April 18, 2008 2:30 PM Subject: RE: data truncation warnings by special characters >-Original Message- From: C.R.Vegelin [mailto:[EMAIL PROTECTED] Sent: Friday, April 18, 2008 8:42 AM To: mysql@lists.mysql.com Subject: data truncation warnings by special characters Hi List, I get s

Re: data truncation warnings by special characters

2008-04-18 Thread C.R.Vegelin
t; <[EMAIL PROTECTED]> To: "'C.R.Vegelin'" <[EMAIL PROTECTED]>; Sent: Friday, April 18, 2008 2:30 PM Subject: RE: data truncation warnings by special characters >-Original Message- From: C.R.Vegelin [mailto:[EMAIL PROTECTED] Sent: Friday, April 18, 2

RE: data truncation warnings by special characters

2008-04-18 Thread Jerry Schwartz
>-Original Message- >From: C.R.Vegelin [mailto:[EMAIL PROTECTED] >Sent: Friday, April 18, 2008 8:42 AM >To: mysql@lists.mysql.com >Subject: data truncation warnings by special characters > >Hi List, > >I get strange "Data truncated for column Descripti

RE: data truncation warnings by special characters

2008-04-18 Thread Jerry Schwartz
>-Original Message- >From: C.R.Vegelin [mailto:[EMAIL PROTECTED] >Sent: Friday, April 18, 2008 8:42 AM >To: mysql@lists.mysql.com >Subject: data truncation warnings by special characters > >Hi List, > >I get strange "Data truncated for column Descripti

data truncation warnings by special characters

2008-04-18 Thread C.R.Vegelin
Hi List, I get strange "Data truncated for column Description" warnings when loading a tab separated file with special characters. The definition of the target table is: CREATE TEMPORARY TABLE tmp ( Code CHAR(8) NOT NULL, Description TEXT NOT NULL, KEY Code (Code) ) ENGINE = MyIS

RE: Handling Special Characters

2008-01-21 Thread Jerry Schwartz
> use UTF-8 for text files > use SET NAMEs to correctly MySQL what charset you are using > > > > -- > Sebastian [JS] You are correct. The results were very confusing, especially since the visual difference between a hyphen (0x2D) and an N-quad (0x96). Also, copying UTF-8 text to a command window s

RE: Handling Special Characters

2008-01-21 Thread Jerry Schwartz
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On > Behalf Of Baron Schwartz > Sent: Friday, January 18, 2008 2:33 PM > To: Jerry Schwartz > Cc: mysql@lists.mysql.com > Subject: Re: Handling Special Characters > > Jerry, > > On Jan 18, 2008 2:27 PM, Jerry Schwar

Re: Handling Special Characters

2008-01-20 Thread Sebastian Mendel
Jerry Schwartz schrieb: I am having trouble inserting special characters into a table. I am using the MySQL client. I put the following commands into a text file (I'm on WinXP, using Notepad), copy them, and paste them into the MySQL command line client. SET NAMES utf8; CREATE TEMPORARY

RE: Handling Special Characters

2008-01-19 Thread Jerry Schwartz
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On > Behalf Of Baron Schwartz > Sent: Friday, January 18, 2008 2:33 PM > To: Jerry Schwartz > Cc: mysql@lists.mysql.com > Subject: Re: Handling Special Characters > > Jerry, > > On Jan

Re: Handling Special Characters

2008-01-18 Thread Baron Schwartz
Jerry, On Jan 18, 2008 2:27 PM, Jerry Schwartz <[EMAIL PROTECTED]> wrote: > I am having trouble inserting special characters into a table. I am using > the MySQL client. I put the following commands into a text file (I'm on > WinXP, using Notepad), copy them, and paste them in

Handling Special Characters

2008-01-18 Thread Jerry Schwartz
I am having trouble inserting special characters into a table. I am using the MySQL client. I put the following commands into a text file (I'm on WinXP, using Notepad), copy them, and paste them into the MySQL command line client. SET NAMES utf8; CREATE TEMPORARY TABLE `giiex

Re: Problems with backup and special characters

2005-08-10 Thread Gleb Paharenko
Hello. What do you think about switching to mysqldump with --hex-blob option? "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Restoring a backup of a very large database, I've received an error > message by the server (4.13) about an sql syntax error. I've done the > backup with my

Problems with backup and special characters

2005-08-09 Thread [EMAIL PROTECTED]
Restoring a backup of a very large database, I've received an error message by the server (4.13) about an sql syntax error. I've done the backup with mysql administrator and I've used the same procedure for months without problems. I've discovered that problem is into a blob field that store lo

Re: inserting special characters

2005-05-11 Thread Gleb Paharenko
Hello. I see nothing wrong in your settings. The problem could be that special characters in windows have different codes than in latin1, as was mentioned by Dusan Pavlica. When you'll debug this issue try to keep the table's and column's encoding the same as in SET NAMES,

Re: inserting special characters

2005-05-10 Thread Javier Ballesteros Correa
Hi, Mr. Paharenko, Here are the results: character_set_client | latin1 character_set_connection | latin1 character_set_database | latin1 character_set_results| latin1 character_set_server | latin1 character_set_system | utf8 character_sets_dir | C:\Archivos de programa\My

Re: inserting special characters

2005-05-10 Thread Gleb Paharenko
Hello. What output do these statements produce: show variables like '%char%'; show variables like '%coll%'; Include the results of SHOW CREATE TABLE executed on your tables as well. Javier Ballesteros Correa <[EMAIL PROTECTED]> wrote: > Hi, everybody! > I have a problem working wit

Re: inserting special characters

2005-05-10 Thread Dusan Pavlica
Dusan - Original Message - From: "Javier Ballesteros Correa" <[EMAIL PROTECTED]> To: Sent: Tuesday, May 10, 2005 1:14 PM Subject: inserting special characters Hi, everybody! I have a problem working with MySQL and C++ Builder 6. I can´t find the solution and I hope tha

inserting special characters

2005-05-10 Thread Javier Ballesteros Correa
Hi, everybody! I have a problem working with MySQL and C++ Builder 6. I can´t find the solution and I hope that maybe somebody can help me. I use the ZEOS components (6.1.5) to connect the MySQL database (version 4.1.11) with C++ Builder. The fact is that everything goes rigth except when I try to

Re: Special Characters

2005-02-11 Thread SGreen
Asad Habib <[EMAIL PROTECTED]> wrote on 02/11/2005 04:03:32 PM: > Does anyone know where I can find a list of characters that cannot be > inserted into a MySQL database as part of a string? I know that MySQL does > not accept single and double quotes and that these have to replaced by > their nam

Special Characters

2005-02-11 Thread Asad Habib
Does anyone know where I can find a list of characters that cannot be inserted into a MySQL database as part of a string? I know that MySQL does not accept single and double quotes and that these have to replaced by their name code equivalents. Are there any other characters that are unacceptable?

Re: Embedded Quotes and Special Characters.

2005-01-05 Thread Gleb Paharenko
Hello. See: http://dev.mysql.com/doc/mysql/en/Charset.html Andrew Mull <[EMAIL PROTECTED]> wrote: > That is what I was wondering, but not sure how to check/set the proper > character set. > > Thanks. > > -Andy > > Quoting Gleb Paharenko <[EMAIL PROTECTED]>: > >> Hello. >>

Re: Embedded Quotes and Special Characters.

2005-01-04 Thread Andrew Mull
ll <[EMAIL PROTECTED]> > > > To: mysql@lists.mysql.com > > > Date: Tuesday, January 04, 2005 10:19:20 AM -0500 > > > Subject: Embedded Quotes and Special Characters. > > > > > > I'm moving a database from one server to another. Both are unix

Re: Embedded Quotes and Special Characters.

2005-01-04 Thread Andrew Mull
- Original Message -- > > From: Andrew Mull <[EMAIL PROTECTED]> > > To: mysql@lists.mysql.com > > Date: Tuesday, January 04, 2005 10:19:20 AM -0500 > > Subject: Embedded Quotes and Special Characters. > > > > I'm moving a database from one server

Re: Embedded Quotes and Special Characters.

2005-01-04 Thread Andrew Mull
That is what I was wondering, but not sure how to check/set the proper character set. Thanks. -Andy Quoting Gleb Paharenko <[EMAIL PROTECTED]>: > Hello. > > You can write a script which will walk through all tables and > update the rows using replace() function. But, I think, you should > fin

Re: Embedded Quotes and Special Characters.

2005-01-04 Thread Gleb Paharenko
Hello. You can write a script which will walk through all tables and update the rows using replace() function. But, I think, you should find the source of the problem. What odd characters have appeared after importing? If they are just unreadable, may be the clue is in wrong character set.

Embedded Quotes and Special Characters.

2005-01-04 Thread Andrew Mull
I'm moving a database from one server to another. Both are unix based, however the original database is on a Solaris box, and the new server is RedHat. The database has embedded "s and 's in some of the varchar fields. When I moved the database, I did a mysqldump, copied the text file to the

RE: special characters not inserting into database - help

2004-09-28 Thread Ed Lazor
Try mysql_escape_string instead of addslashes. Also, I'm not sure why you did it, but you don't need to include your entire form in the PHP script and echo it. If you have PHP code before and after the form, you could use this approach: Form You could also try escaping the title all of the

special characters not inserting into database - help

2004-09-28 Thread leegold
Newbie type question: apostrophes ie. a ' single quote is not "getting into" the database fields. So if I entererd in a PHP/MYSQL web page entry field: Sally's Website. When I look directly into the column with the MYSQL cmdline I see: Sally s Website. Below are the code snips I'm using(I number

Problems with very special characters

2004-05-08 Thread Wouter van Vliet
y) to do with transferring the very special characters over the lines between s007 and s006, displaying them on the screen and entering them in the database through webforms. Normal special chars like é, ê, à and so on seem to be displayed ok (after calling htmlentities in php: PHP 4.3.3 (cgi) (built

Problems with very special characters

2004-05-08 Thread Wouter van Vliet
y) to do with transferring the very special characters over the lines between s007 and s006, displaying them on the screen and entering them in the database through webforms. Normal special chars like é, ê, à and so on seem to be displayed ok (after calling htmlentities in php: PHP 4.3.3 (cgi) (built

Re: SELECT DISTINCT returns an incorrect result with special characters

2004-04-29 Thread Ricardo
I've solved the problem starting the server using the option --character-set=dos. The side effect is that searches become accent-sensitive. Best wishes. --- Ricardo <[EMAIL PROTECTED]> escreveu: > I have a problem with SELECT DISTINCT if the target > field contains s

Re: SELECT DISTINCT returns an incorrect result with special characters

2004-04-28 Thread Ricardo
But I think the collation set only applies to MySQL 4.1, doesn't it? I'm using MySQL 4.0.16. I found no "character_set_server" system variable. Only "character_set". http://dev.mysql.com/doc/mysql/en/Charset-map.html Thanks. --- Jochem van Dieten <[EMAIL PROTECTED]> escreveu: > Ricardo wrote:

Re: SELECT DISTINCT returns an incorrect result with special characters

2004-04-28 Thread Ricardo
latin1 >--- Egor Egorov <[EMAIL PROTECTED]> escreveu: > What is the character set of the data? What is the > character set of MySQL server? > > > > -- > For technical support contracts, goto > https://order.mysql.com/?ref=ensita > This email is sponsored by Ensita.net > http://www.ensita.net/

Re: SELECT DISTINCT returns an incorrect result with special characters

2004-04-28 Thread Egor Egorov
Ricardo <[EMAIL PROTECTED]> wrote: > I have a problem with SELECT DISTINCT if the target > field contains special characters. > > Example: > > select MyField from MyTable > +--+ > | MyField | > +--+ > | f? | > | F?

SELECT DISTINCT returns an incorrect result with special characters

2004-04-28 Thread Ricardo
I have a problem with SELECT DISTINCT if the target field contains special characters. Example: select MyField from MyTable +--+ | MyField | +--+ | fá | | Fá | | fa | | Fa | | fâ | | Fâ | | fã | | Fã | +--+ select

Importing special characters via text file

2004-01-16 Thread Rick Dwyer
Hello all. Any help on the following matter is greatly appreciated. I tried to import a text file containing numerous special characters (À, Æ, Ç , etc.) but they convert to incorrect characters. I can paste them and write them correctly using a form submission created with LP6. However

Re: special characters as field values

2004-01-01 Thread Matt W
scape stuff yourself again, or it will add too many slashes! So you need to check for that somehow. Hope that helps. Matt - Original Message - From: "Chris W" Sent: Wednesday, December 31, 2003 4:44 PM Subject: special characters as field values > I am storing data fro

special characters as field values

2003-12-31 Thread Chris W
I am storing data from an html form and there could be any character in there, including a % and an _. I'm using mysql_real_escape_string in php to escape special characters, but it says it doesn't escape the % and _. I was also reading something about escaping the -- . If I wa

re: Quote command and special characters

2002-11-08 Thread Victoria Reznichenko
lem or knows how to write a sql statement using a different function that handles special characters like apostrophe's, it would be GREATLY appreciated. I am using AY> asp on a w2k server platform. To run the statement, i've tried going through adodb, mysqlgui, and just plain mysq

Quote command and special characters

2002-11-07 Thread Adam Young
that handles special characters like apostrophe's, it would be GREATLY appreciated. I am using asp on a w2k server platform. To run the statement, i've tried going through adodb, mysqlgui, and just plain mysql. Ideas? Adam

Special characters over Web

2002-03-29 Thread Jesse Sheidlower
There have been a lot of questions here about how to store, sort, etc. various special characters and alphabets in MySQL internally. Maybe this isn't really a MySQL question, but I'd like to know how to deal with such characters over a Web interface. I have a database of books that&

Re: Input of special characters!

2001-05-14 Thread Rolf Hopkins
Please RTFM http://www.mysql.com/doc/S/t/String_syntax.html - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, May 14, 2001 18:12 Subject: Input of special characters! > Hi! > > I have started to write a small web based applicat

Input of special characters!

2001-05-14 Thread mikael.hulten
Hi! I have started to write a small web based application and encountered a small problem. If I use any of escape characters in the web based forms like the singel quote ' the value of that field will not be inserted in the database. I know that a singel quote can be written like '' to be able

Re: Special Characters in INSERT Statement

2001-03-23 Thread Paul DuBois
At 5:30 PM -0500 3/23/01, Lee Jenkins wrote: >I apologize because I know I've seen this somewhere on the list before >(should have saved it). I'm trying to insert some data into CHAR fields >that have trailing Ascii 0 characters, but get a syntax error. > >The data would like this: > >23302220202

Special Characters in INSERT Statement

2001-03-23 Thread Lee Jenkins
I apologize because I know I've seen this somewhere on the list before (should have saved it). I'm trying to insert some data into CHAR fields that have trailing Ascii 0 characters, but get a syntax error. The data would like this: 23302220202X Where "X" represents the

Re: inserting special characters

2001-02-20 Thread Paul DuBois
At 1:24 AM + 2/21/01, [EMAIL PROTECTED] wrote: >Dear Sirs : > >Please I would want to konw How I can insert special >characters into a table, > >Since the " and ' chars are used for delimiting values into >an insert statement I don¥t know how I can put t

Re: inserting special characters

2001-02-20 Thread Rolf Hopkins
ED]> Sent: Wednesday, February 21, 2001 9:24 Subject: inserting special characters > Dear Sirs : > > Please I would want to konw How I can insert special > characters into a table, > > Since the " and ' chars are used for delimiting values into > an insert statem

inserting special characters

2001-02-20 Thread efreyre
Dear Sirs : Please I would want to konw How I can insert special characters into a table, Since the " and ' chars are used for delimiting values into an insert statement I don´t know how I can put these as part the string that I inserting. I got this putting the data into a file

Re: special characters in MySQL query

2001-02-19 Thread Ed Carp
Rolf Hopkins ([EMAIL PROTECTED]) writes: > I think you mean addslashes() > > If you are using PHP there is the htmlspecialchars() function that will do > just that for you. > > > > > I have written a program which reads data from WWW forms and passes > > > > it to > > > > > MySQL queries. All w

Re: special characters in MySQL query

2001-02-19 Thread Rolf Hopkins
I think you mean addslashes() - Original Message - From: "Thalis A. Kalfigopoulos" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 20, 2001 2:37 Subject: Re: special characters in MySQL query > If you are using PHP there is the htmlspecialc

Re: special characters in MySQL query

2001-02-19 Thread Thalis A. Kalfigopoulos
If you are using PHP there is the htmlspecialchars() function that will do just that for you. cheers, thalis > > - Original Message - > > From: "Robert Heron" <[EMAIL PROTECTED]> > > To: <[EMAIL PROTECTED]> > > Sent: Saturday, February 17

Re: special characters in MySQL query

2001-02-18 Thread Rolf Hopkins
ay, February 18, 2001 0:18 Subject: Re: special characters in MySQL query > No, solve it in your own program. > > > - Original Message - > From: "Robert Heron" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Saturday, February 17, 2001 6:35 PM &g

Re: special characters in MySQL query

2001-02-17 Thread Artem Koutchine
No, solve it in your own program. - Original Message - From: "Robert Heron" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, February 17, 2001 6:35 PM Subject: special characters in MySQL query > I have written a program which reads data from W

special characters in MySQL query

2001-02-17 Thread Robert Heron
I have written a program which reads data from WWW forms and passes it to MySQL queries. All works fine except for the cases when the form is filled with characters like '%', '"', ''', etc. Then, these characters are treated like special, formatting characters in SQL query, which, of course demage

attached CGI to remove special characters.

2001-02-14 Thread John W Ford
Hello List, I mentioned that I'd fixed my problem with the special characters. Everybody had some great tips... I like to use Adobe Go Live to design web pages and it has a text editor that leaves file in the right format... so I just used it to save the files. If you use NOTEPAD or many o

RE:FIXED - special characters messing me up

2001-02-14 Thread Peter Lewis
On Tue, 13 Feb 2001, John W Ford wrote: > Thanks everybody for helping me out... I got the scripts loaded and am > talking to mySQL via DBI now. > Good John, Which method did you use? Please let us know so we can add it to our list of fixes ... Regards Peter [EMAIL PROTECTED] -- It is as sp

RE: special characters messing me up

2001-02-13 Thread John W Ford
d; Mysql > Subject: Re: special characters messing me up > > > At 23:04 12-02-2001 -0800, John W Ford wrote: > >I can't figure out why my windows machine leaves "^M" character > at the end > >of each line of code. This causes the file to be messed up when >

RE: special characters messing me up

2001-02-13 Thread The Tilghman
mv file file~ ; tr -d '\015' file ; rm file~ Or, in vim, :set fileformat=unix Or, use PFE32.EXE on Windows as your editor (allows saving as Unix text file). -Tilghman -- "There cannot be a crisis today. My schedule is already full." --Henry Kissinger > -Original Message- > From

RE: special characters messing me up

2001-02-13 Thread mike thomas
John Here is another solution to removing those '^M' chars. This is a lot simpler than my last idea :- sed 's/^M//g' YOUR_FILE > YOUR_NEW_FILE Michael Thomas www.abcXyz.com > - > Before posting, please check: >http://www.

RE: special characters messing me up

2001-02-13 Thread mike thomas
day, February 12, 2001 11:04 PM To: Mysql Subject: special characters messing me up I can't figure out why my windows machine leaves "^M" character at the end of each line of code. This causes the file to be messed up when I put it on the Linux server. It makes my perl interpreter lo

Re: special characters messing me up

2001-02-13 Thread Thalis A. Kalfigopoulos
> > Or a handy one-liner... > > > > perl -pi -e "s/[\012\015]//" *.sql > > > > > > Or alternatively edit the file with vi and do: > :s/// > > This inteprets to the following keystrokes: > ':' colon > 's' s for substitute > ''Ctrl-v-m to create the annoying ^M as one character > '//'

Re: special characters messing me up

2001-02-13 Thread Peter Lewis
On Tue, 13 Feb 2001, Irmund Thum wrote: > Rolf Hopkins schrieb: > > > > "^M"??? The ^M is the carriage return/line feed usually found in ms/dos text files. On my Linux system (on downloaded files) I removed them by tr -d \r old file > new file. tr = text replace; -d delete; \r = ^M see 'info

Re: special characters messing me up

2001-02-13 Thread Thalis A. Kalfigopoulos
On Tue, 13 Feb 2001, Peter Skipworth wrote: > Or a handy one-liner... > > perl -pi -e "s/[\012\015]//" *.sql > > Or alternatively edit the file with vi and do: :s/ // This inteprets to the following keystrokes: ':' colon 's' s for substitute ' ' Ctrl-v-m to create the annoying ^M

Re: special characters messing me up

2001-02-13 Thread John Jensen
"M" is the thirteenth letter of the alphabet. ASCII 13 (^M) is the carriage return. If you are using binary transfer on ftp, then you will get these and any other control characters imbedded in your file. Set your ftp to ASCII and try again. Perl is particulary sensitive to this. HTML doesn't

Re: special characters messing me up

2001-02-13 Thread Peter Skipworth
; > Cc: "Mysql" <[EMAIL PROTECTED]> > Sent: Tuesday, February 13, 2001 7:31 AM > Subject: Re: special characters messing me up > > >> > > >> - Original Message - > > >> From: "John W Ford" <[EMAIL PROTECTED]> > &

Re: special characters messing me up

2001-02-13 Thread G. Adam Stanislav
At 23:04 12-02-2001 -0800, John W Ford wrote: >I can't figure out why my windows machine leaves "^M" character at the end >of each line of code. This causes the file to be messed up when I put it on >the Linux server. That's a carriage return. DOS/Windows ends a line with a carriage return follow

Re: special characters messing me up

2001-02-13 Thread Pat Sherrill
PROTECTED] - Original Message - From: <[EMAIL PROTECTED]> To: "Irmund Thum" <[EMAIL PROTECTED]> Cc: "Mysql" <[EMAIL PROTECTED]> Sent: Tuesday, February 13, 2001 7:31 AM Subject: Re: special characters messing me up > >> > >> -

Re: special characters messing me up

2001-02-13 Thread tlr7425
line, while Linux and >> Macs only use LF. Hopefully this will help. Don't know what you can do >> about it though. >> >> - Original Message - >> From: "John W Ford" <[EMAIL PROTECTED]> >> To: "Mysql" <[EMAIL

Re: special characters messing me up

2001-02-13 Thread clay bond
On Tue, 13 Feb 2001, Irmund Thum wrote: > Rolf Hopkins schrieb: > > > > "^M"??? You sure it is that? Anyway, it is most likely to do with carriage > > returns. Windows uses CR and LF to indicate a new line, while Linux and > > Macs only use LF. Hopefully this will help. Don't know what yo

Re: special characters messing me up

2001-02-13 Thread Irmund Thum
it though. > > - Original Message - > From: "John W Ford" <[EMAIL PROTECTED]> > To: "Mysql" <[EMAIL PROTECTED]> > Sent: Tuesday, February 13, 2001 15:04 > Subject: special characters messing me up > > > I can't figure out why my w

Re: special characters messing me up

2001-02-12 Thread Rolf Hopkins
John W Ford" <[EMAIL PROTECTED]> To: "Mysql" <[EMAIL PROTECTED]> Sent: Tuesday, February 13, 2001 15:04 Subject: special characters messing me up > I can't figure out why my windows machine leaves "^M" character at the end > of each line of cod

special characters messing me up

2001-02-12 Thread John W Ford
I can't figure out why my windows machine leaves "^M" character at the end of each line of code. This causes the file to be messed up when I put it on the Linux server. It makes my perl interpreter look for a file named ^M after the very first line. #!/usr/sbin/perl also... what else I can't fi