mvug - 2010-10-12

Hi,

I want to use your python script mssql2mysql. But when I use it I notice 2 things:

=======================================================================

1. The script dumps the DB structure, this is correct except for it dumps twice the structure.

2. I get the following error when the script wants to dump the DB content:

Traceback (most recent call last):
  File "./mssql2mysql", line 260, in ?
    main(sys.argv)
  File "./mssql2mysql", line 50, in main
    dbDump(dbHost, dbName, dbUser, dbPass, dbTables)
  File "./mssql2mysql", line 90, in dbDump
    getTableData(cur, table_name)
  File "./mssql2mysql", line 233, in getTableData
    raise KeyError, "%s of type %s not contemplated"%(a,type(a))
KeyError: "False of type <type 'bool'> not contemplated"

Can you fix this?

Thanx!