phpodpworld-users Mailing List for phpODPWorld (Page 3)
Status: Beta
Brought to you by:
hansfn
You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
(14) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
|
Feb
|
Mar
(5) |
Apr
(2) |
May
|
Jun
(1) |
Jul
(14) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(4) |
Dec
|
2009 |
Jan
(1) |
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(5) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Jason Y. <go...@gm...> - 2006-04-03 10:02:19
|
I want to tell you another problem (I don't know it's my problem or the program's). In the db.sql file --------------------------------------------- CREATE TABLE "structure" ( catid INT NOT NULL DEFAULT '0' PRIMARY KEY, topic VARCHAR(1024) NOT NULL, /// Notice this line title VARCHAR(1024), description VARCHAR(8192), lastupdate TIMESTAMP, count INT DEFAULT '-1', totalcount INT DEFAULT '-1' ); -------------------------------------------- but in mysql the topic Field will be changed to text type automaticly. so when go to : CREATE INDEX structure_topic_index ON structure (topic); it will be wrong . because text can't be maked to index. Can you help???? |