Title: 4.1.3 and prepared statements

Hi all-
Is the MySQL C API for prepared statements working at all in 4.1.3?  I'm trying to do a relatively simple select test, and I consistently get an error on execute = "MySQL client run out of memory".  But it's a singleton select of one column and the first time I execute?

If this doesn't work, I'm very afraid...

I've attached my simple code.

Here's the table:

create table cfg_2
(config_key varchar(30) not null,
section_key varchar(30) not null,
property_key varchar(255) not null,
property_value varchar(255),
primary key(config_key, section_key, property_key)
) engine=myisam;

insert into cfg_2 values('svp001','stats','number.of.threads','2');

Some other notes:
Solaris 9 Sparc, gcc 3.3.2, using 32 bit, max binary version of mysql for Solaris 9, linked with reentrant client lib (libmyclient_r), using a my-medium.cnf config.


Should I just bag the whole prepared statement thing until it gets stable?  And when would that be?

Thx,
Rick
<<...>>

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

Reply via email to