On 12/28/08, Yuanhua <[email protected]> wrote: > I use sqlite to create 6 tables and the second creation always fail. > for example, table names are tb1,tb2,tb3,tb4,tb5,tb6. > If I create table in the sequence tb1,tb2,tb3,tb4,tb5,tb6, creating > tb2 is in failure and other table was created. > Then i changed the creation sequence to tb2,tb1,tb3,tb4,tb5,tb6, > creating tb1 is in failure and other table was created.. > > In one word, It is always fail to create the second table. Both return > SQLITE_OK. >
The trick is to not create the second table ever. Seriously, how can anyone help without example of your code? Please provide code, and even other info such as what kind of machine, operating system, etc. -- Puneet Kishor _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

