RE: MYSQL on Windows 2k

2001-03-22 Thread C. Duncan Hudson
You need to add the \mysql\bin directory to your path. Dunc. -Original Message- From: Daniel J. [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 22, 2001 12:20 PM To: [EMAIL PROTECTED] Subject: MYSQL on Windows 2k I installed mysql as a service and it starts/stops fine, but whenever I

Source Control

2001-03-15 Thread Duncan Hudson
Anyone know of a Source control system implemented in MySQL? C. Duncan Hudson Dynax Solutions, Inc. Tel 216.292.8203 FAX 216.292.8273 EMail [EMAIL PROTECTED] - Before posting, please check: http://www.mysql.com

Trouble automating backup

2001-03-14 Thread Duncan Hudson
"" string starting on line 18) (Missing semicolon on previous line?) Anyone have any thoughts on what I need to do to get this to work? Thanks in advance, C. Duncan Hudson Dynax Solutions, Inc. Tel 216.292.8203 FAX 216.292.8273 EMail [EMAIL PROTECTED]

What tables are in my database?

2001-03-13 Thread Duncan Hudson
What's the SQL command to issue to list all of the tables that are contained in a given MySQL database? C. Duncan Hudson Dynax Solutions, Inc. Tel 216.292.8203 FAX 216.292.8273 EMail [EMAIL PROTECTED] - Before posting

Storing Hash

2001-02-28 Thread Duncan Hudson
I want to take a hash, in Perl w/ DBI, and store it in a column in one of my MySQL tables. I tried writing it to a blob, but I can't read it back later. How would I go about storing the hash and then reprocessing it later? Thanks in advance, Dunc.

RE: MySQL for Mac OS X Beta

2001-02-27 Thread C. Duncan Hudson
I would like to know where I can get the MySQL build for Mac OS X Beta? Or, if anyone has built it from the source? Thanks, Manoj Manoj, You can get a binary installation here: http://homepage.mac.com/LightyearDesign/MacOSX/ . I'm using it and it's working just fine. Now if only I could

Trouble w/ DBI/DBD::MySQL and OSX

2001-02-20 Thread Duncan Hudson
Has anyone been able to sucessfully make DBI and DBD::MySQL work under OSX - Darwin? I'm not having any luck at all. I'm running Perl v5.6.0 built for darwin. And I'm trying to install the MySQL modules version 1.2215, with DBI version 1.14.0. My mysql database is version 3.23.28. When I

Time between two DATETIMEs

2001-02-20 Thread Duncan Hudson
I have a table that contains two datetime columns, and I need to determine the time between the two dates. So, what I've been doing is just subtracting what I know is the later date from the earlier date. But that's obviously not the way to do it as my results don't relate to anything. Here's