Jump to content

oceanfront

Members
  • Posts

    7
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by oceanfront

  1. As the original poster from 2011, we are still using Plastic, but no longer using firebird.
  2. You did say sqlite is embedded for evaluation. When I am evaluating a tool, I like to get as close to a production environment as possible, so the behavior doesn't change when we "go live". And yes, an sqlite to firebird doc would be helpful. PS The sqlite to mysql link you posted returns 404.
  3. I struggled a bit with getting plastic working with Firebird under Linux, so I thought I'd post the Caramilk secret in hopes it might save someone else some time. First off, it is unclear whether the embedded db is included (it is not, Plastic uses SQLLite now). So, the first step is to install Firebird. The Plastic administrator's guide says: To use Firebird, create a file called db.conf, with this content: <DbConfig> <ProviderName>firebird</ProviderName> <DatabasePath>c:\myRepositoryStore</DatabasePath> </DbConfig> which, of course, does not work. The correct config is: <DbConfig> <ProviderName>firebird</ProviderName> <DatabasePath>/path/to/myRepositoryStore</DatabasePath> <ConnectionString> ServerType=0;Server=localhost;Port=3050;User=ozzy;Password=harriet;Database={0};Pooling=true;Connection Timeout=120;Connection Lifetime=1200; </ConnectionString> </DbConfig> Also, the directory /path/to/myRepositoryStore must be writable by the firebird user, so: chown firebird.firebird /path/to/myRepositoryStore Once you have made these changes, restart Plastic, and you should see a firebird database (fdb file) appear in /path/to/myRepositoryStore I hope this is helpful.
×
×
  • Create New...