Re: [fpc-pascal] TurboPower FlashFiler for Free Pascal

2012-10-23 Thread Graeme Geldenhuys
On 2012-10-23 15:25, geneb wrote:
> 
> What about B-Tree Filer? :)


I'll read up on it, thanks.


  Graeme.

___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] TurboPower FlashFiler for Free Pascal

2012-10-23 Thread Noah Silva
Flash filer is ok,  but you are better off with SQLite for most purposes
these days.
2012/10/23 22:25 "Graeme Geldenhuys" :

> Hi,
>
> Yeah, a catchy title!  ;-)
>
> I want to know if anybody here has ever used FlashFiler in Delphi. Was
> it a good product, and do you think it would be worth the effort porting
> it to Free Pascal?  Or is FlashFiler simply too old and outdated.
>
> I mainly use Firebird RDBMS for all my database needs and think it is
> excellent. I use it in client/server and embedded form under Linux and
> Windows.
>
> But I am also intrigued by the idea of having a true embedded database
> server - compiled directly into my executable for even easier deployment.
>
> Any thoughts on this?  Has anybody else started such a port?
>
> Regards,
>   - Graeme -
> ___
> fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
> http://lists.freepascal.org/mailman/listinfo/fpc-pascal
>
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] TurboPower FlashFiler for Free Pascal

2012-10-23 Thread geneb

On Tue, 23 Oct 2012, Graeme Geldenhuys wrote:


Hi,

Yeah, a catchy title!  ;-)

I want to know if anybody here has ever used FlashFiler in Delphi. Was
it a good product, and do you think it would be worth the effort porting
it to Free Pascal?  Or is FlashFiler simply too old and outdated.

I mainly use Firebird RDBMS for all my database needs and think it is
excellent. I use it in client/server and embedded form under Linux and
Windows.

But I am also intrigued by the idea of having a true embedded database
server - compiled directly into my executable for even easier deployment.

Any thoughts on this?  Has anybody else started such a port?



What about B-Tree Filer? :)

g.

--
Proud owner of F-15C 80-0007
http://www.f15sim.com - The only one of its kind.
http://www.diy-cockpits.org/coll - Go Collimated or Go Home.
Some people collect things for a hobby.  Geeks collect hobbies.

ScarletDME - The red hot Data Management Environment
A Multi-Value database for the masses, not the classes.
http://www.scarletdme.org - Get it _today_!
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] TurboPower FlashFiler for Free Pascal

2012-10-23 Thread Ludo Brands
> 
> If I understand Graeme correctly, he wants it compiled-in 
> (i.e. without dll). SQLite is a separate DLL.
> 

See
http://forum.lazarus.freepascal.org/index.php/topic,15712.msg84781.html#msg8
4781 for instructions on static linking of sqlite3. No dll needed.

Ludo 

___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] TurboPower FlashFiler for Free Pascal

2012-10-23 Thread Graeme Geldenhuys
On 2012-10-23 14:34, michael.vancann...@wisa.be wrote:
> 
> If I understand Graeme correctly, he wants it compiled-in (i.e. without
> dll). SQLite is a separate DLL.


Correct. We have an application that can be deployed in two ways.
Client/Server which uses Firebird RDBMS and Apache Web Server. We also
want to deploy that app as a single-user stand-alone app. We already
have a built-in web server - now we are looking at a built-in
(compiled-in) database server.

I'm thinking in lines of something more modern that TDbf for example.


Regards,
  - Graeme -

___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] TurboPower FlashFiler for Free Pascal

2012-10-23 Thread kyan
On Tue, Oct 23, 2012 at 4:34 PM,   wrote:
> If I understand Graeme correctly, he wants it compiled-in (i.e. without
> dll). SQLite is a separate DLL.

SqLite source can be downloaded and compiled with a C compiler (e.g.
CBuilder) and its .lib file linked directly in a Delphi application
using the {$L} or {$LINK} directive. Is FPC capable of linking a .lib
file?
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] TurboPower FlashFiler for Free Pascal

2012-10-23 Thread michael . vancanneyt



On Tue, 23 Oct 2012, Sven Barth wrote:


Am 23.10.2012 15:24, schrieb Graeme Geldenhuys:

Hi,

Yeah, a catchy title!  ;-)

