> > Jeff > > Same env as before. > > t\07bind.........1..10 > ok 1 > Test 2: connecting to the database > ok 2 > Test 3: create test table > Using fields: COL_A smallint NOT NULL PRIMARY KEY , COL_B > varchar(255), COL_C long varchar, COL_D da > tetime > DBD::ODBC::db do failed: [MySQL][ODBC 3.51 > Driver][mysqld-3.23.51-max]Table 'perl_dbd_test' already > exists (SQL-HY000)(DBD: Execute immediate failed err=-1) at > t/ODBCTEST.pm line 96. > not ok 3 > > I assume this error is simply due to previous test(s) not deleting > the table at the end of the test, and is therefore harmless. Right? >
Not really, but possible harmless. In tab_create, it tries to drop the table first. Since that can be called with and without the table there, it will be very silent about errors. This, though, is a problem in the script where DROP table must be failing and I can't tell you why without a trace file. Jeff
