In case you all missed it.

2011-11-11 Thread Curtis Maurand
mysql> select date_format(now(),'%m-%d%-%y %h:%i:%s') AS time; +---+ | time  | +---+ | 11-11-11 11:11:11 | +---+ 1 row in set (0.00 sec)

Re: selecting the 'best' match

2009-05-12 Thread Curtis Maurand
in your code, you can define ranges of say if the model year being looked for is 2002, then present model years 2000 thru 2004. --Curtis blackwater dev wrote: Thanks but doing it in code would require me to pull in the entire car table and process it. With potentially tons of rows, seems li

Re: Question on replication terminology

2009-04-29 Thread Curtis Maurand
I think what's really being sought after, here is clustering. --C Eric Bergen wrote: Dual master replication can be either dual master dual write or dual master single writer. The latter is preferred. In this configuration replication is connected in both directions but clients only ever conne

Re: Sun bought by Oracle

2009-04-20 Thread Curtis Maurand
I figure that they'll either kill mysql or they'll limit the commnunity version in ways that will make you purchase a commercial version if you want to continue to use it. I figure there will be heavy migrations to open source alternatives. --C Andy Shellam wrote: I've just been made aware b

Re: Cant get TRIM to work?

2009-04-17 Thread Curtis Maurand
http://www.mydigitallife.info/2007/04/23/remove-or-trim-first-or-last-few-characters-in-mysql-database-with-sql/ Richard Reina wrote: Hello All, I can't get trim to trim the blank space from a TEXT field in the query below and was wondering if someone could tell what I am doing wrong? SELECT

Re: [PHP] multiple choice dropdown box puzzle

