Firebird database and Laravel - development

Firebird database and Laravel

I need to setup a database using firebird and access to its data using laravel. I already have a simple database with a single column (user) but i dont even know how to “put it online” or setup a server to make the database accessible.
I never worked it Firebird before and im kinda confused. It’s a new concept for me, as I only worked with Xampp and PhpMyAdmin, which I’m confortable with.
How do I get the “Host” and stuff of a firebird database?
How can I access to it?
Any help is apreciated!

Table of users:

    CREATE TABLE "USER" (
    ID          INTEGER NOT NULL,
    NAME        VARCHAR(30),
    EMAIL       VARCHAR(40),
    PASSWORD    VARCHAR(100)
);

ALTER TABLE "USER" ADD CONSTRAINT PK_USER PRIMARY KEY (ID);



from Laravel Questions and Answers https://laravelquestions.com/laravel/firebird-database-and-laravel/
via Lzo Media

Comments

Popular posts from this blog

Using PHP and MySQL data to generate PDF letters like in MS Word mailmerge functionality - development

ng-show doesn’t work correct with value boolean

ng-include of inline SVG does not display gradient except in Chrome