libmysqlclient.so.12 client libraries for OS X

2004-10-31 Thread Rob Kudyba
Where is there an OS X equivalent of: "MySQL-client-VERSION.i386.rpm The standard MySQL client programs. You probably always want to install this package." which is referred to here: http://dev.mysql.com/doc/mysql/en/Linux-RPM.html Specifically, I am looking for libmysqlclient.so.12 since you can

Re: libmysqlclient.so.12 client libraries for OS X

2004-11-01 Thread Rob Kudyba
clude a shared library, however, as it's built with the --disable-shared flag <http://dev.mysql.com/doc/mysql/en/Mac_OS_X_10.x.html>. Michael Rob Kudyba wrote: Where is there an OS X equivalent of: "MySQL-client-VERSION.i386.rpm The standard MySQL client programs. You probab

Re: libmysqlclient.so.12 client libraries for OS X

2004-11-01 Thread Rob Kudyba
te your app in source with instructions to build against the customer's copy of the library. Michael Rob Kudyba wrote: OK so how do you reconfigure? Here's what happens when I try this: ./configure CC=gcc CFLAGS="-O3 -fno-omit-frame-pointer" CXX=gcc \ > CXXFL

constructing a select and excluding duplicates

2004-11-04 Thread Rob Kudyba
I am trying to construct a SELECT statement on distinct email addresses. Our DB has emails entered by various sources and there are duplicate addresses based on the source. Using sample table names and sources here is what I have: SELECT DISTINCT email_address FROM 'email_table' WHERE SOURCE

Re: constructing a select and excluding duplicates

2004-11-04 Thread Rob Kudyba
t you eventually want to achieve with this list of email addresses? Shawn Green Database Administrator Unimin Corporation - Spruce Pine Rob Kudyba <[EMAIL PROTECTED]> wrote on 11/04/2004 12:26:42 PM: > I am trying to construct a SELECT statement on distinct email addresses. > Our DB has

Re: constructing a select and excluding duplicates

2004-11-04 Thread Rob Kudyba
Rhino wrote: - Original Message - From: "Rob Kudyba" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, November 04, 2004 12:26 PM Subject: constructing a select and excluding duplicates I am trying to construct a SELECT statement on distinct email

Re: constructing a select and excluding duplicates

2004-11-04 Thread Rob Kudyba
n its definition. Shawn Green Database Administrator Unimin Corporation - Spruce Pine Rob Kudyba <[EMAIL PROTECTED]> wrote on 11/04/2004 12:47:44 PM: > The email addresses from source1 that are also not part of all of the > following sources (source2, source4, and source6). > > What