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
No comments:
Post a Comment