Re: MySQL and Perl

2012-07-02 Thread Francisco Valladolid H.
Hi. On Mon, Jul 2, 2012 at 10:31 AM, David Precious wrote: > On Mon, 2 Jul 2012 23:22:47 +0800 > lina wrote: > > > Hi, > > > > Is this book old? > > > > http://www.kitebird.com/mysql-perl/ > > > > MySQL and Perl for the Web > > "New

Re: MySQL and Perl

2012-07-02 Thread David Precious
On Mon, 2 Jul 2012 23:22:47 +0800 lina wrote: > Hi, > > Is this book old? > > http://www.kitebird.com/mysql-perl/ > > MySQL and Perl for the Web "New Riders, August, 2001" Yes. Very much so. A lot of it will be very outdated information. DBI's own

MySQL and Perl

2012-07-02 Thread lina
Hi, Is this book old? http://www.kitebird.com/mysql-perl/ MySQL and Perl for the Web Thanks with best regards, -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: Mysql and PERL

2005-06-26 Thread Chris Devers
On Sun, 26 Jun 2005, bright true wrote: > anybody could give me some help on how to use mysql with Perl > anything would help URLS , Examples etc... What you need to investigate is programming with DBI, Perl's library for writing programs that work with a variety of databases, including MySQ

Re: Mysql and PERL

2005-06-26 Thread Ing. Branislav Gerzo
bright true [bt], on Sunday, June 26, 2005 at 13:37 (-0700) thoughtfully wrote the following: bt> anybody could give me some help on how to use mysql with Perl bt> anything would help URLS , Examples etc... bt> i searched and i found ... but it was incomplete examples you searched wrong. Ok,

Mysql and PERL

2005-06-26 Thread bright true
Hello , anybody could give me some help on how to use mysql with Perl anything would help URLS , Examples etc... i searched and i found ... but it was incomplete examples Thanks , bye

RE: MySQL and Perl over the web

2004-08-16 Thread Bob Showalter
done" at > page-foot. I suspect that connection has never occoured, also because > I tryed to modify the parameters making them totally wrong, aspecting > an error message telling me a "kick-off bloody foreigner!" Error messages will be in your web server's error log,

Re: MySQL and Perl over the web

2004-08-14 Thread JupiterHost.Net
renzo rizzato wrote: Hallo to all, Hello, I am trying to access my MySQL database using the following PERL script: use strict; use warnings; use DBI; use CGI qw(:standard); print "Content-type: text/html\n\n"; print "\n\n\n"; 1 $host = "xxx.xxx.xxx.xxx"; 2 $database = "my_db_name"; 3

MySQL and Perl over the web

2004-08-14 Thread renzo rizzato
plies if I put a comment char # at lines 8,9,10 Could anyone help me? I am only a beginner and I realyze that books do not say everything, the script has been copied from a book about MySQL and Perl. Thank you -- *** renzo rizzato rovigo - italy linux mandrake 10.0 linu

Re: MySQL and perl using quotes

2003-06-01 Thread R. Joseph Newton
anthony wrote: > ... > $name = $dbh->("$name"); Anthony, please pay attention to the advice you have already been given. People do take valuable time to answer your posts, and I know that you have been reminded that there is no benefit to be derived from quoting variables as you have in the func

Re: MySQL and perl using quotes

2003-05-29 Thread Tassilo von Parseval
On Thu, May 29, 2003 at 11:17:40AM +0200 anthony wrote: > i have to update a MySQL tables some names and text > the problem is that the names and words have quotes > maybe in names it has O'connor, and text would be > He said :"I'don't know where to go!!". > > where there is a mixture of single

Re: MySQL and perl using quotes

2003-05-29 Thread Anthony Ward
Hi, thank you , for $name=$dbh->("$name"); It is in my Perl Programming book, I can only guess they are wrong :-) thanx again! Anthony W. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

MySQL and perl using quotes

2003-05-29 Thread anthony
Hi, i have to update a MySQL tables some names and text the problem is that the names and words have quotes maybe in names it has O'connor, and text would be He said :"I'don't know where to go!!". where there is a mixture of single and double quotes in text, i'm really get problem with updating