-
OK. After some eximnation I think I got it.
If column data contain two hypens it will return NULL.
Hope that the developers would pay attention for this bug.
I don't know on other cases that it return NULL instead of some data.
2009-12-27 12:14:12 UTC by oc666
-
Hey
Sorry to popup this bug, but it's still exists.
It happends with the next unicode (utf-8) data:
צמיחת התנועה הלאומית הערבית-הפלסטינאית 1929-1918
It output NULL instead the data. Maybe it happends because of the hyphen, but I'm not sure about that.
2009-12-27 12:00:37 UTC by oc666
-
edit the autogen.sh file and change the all occurances of "libtool" to "glibtool", and "libtoolize" to "glibtoolize".
2009-12-11 14:38:30 UTC by https://www.google.com/accounts
-
The mdb-export command requests huge amounts of memory when used to export data
from a database table that has many string values.
Debugging this problem turned up the fact that throughout the mdbtools source
there are several places where MDB_BIND_SIZE bytes of memory are allocated,
even is the actual value to be stored is very small. This results in a huge
waste of memory, so that...
2009-12-11 13:35:29 UTC by nobody
-
I think, I have solved this problem by replacing line 238 in libmdb/data.c.
Original Line: *col->len_ptr = ret;
Replaced Line: col->len_ptr = &ret;
Now it works fine for me.
DrG.
2009-11-28 09:41:51 UTC by rgoellnitz
-
Same bases of MS have tables and columns named as "dirty" - non-latin characters, large 15 characters, have spaces and other incorrect symbols.
Will be ideally if mdbtools will have an options for convert incorrect names of tables and colums on the fly.
Example: Table name "Name of table bad #Ы1" --> "nameoftablenum1" (name large
2009-11-01 18:28:25 UTC by nobody
-
Hi, I am currently trying to build mdbtools in snow leopard.
I began by getting sources via cvs, then running ./autogen.sh, which complained that there was no libtool.
So I installed libtool and changed paths in autogen.sh, since on my mac there is already a libtool and the new one was installed in /usr/local/bin. Now the configure script is generated, but stops with the following messages...
2009-10-25 14:04:45 UTC by zcrp
-
Pretty sure this is fixed. Rev. 1.24 affected this line, and macports changes this from the 0.6pre release. The current (as of today) CVS build compiles fine with OS X Snow Leopard.
2009-10-18 06:35:37 UTC by dionhouston
-
This patch is based on HAVE_ICONV effective fix by minemaz
https://sourceforge.net/tracker/?func=detail&aid=2854571&group_id=2294&atid=102294
This is tested on a JET3 file.
2009-09-08 20:01:39 UTC by minemaz
-
"#include " removed from mdbtools.h,
but it makes that HAVE_ICONV is not effective.
Therefore, it is necessary to include config.h before
including mdbtools.h. For instance, in src/libmdb/file.c
and src/libmdb/iconv.c.
2009-09-08 19:22:14 UTC by minemaz