invalid string bugfix for ODBC/Connector 5.1.7

2010-10-29 Thread wim . delvaux
HI all,

the c/c++ ODBC/Connector 5.1.7  has a critical bug
that you cannot edit the ODBC setting anymore once entered.

A fix is known and committed.

why does it take so long for the 5.1.8 to be released ? Surely this
bug merits expedient treatment.

Quid ?

W

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/mysql?unsub=arch...@jab.org



when will version 5.1.6 of the odbc connector become available ?

2010-06-07 Thread wim . delvaux
I need some bugs fixed

W

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/mysql?unsub=arch...@jab.org



odbc connector

2010-02-10 Thread wim . delvaux
The odbc connector of mysql reports it does not support LAST_INSERT_ID nor 
does it seem to report back that it supports unicode.

For the last_insert_id I have a workaround by issuing a Select 
last_insert_id() after an insert, however for working with unicode I have not 
found a solution.

this is not a client related problem since openoffice/base is also not able to 
access unicode chars.

Please (!) how can this be fixed ?

Thx

W

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/mysql?unsub=arch...@jab.org



odbc connector 5.1 for windows unicode support

2010-02-04 Thread wim . delvaux
Hi,

I have a database with UTF8 characters.  These are shown correctly by the 
query browser.

I installed the odbc/connector 5.1 and tried to access the same table using 
OpenOffice base and a Qt application I wrote myself.

In both clients the UTF8 character so not show up properly as if the database 
said the returned string is NOT utf8 (i.e the binary data looks OK but the 
apps do not consider the binary as utf8).

Does the connector support utf8 and if so why does say openoffice do not 
consider the data to be utf8

T

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/mysql?unsub=arch...@jab.org



Re: REGEXP help Finding phone numbers (nnn) nnn-nnnn format

2008-12-03 Thread wim . delvaux
On Wednesday 03 December 2008 08:39:54 Paul Nowosielski wrote:
 Hi,

 Please, can anyone lend a hand in helping pullout
 phone numbers from the DB that only match
 the format (nnn) nnn- ?
([0-9]{3}) [0-9]{3}-[0-9]{4}

I think

HTH
W
 SELECT phone_work FROM leads WHERE phone_work REGEXP 'the_expression?'

 I've been trying to lick this for hours now with
 no avail.

 Thank you,

 Paul



-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: Floor Decimal Math

2008-05-15 Thread wim . delvaux
On Thursday 15 May 2008 13:24:10 Adam de Zoete wrote:
 Hi,

 I'm running mysql 4.1.20 (Mac OS 10.4.11) and wondering why this ain't
 returning the right answer? Maybe i'm missing something or am i doing
 something wrong?

Perhaps it is performing FLOAT and not DECIMAL math.  11.11 is represented in 
binary differently that 0.11 (bit-rounding errors).

W

 mysql select (11.11-FLOOR(11.11))=0.11;
 ++

 | (11.11-FLOOR(11.11))=0.11 |

 ++

 | 0  |

 ++

 Any help would be appreciated,

 Many thanks,

 Adam



-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: CONCAT doesn't work with NULL?

2008-05-14 Thread wim . delvaux
On Wednesday 14 May 2008 18:02:42 Olexandr Melnyk wrote:
 It doesn't return no rows, it returns row(s) with a single column set to a
 NULL value. In case one of the arguments is NULL, CONCAT() will return
 NULL.

 To replace the value of one of the fields with an empty string when it's
 NULL, you can use something like: CONCAT(COAESCE(a, ''), ' ', COAESCE(b,
 ''))

or CONCAT_WS IIRC

W

 On 5/14/08, Afan Pasalic [EMAIL PROTECTED] wrote:
  hi,
 
  I have query
  SELECT CONCAT(r.first_name, ' ', r.last_name, '\n', r.organization, '\n',
  r.title, '\n', a.address1, '\n', a.city, ', ', a.state, ' ', a.zip, '\n',
  r.email)
  FROM registrants r, addresses a
  WHERE r.reg_id=121
 
  if any of columns has value (e.g. title) NULL, I'll get as result 0
  records.
  If query doesn't have concat() - it works fine.
 
  Why is that?
 
  -afan
 
  --
  MySQL General Mailing List
  For list archives: http://lists.mysql.com/mysql
  To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: CONCAT doesn't work with NULL?

2008-05-14 Thread wim . delvaux
On Wednesday 14 May 2008 18:52:20 Afan Pasalic wrote:
 actually, this will not work for me (or I got it wrong :D) because I
 need to have street, state and zip in one line and with separator
 defined on the beginning it will put everything in separate lines.

Use a 'space' as sparator instead of '\n'


 :D

 ewen fortune wrote:
  Hi Afan,
  You can use concat_ws
 
  http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_con
 cat-ws ---
  CONCAT() returns NULL if any argument is NULL.
  CONCAT_WS() does not skip empty strings. However, it does skip any
  NULL values after the separator argument
  ---
 
  Ewen
 
  On Wed, May 14, 2008 at 5:53 PM, Afan Pasalic [EMAIL PROTECTED] wrote:
  hi,
 
   I have query
   SELECT CONCAT(r.first_name, ' ', r.last_name, '\n', r.organization,
  '\n', r.title, '\n', a.address1, '\n', a.city, ', ', a.state, ' ',
  a.zip, '\n', r.email)
   FROM registrants r, addresses a
   WHERE r.reg_id=121
 
   if any of columns has value (e.g. title) NULL, I'll get as result 0
  records.
   If query doesn't have concat() - it works fine.
 
   Why is that?
 
   -afan
 
   --
   MySQL General Mailing List
   For list archives: http://lists.mysql.com/mysql
   To unsubscribe:
  http://lists.mysql.com/[EMAIL PROTECTED]



-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: Help me format this statement

2008-03-11 Thread wim . delvaux
On Wednesday 12 March 2008 00:14:46 Brian Dunning wrote:
 I am an idiot. table_a and table_b have exactly the same structure.
 How do I say this in SQL:

 INSERT (all records from table_a) into table_b where table_a.customer
 = '12'

 Just trying to eventually duplicate the whole table, one customer's
 set of records at a time. Thanks.

IIRC ... something like

insert into Table_b select table_a where table_a.customer = '12'

Check the EXCELLENT docs at ...

http://dev.mysql.com/doc/refman/5.1/en/sql-syntax.html

... and refer to the SQL statement syntaxes ... datamanipulation

HTH
W

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]