Is it possible to use firebase on computers?

0

I need to create a custom finance control application for the company I work with and wanted to know if it is possible through some mechanism to create a database in firebase to be used in android, web and pc, in an integrated way and in time real.

I ask about the pc, because I do not want to use the web all the time (depending on the internet), because I want to use offline in all devices for use in estimates and report generation.

Any tips?

    
asked by anonymous 09.02.2018 / 16:30

2 answers

1

You can integrate firebase into both node and java, and you can do all the types of applications you mentioned above.

Here is an example of a java application with FireStore ("New Firebase"): link

    
01.03.2018 / 13:04
1

Consider creating your application in Delphi , it can interact with a Firebase database locally and remotely, in addition to through the framework Firemonkey you can create and import your application in several formats for desktop and mobile.

Here is an example of how easy it is to work with Firemonkey databases in Delphi:

  • Put dll corresponding to your bank version in the folder of your .exe or in some PATH listed in your OS (eg \ SYSTEM32)
  • Open your application and drag the TFDConnection component of your tool window
  • Click twice and enter the specifications of your DB (Database path, username, password, etc ...)

  • Drag the FDQuery component and with it you can make the calls through query's sql.
    Example:

FDQuery1.SQL.Text := 'select * from tab where code = :Code'; FDQuery1.ParamByName('code').AsString := '123'; FDQuery1.Open;

    
01.03.2018 / 13:37