2009-02-23 Thread Curtis Maurand
You're looking for something like: This gets called 10 times from another function, but this is sort of what you're looking for. This gives me a combo-box. function qselect($mysql_link, $i) { $driverquery = "select car_no, drv_name from cars order by car_no + 0"; $driverresult =

Re: Newbie First Use Connection Question - Mac OSX 10.5.6

2009-02-19 Thread Curtis Maurand
or as the docs read: shell> mysqladmin password John Daisley wrote: The root Password will be blank after initial install. You can set it at a shell prompt with commands something like this... shell> mysql -u root mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpwd'); mysql> FLUS

Re: How to convert Acess 2007 ACCDB file to MySQL?

2008-12-30 Thread Curtis Maurand
I'm not plugging the product, but I just ran into this: http://www.dbconvert.com/product.php It's $79.00. --Curtis Dan Nelson wrote: In the last episode (Dec 29), mos said: Someone has given me an Access 2007 file *.ACCDB and I don't have Access 2007. Is there a (preferably free) way to

Re: Is it a bug or my mistake in server configuration?

2008-11-10 Thread Curtis Maurand
I've been having the same trouble in a Xen virtual machine. After about an hour and a half, mysql will be consuming 100% of cpu. There is nothing wrong with the tables. I'm assuming its a dynamic vs. fix amount of memory available to mysql. I'm guaranteed x amount of ram, but that might g

Re: Install Microsoft.Jet

2008-08-06 Thread Curtis Maurand
You need the mdac components. free download from MS. Sivasakthi wrote: Hi all, I have tried to import the excel to db , but i get the following error, The OLE DB provider "Microsoft.Jet.OLEDB.4.0" has not been registered. how can i install the Microsoft.Jet? System Info: OS Name Microsoft(R

Re: Why people don't use engine named BDB?

2008-07-21 Thread Curtis Maurand
Its mainly because it was purchased by Oracle. BDB provided transaction support. Innodb has been the defacto choice for a ACID transactions, but Innodb was also purchased by Oracle in its attempt to kill MySQL after its failed attempt to purchase MySQL. That's why MySQL has been working o

RE: Accessing remote machine (Ubuntu) from Window

2008-07-17 Thread Curtis Maurand
I just checked my ubuntu config and I have: Port = 3306 Bind-address = 0.0.0.0 Pid-file = /var/run/mysqld/mysqld.pid Socket = /var/run/mysqld/mysqld.sock Nothig is in upper case. My phone is doing that for me. -Original Message- From: "Jesse" <[EMAIL PROTECTED]> To:

Re: Accessing remote machine (Ubuntu) from Window

2008-07-17 Thread Curtis Maurand
I cannot. Are you trying to connect via the localhost. It may still be trying to connect to localhost. You might try changing the bind-address statement to bind-address = 0.0.0.0 so that it also listens to localhost as well. Also if you're trying to connect to an ip address instead of

Re: ***SPAM*** RE: Problem - "Host 'abc.def.com' is not allowed to connect to this MySQL server", Please advice..

2008-07-14 Thread Curtis Maurand
grant all on *.* to root@'%.def.com'; /* The percent sign is your wildcard character. */ flush privileges; I don't think you need to flush privileges as of 5.0. I still do just to be sure. Curtis [EMAIL PROTECTED] wrote: Hi Parikh, Yes.. It worked with IP i.e when I granted privileges

Re: Running 2 versions of MySQL on same server

2008-07-03 Thread Curtis Maurand
gnize two different sets of client libs. Unless you're telling me that having them use the 5.0 client libraries won't break working 3.23 apps... On Wed, 2 Jul 2008, Curtis Maurand wrote: Did you rebuild php against the 5.0 libraries as I suggested yesterday? If you didn't it wil

Re: Running 2 versions of MySQL on same server

2008-07-02 Thread Curtis Maurand
Did you rebuild php against the 5.0 libraries as I suggested yesterday? If you didn't it will only recognize the 3.23 version. It will not be able to talk to the 5.0 version. Curtis [EMAIL PROTECTED] wrote: It would appear that the problem isn't getting MySQL 3.23 and 5.0 to run on the s

Re: User Preferences?

2008-02-29 Thread Curtis Maurand
nd we add a row >> for each setting of that user. >> 3. Create a separate table each time we want to add a new setting, >> UserId, WhateverTheNameOfThePreferenceIs. >> >> Anyone have any experience with this, or better suggestions? >> >> Thanks, >&

mysqloptimize

2006-11-15 Thread Curtis Maurand
I think this question has been asked, but I have not yet found an answer to the problem. I'm running MySQL 5.0.22 on Gentoo Linux AMD 64. Its blazingly fast, mostly. I'm running a package called dbmail on it. http://www.dbmail.org. All mail is stored in the database. After running a dbmail-ut

Re: www.innodb.com

2006-11-10 Thread Curtis Maurand
I just checked it again and its working. Francesco Riosa wrote: > Heikki Tuuri ha scritto: >> Bill, >> >> we are moving the DNS of innodb.com from Capnova to Oracle Corp. >> >> I can now view http://www.innodb.com through my ISP, Elisa. Does >> anyone still have problems accessing http://www.inno

Re: www.innodb.com

2006-11-10 Thread Curtis Maurand
you? They have absolutely no interest in helping MySQL survive. Sounds pretty fishy to me no matter what they're saying publicly. Curtis Bill MacAllister wrote: > > > --On Friday, November 10, 2006 08:46:50 AM -0500 Curtis Maurand > <[EMAIL PROTECTED]> wrote: > >

Re: www.innodb.com

2006-11-10 Thread Curtis Maurand
http://www.oracle.com/innodb/index.html Riemer Palstra wrote: > On Thu, Nov 09, 2006 at 09:26:52AM -0800, Bill MacAllister wrote: >> What happened to the Innodb web pages? What comes up for be is a >> search page with a bunch of related links on it. I wanted to pull >> down a copy of ibbackup d

Re: temporary tables

2006-08-16 Thread Curtis Maurand
no choice but to grant INSERT,DELETE,UPDATE > on db.*, which negates the possibility of a read-only user. > > It would be nice if MySQL would have a more generic 'TEMPORARY TABLES' > permission that would allow one to create, insert, delete from and > drop temporary tables

Re: temporary tables

2006-08-15 Thread Curtis Maurand
> on db.*, which negates the possibility of a read-only user. > > It would be nice if MySQL would have a more generic 'TEMPORARY TABLES' > permission that would allow one to create, insert, delete from and > drop temporary tables without having to give up insert/update/dele

Re: temporary tables

2006-08-15 Thread Curtis Maurand
rror messages you get? > > Dan > > > On 8/15/06, Curtis Maurand <[EMAIL PROTECTED]> wrote: >> This may sound like a stupid question, but I have to ask. I've been >> running a script that goes like the following. >> >> >> >> use ecommerce;

temporary tables

2006-08-15 Thread Curtis Maurand
This may sound like a stupid question, but I have to ask. I've been running a script that goes like the following. use ecommerce; create temporary table customer_tmp as select * from customer limit 0; load data infile '/home/bluetarp/ezauth/customers.txt' into table \customer_tmp; at which po

Re: How to take dump of a query instead of table / database

2006-03-26 Thread Curtis Maurand
select into outfile The path for the output file must be writeable by the user underwhich mysql is running. -- Curtis Maurand mailto:[EMAIL PROTECTED] http://www.maurand.com On Fri, 24 Mar 2006, Pure Web Solution wrote: you can manipulate mysqldump using the where clause (check the

Re: PHP and mysql

2005-10-27 Thread Curtis Maurand
mysqladmin -u root password Curtis sheeri kritzer wrote: > Hi Alaister, > > Your root password is not actually set. If you do > > mysql -u root -p > and it fails, it means that the password is not > > if you do > > mysql -u root > > the mysql client will parse as the database you're trying

Re: Linux vs. Windows?

2005-08-12 Thread Curtis Maurand
software. Server 2K3 has been much more stable than Windows NT and its security is better, but still not great. -- Curtis Maurand mailto:[EMAIL PROTECTED] http://www.maurand.com go to http://sunsite.mff.cuni.cz/MIRRORS/ftp.mysql.com/information/ benchmark-results/result-mysql-platform

Re: missing file ( msyql.sock)

2005-05-10 Thread Curtis Maurand
the socket file is created in the spot specified in /etc/mysql/my.cnf. In my case its: socket = /var/run/mysqld/mysqld.sock as always ymmv. Curtis ganesan malairaja wrote: > > is it possible a firewall is denying mysql to create the mysql.sock file > > if not where i can get this fil

Re: Opteron HOWTO?!

2005-05-10 Thread Curtis Maurand
While you're at it, take a look at Gentoo Linux (http://www.gentoo.org). I've been having very good luck with it on everything from a Duron 1GHz to Opterons. Very responsive. It compiled a kernel on an opteron in about 5 minutes. Curtis Atle Veka wrote: >Excellent, I'll be waiting to see per

Re: Use MySQL with Microsoft Office

2005-03-09 Thread Curtis Maurand
Using ODBC, however, you can link Access tables to MySQL tables and use Access as the front end to MySQL. It works very nicely. Curtis Martijn Tonies said: >> > > Alternatively you could use OpenOffice.org > (http://www.openoffice.org/) >> > > which has built in MySQL support. >> > >> > Alterna

Re: Generic graphing tool?

2005-01-14 Thread Curtis Maurand
There are several PHP scripts that develop graphs. You'll have do some work to feed the data to them, but I found them at: http://www.hotscripts.com/PHP/Scripts_and Programs/Graphs_and_Charts/ Curtis Jim wrote: Jason Martin wrote: Does anyone know of a web-based tool that will let you graph arbi

Re: MySQL and PHP

2004-12-29 Thread Curtis Maurand
If you follow the instructions properly, you can get the ISAPI version of PHP to run and it it runs pretty well once installed. Curtis Don Stefani wrote: GH wrote: I am using IIS :( On Windows... Which do i install first? PHP or MySQL? Apache. :) If your just working on a local dev bo

Re: Need advice on windows front end application

2004-12-29 Thread Curtis Maurand
Use the ODBC connector and write it in VB. Curtis Chris Mason wrote: I have a mysql database runing on an internal linux server and I need to connect to it with an appliication running on a windows workstation. The application must start another application with command line informaiton from the da

Re: importing data

2004-12-28 Thread Curtis Maurand
OK, now I really feel stupid. It helps to change the ownership of the files to mysql:mysqlduh. Curtis Curtis Maurand wrote: I didn't, but I'll give it a shot and see what happens. Curtis Michael J. Pawlowsky wrote: Curtis Maurand wrote: If I create one of the databases and th

Re: importing data

2004-12-28 Thread Curtis Maurand
I didn't, but I'll give it a shot and see what happens. Curtis Michael J. Pawlowsky wrote: Curtis Maurand wrote: If I create one of the databases and then put the files for that database from the old installation in place of the newly created ones, the database is recognized, but i

importing data

2004-12-27 Thread Curtis Maurand
Hi, I have done an incredibly stupid thing. I have a server that suffered a bit of a failure. It wasn't a hard failure, but it was enough of one to have to rebuild the server from scratch. I was and am running mysql 4.0.22 on Gentoo with a 2.6 kernel. It rocks. However, The dumb thing th

Re: Which PHP for MySQL 4.1

2004-11-11 Thread Curtis Maurand
Jay Blanchard wrote: [snip] I would like to migrate my MySQL servers from 4.0 to 4.1. As I use PHP as well as Java with these servers I wonder what PHP 4 version would be compatible with MySQL 4.1. Has anyone used MySQL 4.1 with PHP yet? [/snip] PHP 4 is compatible with MySQL 4.1. My caution to y

Re: Mysql and PHP

2004-09-15 Thread Curtis Maurand
You have to rebuild PHP against the new MySQL libraries. Curtis Greg Donald said: > On Wed, 15 Sep 2004 08:04:08 -0700, nestor(earth) > <[EMAIL PROTECTED]> wrote: >> This more of a php mysql question. I have installed PHP ( 5.01) with >> Apache(1.31) and it runs. >> I have install Mysql (the l

Re: User ID & Password

2004-06-05 Thread Curtis Maurand
I think that I'd look at postfix and dbmail. Postfix and dbmail both allow userdata to be stored in MySQL databases. dbmail will also put the message store in a mysql database. Very nice, very fast. RH9 has hit eol. Gentoo rocks. Curtis -- Curtis Maurand mailto:[EMAIL PROTECTED]

Re: fastest filesystem for MySQL

2004-05-14 Thread Curtis Maurand
Reiser is good for lots of small files. ext3 would is better for large ones. At least that's what I get from the benchmark data that I've seen posted in various places. Curtis -- Curtis Maurand mailto:[EMAIL PROTECTED] http://www.maurand.com On Wed, 12 May 2004, Roy Butler wrote:

Re: Security

2004-03-12 Thread Curtis Maurand
ient for limiting access to data in commonly-used tables. > > > > It begs the question why you're giving your clients access to the native > mysql client itself rather than developing an application to do this, in > which you could quite easily limit such access. > > &g

Re: Scripting

2004-03-04 Thread Curtis Maurand
> need examples to really understand something so I've had real challenges > > learning bash since the references are extremely skimpy on concrete > > examples. > > > > Good luck! > > > > Rhino > > > > - Original Message - > > From: &

Re: Doing a LIKE search on a ENCODE type

2004-03-04 Thread Curtis Maurand
attern-matching search for the > decrypted password: > SELECT .. FROM account WHERE DECODE(password, 'foobar') LIKE '%1234%' ORDER BY > last_name LIMIT 0,10; > > > -- -- Curtis Maurand mailto:[EMAIL PROTECTED] http://www.maurand.com -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: PgSQL vs MySQL

2004-03-03 Thread Curtis Maurand
I know, I get it, I was trying for humor. Curtis On Wed, 3 Mar 2004, Michael Stassen wrote: > > Curtis Maurand wrote: > > :-) > > > > someflag enum('TRUE','FALSE'); > > > > Not quite boolean, but it works. > > > > Curt

Re: PgSQL vs MySQL

2004-03-03 Thread Curtis Maurand
ame site but they are significally less > >critical. After reviewing this and talking to some other people i'm switching > >over to postgresql. I'm sure there is a place with mysql but I don't think i'd > >trust it for anything critical unless you very confident

Re: Remove a RPM Installation

2004-03-02 Thread Curtis Maurand
rpm -e Curtis On Tue, 2 Mar 2004, Rafael Diaz Valdes wrote: > > Please how can I remove a RPM installation. I used MySQL-server-4.1.1-1.i386.rpm to > install MySQL, but how can I delete it. > > -- -- Curtis Maurand mailto:[EMAIL PROTECTED] http://www.maurand.com --

Re: Another loss of mysql

2004-03-01 Thread Curtis Maurand
t; -- > Regards > Leonardus Setiabudi > IT Project Coordinator > PT Bina San Prima, > www.binasanprima.com > http://gtw.binasanprima.com/~leo > > > -- -- Curtis Maurand mailto:[EMAIL PROTECTED] http://www.maurand.com -- MySQL General Mailing List Fo

Re: Dumping MySQL result set to a spreadsheet

2004-03-01 Thread Curtis Maurand
#x27;Dumping MySQL > result set to a spreadsheet', Account: 'news.gmane.org', Server: > 'news.gmane.org', Protocol: NNTP, Server Response: '441 You are not > allowed to approve postings', Port: 119, Secure(SSL): No, Server Error: > 441, Error Nu

Re: Multiple concurrent transactions per connection

2004-02-16 Thread Curtis Maurand
ultiple transactions outstanding. Is this something that might be added > to MySQL in future or am I totally overestimating the expense of using > one thread per connection? > > Regards, > > Chris > > > -- -- Curtis Maurand mailto:[EMAIL PROTECTED] http://www.m

Re: Connect to MySQL via PHP

2004-02-11 Thread Curtis Maurand
eed to have mysql installed on the red hat machine? > I can connect to the slackware linux box from a Windows machine using ODBC. > > Any ideas on what I have not done, or what I have done wrong? > > eric > > > > > -- -- Curtis Maurand mailto:[EMAIL PROTECTED] htt

Re: mySQL search engine

2004-02-09 Thread Curtis Maurand
xample I have the following row: > > | 567456 | 20040102 | Owg-08299-abzu_via.lap-2003 | > > Now i want to be able to search for (sorted by date): > Owg abzu lap > or > 082 abzu_via 2003 > or > Owg-08299-abzu_via.lap-2003 > or > Owg 08299 abzu via lap 2003 &g

Re: Best way to get value of autoincriment after inserting NULL?

2003-12-15 Thread Curtis Maurand
select last_insert_id(); or in php use the mysql_insert_id() eg: $somevalue = mysql_insert_id(); print ("The last auto incremented number was: $somevalue\n"); Cheers Curtis Paul Fine said: > Greetinsg. > > If I have a table like with a column being the PK for the table and > being an Auto In

Re: MySQL or MaxDB or PostgreSQL or Interbase/Firebird or ?

2003-12-15 Thread Curtis Maurand
Matthew Stanfield said: > Hi, Usually, i'll use "enum('0','1')" in place of a boolean type. Curtis [snip] > well. The only annoying thing I can think of, from a programming > perspective, is MySQL's lack of a Boolean type - the manual says use > TINYINT(1) which works fine but is slightly an

RE: remote connection

2003-11-07 Thread Curtis Maurand
ED] > > Member: ASDA, APS, ANA, Ephemera Society > of America, Long Island Web Developers Guild > > <><><><><><><><><><><><><><><><><><><><><><><>

Re: remote connection

2003-11-06 Thread Curtis Maurand
Its a permissions thing on the server end. You have to have set up a user account on the server. Very important are hostnames. Curtis John Almberg said: > I'm trying to set up a remote connection to a mysql database using Perl > DBI. I have done this without problem on another database. I susp

Re: MySQL vs .NET

2003-11-04 Thread Curtis Maurand
.NET v. MySQL is not really a question. The question your asking is .NET v. J2EE. MySQL doesn't care about the client as long as it communicates properly. There are ODBC drivers as well as JDBC drivers. I think I've seen a C# driver, but then its windows and ODBC/ADO or whatever they want to c

Re: IMAP server with MySQL as a storage for messages?

2003-10-23 Thread Curtis Maurand
http://www.dbmail.org Curtis On Wednesday 22 October 2003 13:29, the council of elders heard Apollo (Carmel Entertainment) mumble incoherently: > I was wondering if there is an opensource mail server (IMAP, not > POP) that would keep all the messages in a MySQL database, not in a > regular file

Re: MySQL powered MailServer

2003-09-25 Thread Curtis Maurand
> Office Phone: +250-51 11 06 > Office Fax: +250-50 15 19 > Mobile: +250-08517768 > Email: [EMAIL PROTECTED] > http://www.nefacomp.net/ > > > > > > -- -- Curtis Maurand mailto:[EMAIL PROTECTED] http://www.maurand.com -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Select via Perl

2003-07-21 Thread Curtis Maurand
#!/usr/bin/perl use DBI; my $database = "desired database"; my $dbhost = "desired database host"; my $username = "your username"; my $password = "your password"; my $data_source = "DBI:mysql:$database:$dbhost"; my $dbh = DBI->connect($data_source, $username, $password); my $sourcefile = "the name

Re: link broken

2003-07-21 Thread Curtis Maurand
Download mysqlcc instead. It works much better and is easier to use. mysqlgui is deprecated as far as i know. Curtis On Thursday 17 July 2003 18:08, Emanuele wrote: > HI! > I have problem to download > http://www.mysql.com/Downloads/mysqlgui/mysqlgui-win32-static-1.7.5-2.zip > > Is there some

Re: CF & MySQL

2003-07-15 Thread Curtis Maurand
ng is because a solution has been presented to me in CF > and > MS SQL which I think will restrict future development and wondered whether > a conversion to PHP and MySQL in the future be smooth or a waste of time. > Not necessarily a full conversion but addons to the site at least. > &

Re: MySQL vs. PostgreSQL -- speed test

2003-07-15 Thread Curtis Maurand
MySQL has posted a very interesting comparison on their website. It appears to be a reasonably fair evaluation. PostgreSQL was faster than MySQL in some areas and MySQL was faster than PostgreSQL in most areas. For speed with all of that functionality, I'd be more inclined to look at DB2 rat

Re: Anyone running Windows 2000?

2003-07-01 Thread Curtis Maurand
The only Windows webserver that I never had security problems with was running apache, not iis. Curtis > running mysql 3.23.56-nt and apache 1.23.-don't-know-exactly on windows > 2000 professional sp3 (going to upgrade to sp4 soon) - no problems by > now > > what's your question? :) > > ··· yve

Re: Problem setting/activating password

2003-06-26 Thread Curtis Maurand
er > must provide his password? > > __ > Do you Yahoo!? > SBC Yahoo! DSL - Now only $29.95 per month! > http://sbc.yahoo.com > > -- -- Curtis Maurand mailto:[EMAIL PROTECTED] http://www.maurand.com -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Anyone had a chance to try an Opteron yet?

2003-06-26 Thread Curtis Maurand
I'd be interested to see what happens when MySQL gets run on a G5. SPECint and SPECfp numbers look very good. there is an 8GB RAM limit on it, though. Curtis On Tue, 24 Jun 2003, Jeremy Zawodny wrote: > On Tue, Jun 24, 2003 at 05:37:24PM -0400, Curtis Maurand wrote: > &

Re: Anyone had a chance to try an Opteron yet?

2003-06-24 Thread Curtis Maurand
desk by mid > summer to late fall. > > If you're interested, SuSe has a good PDF on AMD64 and SuSe Enterprise Linux > 1.0: > > http://www.suse.com/en/business/products/server/sles/misc/sles8_amd64.pdf > > > Anyone have some practical experience with the software and

RE: Getting the unique auto-increment primary key after an insert

2003-06-24 Thread Curtis Maurand
s is frought with danger as someone could > come > >> along and insert a new entry between my SELECT and INSERT. > >> > >> Because 'id' is the only guaranteed unique column, I cannot think of > a > >> way to do a SELECT after an INSERT to g

Re: Can someone interpert this log....

2003-06-20 Thread Curtis Maurand
No route to host is a TCP/IP connection thing. Check your settings. Curtis TheMechE said: > > Here's the log. Retrying... > > Moving info for table LogOutputStats > Setting fields and metadata. > Using original table. > Tracking field is ResRefID > Starting transfer. > > As the Pharoh says..

Re: soft real-time database

2003-06-14 Thread Curtis Maurand
mn < $time; Curtis Chris Webster said: > Curtis Maurand wrote: >> What's the client running on? > > Not the same machine as the server. Could either be a windows or > linux box across ethernet. > > --Chris > >>>Curtis Maurand wrote: >>> >>&

Re: PHP, MySQL and Apache

2003-06-14 Thread Curtis Maurand
actually, its worse. upon re-reading you need to compile in the mysql drivers for mysql. configure --with-mysql= Curtis Subscriptions said: > The httpd.conf connects PHP to Apache. What connects PHP to MySQL? > > > I've looked through google and I can't find anything that makes since > to me.

Re: PHP, MySQL and Apache

2003-06-14 Thread Curtis Maurand
You need to recompile PHP against the 4.0.nn headers. Curtis Subscriptions said: > The httpd.conf connects PHP to Apache. What connects PHP to MySQL? > > > I've looked through google and I can't find anything that makes since > to me. Can someone point me in a direction as to where I can find t

Re: Machine requirements

2003-06-14 Thread Curtis Maurand
methinks you have other troubles. i've been running MySQL on K6II-266 for a long time and its been running fine serving up several databases with multiple users. 512MB of RAM currently but it had only 128 until recently. Its running Linux (RedHat 7.2). I recently switched to 4.03, but it had b

Re: soft real-time database

2003-06-13 Thread Curtis Maurand
What's the client running on? Curtis On Thu, 12 Jun 2003, Chris Webster wrote: > Curtis Maurand wrote: > > I'd write a perl script to pool the device and send the data to the > > database. > > Sorry for not being clearer. I can get the data into the databas

Re: soft real-time database

2003-06-12 Thread Curtis Maurand
I > assume there is no notification process available from the server > > TIA for any pointers. > > -- > --Chris > > I don't approve of political jokes. > I've seen too many of them get elected. > > > -- > MySQL General Mailing List > F

Re: Which version do I install?

2003-06-12 Thread Curtis Maurand
(ie > IA64)? > > Any other tips for someone new to the Xeon chip family with linux would be nice too. > > > -- -- Curtis Maurand mailto:[EMAIL PROTECTED] http://www.maurand.com -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: mySQL GUIs

2003-06-12 Thread Curtis Maurand
(http://www.mysqltools.com/) and > >> mySQL explorer that works almost as enterprise manager for MS SQL > >> server. it even creates database diagrams with relations as in > >> enterprise manager! only backdraw is that this program is not > >> free, but >

Re: Thousands of users? Newbie question

2003-06-12 Thread Curtis Maurand
ld I just use .htaccess to grant usernames and passwords so no > unauthorized user can access the submission form in the first place? > > Which is less resource hungry? > > > -- -- Curtis Maurand mailto:[EMAIL PROTECTED] http://www.maurand.com -- MySQL General Mail

Re: Can't insert data from Apache/PHP

2003-06-11 Thread Curtis Maurand
On Tuesday 10 June 2003 22:49, CM Miller wrote: > > globals >back to ON. > > Sorry, but I am a bit behind on MySQL digest, but > isn't turning Register Globals 'on' for php a security > risk? Yes. He needs to take a look at the documentation on the PHP website. I also sent instructions on how t

Re: Which database?

2003-06-10 Thread Curtis Maurand
e out just what your requirements are and then see which database suites your needs. If you need to work with extremely large databases (multi GB) I would go with MySQL. It scales to large files extremely well. Curtis Maurand On Tue, 10 Jun 2003, Becoming Digital wrote: > You're on

Re: Loading database information from a text file.

2003-06-09 Thread Curtis Maurand
from a command prompt mysqldump -opt database >dumpfile Curtis On Sunday 08 June 2003 02:59, JeRRy wrote: > Okay thanks. > > One last thing. > > From the mysql prompt how can I generate a database > backup? (So I can see the database setup in notepad > so I can backup and transfer easily online

Re: MySQL versus Color & Images

2003-06-07 Thread Curtis Maurand
and background images if I convert this to a MySQL table. > > Thanks! > > P.S. I have perused http://www.mysql.com/doc/en/index.html , and I found > the answers to many of my other questions there. > > -- -- Curtis Maurand mailto:[EMAIL PROTECTED] http://www.maura

Re: Mysql language

2003-06-07 Thread Curtis Maurand
s. I'm sure the x86 assembler is replaced on other platforms. Curtis > > > > > > -- -- Curtis Maurand mailto:[EMAIL PROTECTED] http://www.maurand.com -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: msSQL-MySQL

2003-06-06 Thread Curtis Maurand
Oooh, just dawned on my. On the windows side there is a gui front end called mysqlfront which uses ODBC to talk to multiple databases. It will pull the data from a mssql server and move it to a mysql server. I haven't used it against a mssql server, but I did use it against an access database a

Re: AW: InterBase vs. Mysql

2003-02-18 Thread Curtis Maurand
You can require GPL components without having to distribute them. That way you don't have to support them, either. Curtis Ben Clewett said: > Okay... > > BTW, I have cleared purchacing licences with my own people, and we do > not have a problem. Neither do I not like MySQL, I do. > > The lice

Re: encrypted password

2003-02-16 Thread Curtis Maurand
However, I currently have a need to extract and decode that data. I need a two way function. Curtis On Sun, 16 Feb 2003, Michael T. Babcock wrote: > Curtis Maurand wrote: > > >need to encrypt data and then retrieve it later (credit card data). I could > >probably pass it

Re: encrypted password

2003-02-16 Thread Curtis Maurand
Point well taken. I will do remotes that way. Curtis On Sun, 16 Feb 2003, Michael T. Babcock wrote: > Curtis Maurand wrote: > > >need to encrypt data and then retrieve it later (credit card data). I could > >probably pass it through and md5 or des function via ope

Re: Row numbers

2003-02-16 Thread Curtis Maurand
just as: $myquery = "select * from sometable"; $myresult = mysql_query($myquery, $mysql_link); $rows = $mysql_fetch_array($myresult) $count = 1; while ($rows) { print(" $count$rows[0]$rows[1]... $count++; } I would do the same thing in perl, C++, or Java. Curtis On Sun, 16 Feb 2003, Micha

Re: encrypted password

2003-02-14 Thread Curtis Maurand
). I could probably pass it through and md5 or des function via openssl I suppose and then store it. Perl and PHP both have functions to handle that. Curtis Tonu Samuel said: > On Tue, 2003-02-11 at 15:39, Curtis Maurand wrote: >> >> The manual suggests that the password fu

Re: I can't make user from the MySQL Control center

2003-02-13 Thread Curtis Maurand
The control center doesn't have a command to flush the tables or reload the user tables. So the new user won't have access until you do: mysqladmin -u -p -h reload Curtis Stefan Hinz said: > Karáth, > >> I just have installed the MySQL on a Suse linux. >> I would like to administrate it from

Re: MySQL IMAP Server

2003-02-11 Thread Curtis Maurand
Courier IMAP can. www.courier-mta.com Curtis On Wed, 5 Feb 2003, Paul DuBois wrote: > At 17:26 + 2/4/03, Ben Clewett wrote: > >MySQL, > > > >My first post, please go easy if this is the wrong pleace! > > > >I'm trying to find an IMAP server which used MySQL so that my > >Mozilla Email cli

Re: encrypted password

2003-02-11 Thread Curtis Maurand
The manual suggests that the password function is really for intenal mysql functions. Ideally you should use the encode or md5_encode functions. update user set password=encode('password', 'salt') where user = 'your_user'; Curtis On Wed, 5 Feb 2003, Natale Babbo wrote: > try to use the pas

Re: stored procedures and triggers

2002-09-05 Thread Curtis Maurand
using a chatty protocol like NetBIOS over IP. Even though you haven't installed NetBIOS on your Win2K/XP/9n/ME box, its still there (NetBIOS over TCP/IP) and is the primary method of connection(less) between Windows machines. Even the MySQL ODBC connector uses pure TCP/IP on port 3306 non sec

Re: email marketing software

2002-08-15 Thread Curtis Maurand
I apologized to Mark in private for my blast that was also private. Sorry to take up the bandwidth. Curtis - Original Message - From: "Mark Stringham" <[EMAIL PROTECTED]> To: "Curtis Maurand" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thur

Re: email marketing software

2002-08-15 Thread Curtis Maurand
That is CRM software. Its quite similar to saleslogix, though I did not see anything about storing attachments for a customer. It otherwise looks very, very cool. Curtis - Original Message - From: "Wee Keat" <[EMAIL PROTECTED]> To: "Mark Stringham" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED

Re: Problem on win2k

2002-08-08 Thread Curtis Maurand
Yes, don't lock the table. MySQL will handle the lock for you on the insert. this isn't access. its a multi-user system. with access you have to lock the table. Curtis On Tue, 6 Aug 2002, Pradeep Dsouza wrote: > Dear list > > I have written a large application which i call Edupro whi

Re: Root pass

2002-07-03 Thread Curtis Maurand
[admin admin]$ mysql mysql or once you have the mysql prompt type: use mysql then issue the command Curtis Page Works Web Solutions said: > Hi, > > any ideas on this one > > [admin admin]$ mysql > Welcome to the MySQL monitor. Commands end with ; or \g. > Your MySQL connection id is 7 to ser

Re: Perl DBI

2002-05-23 Thread Curtis Maurand
Yes. Denny said: > Hi, > > How can i use Perl DBI to create tables in mysql? > > Denny > > __ > Do You Yahoo!? > Everything you'll ever need on one web page > from News and Sport to Email and Music Charts > http://uk.my.yahoo.com > >

Re: AUTO_INCREMENT= ?

2002-05-13 Thread Curtis Maurand
How about: UserID SMALLINT UNSIGNED AUTO_INCREMENT NULL PRIMARY KEY DEFAULT 1000 Curtis Amer Neely said: >> Amer, >> Monday, May 13, 2002, 2:03:28 AM, you wrote: >> >> AN> Win/98 >> AN> MySQL 3.23.46 >> >> AN> I'm trying to use AUTO_INCREMENT=1000 to specify my staring value >> in an AN> ID

Re: PigeonRank

2002-04-02 Thread Curtis Maurand
y'all are kidding, right? On Mon, 1 Apr 2002, Dan Zarrella wrote: > i've read the bit on google about thier pigeon rank thing, sounds like a > cross between reality and alittle aprils' fools to me, either way id > apreciate a better explanation of this technology and how it may be > implem

  1   2   >