Re: ssh basics

2015-03-08 Thread Ruben Safir
On Sun, Mar 08, 2015 at 08:03:05PM +, Thufir wrote: > On Sun, 08 Mar 2015 08:43:41 -0400, Ruben Safir wrote: > > > > gmail sucks > > > You prefer yahoo mail? Just curious. > Your not curious. > > -Thufir > > > -- > MySQL G

Re: ssh basics

2015-03-08 Thread Ruben Safir
On Sun, Mar 08, 2015 at 12:20:10PM +, Thufir wrote: > On Sun, 08 Mar 2015 10:47:17 +0100, Reindl Harald wrote: > > > > oh my god... https://www.google.at/search?q=ssh+tunnel > Yah know ssh and mysql wasn't invented 20 minutes ago. They are basic tools for GNU users for almost

Re: forum vs email

2014-12-17 Thread Ruben Safir
they are no indexing usenet any longer which is a real problem because of volumns of archival information on them from everything from SQL theory to networking commands. It is depressing almost as depressing as the university library with stacks of books on the floors pushed away to make ro

Re: MySQL dying?

2014-11-24 Thread Ruben Safir
On 11/24/2014 12:19 PM, Johan De Meersman wrote: > > > - Original Message - >> From: "Ruben Safir" >> Subject: Re: MySQL dying? > >> abandoned. What would you have done in those days when we handled so >> much mail in this list that the

Re: MySQL dying?

2014-11-24 Thread Ruben Safir
On 11/24/2014 12:19 PM, Johan De Meersman wrote: > > > - Original Message - >> From: "Ruben Safir" >> Subject: Re: MySQL dying? > >> abandoned. What would you have done in those days when we handled so >> much mail in this list that the

Re: MySQL dying?

2014-11-24 Thread Ruben Safir
On 11/24/2014 10:00 AM, Johan De Meersman wrote: > > - Original Message - >> From: "Ruben Safir" >> Subject: Re: MySQL dying? >> >> Well, this mailing list is dead. This is a mailing list that used to >> handle 70+ questions a day, or more.

Re: MySQL dying?

2014-11-24 Thread Ruben Safir
> cheers, > > On Sun, Nov 23, 2014 at 7:08 AM, Ruben Safir wrote: > > > On Wed, Dec 05, 2012 at 12:41:09PM +0100, Johan De Meersman wrote: > > > - Original Message - > > > > From: "Anthony Pace" > > > > > > > > I

Re: MySQL dying?

2014-11-22 Thread Ruben Safir
On Wed, Dec 05, 2012 at 12:41:09PM +0100, Johan De Meersman wrote: > - Original Message - > > From: "Anthony Pace" > > > > I have heard that due to Oracle taking over, the OS community is > > shifting to other type of DB's . > > I think the question has long been answered. However, out o

C++ API

2011-03-06 Thread Ruben Safir
OK - I see there is more than one C++ API for MYSQL. Which one would someone recommend and why? Ruben -- http://www.mrbrklyn.com - Interesting Stuff http://www.nylxs.com - Leadership Development in Free Software -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To u

C++ Connect Installation

2011-03-05 Thread Ruben Safir
Hello I'm trying to install the C++ connector as outlined on this URL: http://dev.mysql.com/tech-resources/articles/mysql-connector-cpp.html#install and it fails misserably. I have installed 5.5.0-m2 Source distribution It fails right away on the make after doing the cmake [ 1%] Building CX

Re: Comparing Tables

2004-10-07 Thread Ruben Safir Secretary NYLXS
see IS NOT On Thu, Oct 07, 2004 at 07:22:23PM -0700, Jason Williard wrote: > I know that it is possible to do this, though I don't know how. > > I have 2 tables containing information about trouble tickets. One of the tables > (table2) contains information about every ticket ever received, in

Re: MySQL Databases in Subdirectories?

2004-10-07 Thread Ruben Safir Secretary NYLXS
How does that help? The database itself should be allowed to organize everything. Ruben On Thu, Oct 07, 2004 at 04:57:39PM -0700, Justin Smith wrote: > Is it possible to create a database in a lower-level subdirectory of > MySQL's data directory? We have almost 100,000 sites, and we would li

Re: RETURNED MAIL: DATA FORMAT ERROR

2004-09-14 Thread Ruben Safir Secretary NYLXS
What is this? On Tue, Sep 14, 2004 at 10:28:53AM +0200, [EMAIL PROTECTED] wrote: > Your message was undeliverable due to the following reason(s): > > Your message could not be delivered because the destination computer was > not reachable within the allowed queue period. The amount of time > a me

Checking for live connections

2004-09-14 Thread Ruben Safir Secretary NYLXS
Is there a way of checking for live connections prior to using mysql_connect in the C API (asside from mysql_ping) Ruben -- __ Brooklyn Linux Solutions So many immigrant groups have swept through our town that Brooklyn, like Atlantis, reaches mythological proportions

Segfault in mysql_real_escape_string

2004-09-06 Thread Ruben Safir Secretary NYLXS
Hello I'm getting a segmentation fault in the mysql function mysql_real_escape_string and I don't have a clue why. What am I missing? #include /* Headers for MySQL usage */ #include #include #include // #define INSERT_STATEMENT "INSERT INTO patient (idno,first,last,medrec) VALUES(NULL,?,?,

strmov

2004-09-05 Thread Ruben Safir Secretary NYLXS
What is the definition of strmov in C? It seems to be a MYSQL library sprecific function in m_string.h and is used in some of the documentations examples. ruben -- __ Brooklyn Linux Solutions So many immigrant groups have swept through our town that Brooklyn, like Atl

Re: Help needed with MySQL C API-based client (segfault)

2004-09-04 Thread Ruben Safir Secretary NYLXS
On Fri, Sep 19, 2003 at 09:18:22AM +0500, Vikram Vaswani wrote: > Hello, > > I need to write a simple C client for a project. I am using the MySQL C > API. Attached is the code. It occassionally segfaults with no visible > pattern. Could someone help me figure out why? Or any other comments on the

Re: MySQL & mail servers

2003-04-01 Thread Ruben Safir
Well To do selects on your mail archive? BTW - I've heard that Linux Magazine has developed into a handsom rag. Congradulations. I would never had thought it after seeing the first issue. Ruben On Tue, Apr 01, 2003 at 01:15:00PM -0800, Jeremy Zawodny wrote: > On Tue, Apr 01, 2003 at 01:04:59

Enum Columns

2003-04-01 Thread Ruben Safir
I has a column defined as enum not null (percent,absolute) default value percent (in psuedocode) and I was able to update a record which filled it either with a NULL or an empty string. How does this happen? the value should be either percent or absolute, or the update should just fail.