For what sort of database is that zip file? Is that Derby or MySQL? If it is Derby you need to tell me how to import it and if it is MySQL then you didn't export it correctly...
The way to export from MySQL was something like this if I remember it:
- Open Command Prompt
- Got to top level of the hard disk C:\
- Type following command
mysqldump -u YOUR_USERNAME DATABASE_NAME>FILE_NAME.sql -p
Replace sections in capital with your data and hit ENTER after "-p", where you will be asked for the password to your database. After that file with your given name and "sql" extension will be created on current directory level. So if you moved to the top as I told you it will be directly under root "C:\"