• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Importing .mdb database in Jbuilder with CVS

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello everyone, I've run into a annoying problem. I have a project in JBuilder 2005 which requires the use of a .mdb database. When adding the file to the project there's no option to select .mdb as the format. I tried adding it as a <none> file type, but after having committed it to the CVS and downloading it again, the file is corrupted to a 9KB file (whereas it started as a 150+ KB file). A workaround is to save it as a .zip file, after which I can unpack it manually, but this is not an option once the project is complete. Apparently something goes wrong on the CVS. Do you know something I can do that keeps the functionality of the file without saving it as an alternative file type?
 
Ranch Hand
Posts: 1847
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You almost certainly forgot to insert it as a binary file, causing cvs to store it as a textfile which in turn caused corruption.
 
reply
    Bookmark Topic Watch Topic
  • New Topic