I want to know if anybody here has ever used FlashFiler in Delphi. Was
it a good product, and do you think it would be worth the effort porting
it to Free Pascal?  Or is FlashFiler simply too old and outdated.

I mainly use Firebird RDBMS for all my database needs and think it is
excellent. I use it in client/server and embedded form under Linux and
Windows.

But I am also intrigued by the idea of having a true embedded database
server - compiled directly into my executable for even easier deployment.

Any thoughts on this?  Has anybody else started such a port?


I don't know about FlashFiler, but if you don't need your embedded database 
server to be accessable from outside, I'd suggest you SQLite as an 
alternative to Firebird ;)


If I understand Graeme correctly, he wants it compiled-in (i.e. without
dll). SQLite is a separate DLL.

Michael.

___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] TurboPower FlashFiler for Free Pascal

2012-10-23 Thread michael . vancanneyt



On Tue, 23 Oct 2012, Graeme Geldenhuys wrote:


Hi,

Yeah, a catchy title!  ;-)

I want to know if anybody here has ever used FlashFiler in Delphi. Was
it a good product, and do you think it would be worth the effort porting
it to Free Pascal?  Or is FlashFiler simply too old and outdated.

I mainly use Firebird RDBMS for all my database needs and think it is
excellent. I use it in client/server and embedded form under Linux and
Windows.

But I am also intrigued by the idea of having a true embedded database
server - compiled directly into my executable for even easier deployment.

Any thoughts on this?  Has anybody else started such a port?



Allen Harrington  works on B-Tree filer, which (if I am
correct) is the original from Flash Filer.

Maybe you can ask about his experiences.

Michael.
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] TurboPower FlashFiler for Free Pascal

2012-10-23 Thread Sven Barth

Am 23.10.2012 15:24, schrieb Graeme Geldenhuys:

Hi,

Yeah, a catchy title!  ;-)

I want to know if anybody here has ever used FlashFiler in Delphi. Was
it a good product, and do you think it would be worth the effort porting
it to Free Pascal?  Or is FlashFiler simply too old and outdated.

I mainly use Firebird RDBMS for all my database needs and think it is
excellent. I use it in client/server and embedded form under Linux and
Windows.

But I am also intrigued by the idea of having a true embedded database
server - compiled directly into my executable for even easier deployment.

Any thoughts on this?  Has anybody else started such a port?


I don't know about FlashFiler, but if you don't need your embedded 
database server to be accessable from outside, I'd suggest you SQLite as 
an alternative to Firebird ;)


Regards,
Sven

___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] TurboPower FlashFiler for Free Pascal

2012-10-23 Thread Tony Caduto
I would say it's a decent database as nexus db for Delphi is a fork of it.
But why not use sqlite?  It can be fully embedded as well,  there is at
least 1 Delphi sqlite component set that does not require the sqlite dll.
On Oct 23, 2012 8:25 AM, "Graeme Geldenhuys" 
wrote:

> Hi,
>
> Yeah, a catchy title!  ;-)
>
> I want to know if anybody here has ever used FlashFiler in Delphi. Was
> it a good product, and do you think it would be worth the effort porting
> it to Free Pascal?  Or is FlashFiler simply too old and outdated.
>
> I mainly use Firebird RDBMS for all my database needs and think it is
> excellent. I use it in client/server and embedded form under Linux and
> Windows.
>
> But I am also intrigued by the idea of having a true embedded database
> server - compiled directly into my executable for even easier deployment.
>
> Any thoughts on this?  Has anybody else started such a port?
>
> Regards,
>   - Graeme -
> ___
> fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
> http://lists.freepascal.org/mailman/listinfo/fpc-pascal
>
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] TurboPower FlashFiler for Free Pascal

2012-10-23 Thread Graeme Geldenhuys
Hi,

Yeah, a catchy title!  ;-)

I want to know if anybody here has ever used FlashFiler in Delphi. Was
it a good product, and do you think it would be worth the effort porting
it to Free Pascal?  Or is FlashFiler simply too old and outdated.

I mainly use Firebird RDBMS for all my database needs and think it is
excellent. I use it in client/server and embedded form under Linux and
Windows.

But I am also intrigued by the idea of having a true embedded database
server - compiled directly into my executable for even easier deployment.

Any thoughts on this?  Has anybody else started such a port?

Regards,
  - Graeme -
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal