Hi,
Is there a special reason there are no i686 RPM's anymore like there
were until 4.6.0_rc2?
I think it's a bit weird there are RPM's for the hobby OS 'FedoraCore'
but not for the much used server OS 'RedHat Enterprise 3 (and 4)'?
The FedoraCore (which Core?) needs libstdc++.so.6 whereas RHEL 3 only
has libstdc++.so.5 ...
There also seems to be no SRPM's.
Cheers,
--
Henk van Lingen, Systems & Network Administrator (o- -+
Dept. of Computer Science, Utrecht University. /\ |
phone: +31-30-2535278 v_/_
http://henk.vanlingen.net/http://www.tuxtown.net/netiquette/
Hi,
I have a simple SQL script which starts like this:
CREATE TABLE people (
pid integer NOT NULL PRIMARY KEY,
name varchar(40) NOT NULL DEFAULT '',
number varchar(15) NOT NULL UNIQUE DEFAULT '0',
email varchar(100) NOT NULL,
spid integer NOT NULL DEFAULT '0'
);
Afterwards, it inserts 251 People with ascending pids from 0 to 250. I
apply it to the MonetDB database either with MapiClient, or JDBCClient.
However, if I login with the JDBCClient and do a "select name,number
from people;" i only get 250 rows, not 251! But no error is reported.
Instead, a "select count(*) from people;" returns 251.
if i try the same with the MapiClient, everything works as expected.
the problem seems to be with other tables, too, but there the count of
returned rows another one, so I expect it has something to with a packet
limit, or something? is it a configuration thing or a bug? with 2.8.2
everything worked.
if executed from a java program, the statement returns the exception
"protocol violation: unexpected line in data block:"
How do you configure MonetDB to listen to connections
from anywhere besides the localhost?
I can make a local connection but as soon as I try to
connect from another computer I get an error.
I have even tested with netcat (nc) to make sure there
wasn't a firewall blocking the connection.
Colin Foss