Re: [Maypole] SQLite problem ?

From: Gabor Szabo (gabor at perl.org.il)
Date: Mon Sep 06 2004 - 11:46:56 BST


On Mon, 6 Sep 2004, Simon Cozens wrote:

> Gabor Szabo:
> > SQL ERROR: 'BIGINT' is not a recognized data type!
>
> Sounds like Class::DBI::Loader is unhappy with your schema. Do you have the
> latest Class::DBI::SQLite?

I am at 0.04 that seems to be the latest.

here is a small example of dumped data that already generates one of
the error messages:

BEGIN TRANSACTION;
create table authors (
  cpanid varchar(10),
  name varchar(200),
  email varchar(250),
  average_kwalitee float default 0,
  distcount int unsigned default 0
);
INSERT INTO authors VALUES(NULL,NULL,NULL,0,0);
INSERT INTO authors VALUES('VKON','Vadim','ru',7.66,3);
COMMIT;

Gabor

_______________________________________________
maypole mailing list
maypole at lists.netthink.co.uk
http://lists.netthink.co.uk/listinfo/maypole



This archive was generated by hypermail 2.1.3 : Thu Feb 24 2005 - 22:25:56 GMT