https://github.com/einar-hjortdal/firebird
V-native client for the Firebird SQL relational database management system
https://github.com/einar-hjortdal/firebird
Last synced: 3 months ago
JSON representation
V-native client for the Firebird SQL relational database management system
- Host: GitHub
- URL: https://github.com/einar-hjortdal/firebird
- Owner: einar-hjortdal
- License: ncsa
- Created: 2024-07-27T07:57:05.000Z (11 months ago)
- Default Branch: pending
- Last Pushed: 2025-03-28T16:27:23.000Z (3 months ago)
- Last Synced: 2025-03-28T17:30:32.410Z (3 months ago)
- Language: V
- Homepage:
- Size: 156 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-v - firebird - Client for Firebird SQL. (Libraries / Database clients)
- trackawesomelist - firebird (⭐1) - Client for Firebird SQL. (Recently Updated / [Apr 02, 2025](/content/2025/04/02/README.md))
README
# firebird
Firebird database connector for the V language.
## Development
Contributions are very welcome.
- [Issues](https://github.com/einar-hjortdal/firebird/issues)
- [TODO.md](./TODO.md)
- [CONTRIBUTING.md](./CONTRIBUTING.md)All you have to do to contribute to this project is to start a Firebird container like so:
```bash
sudo docker run \
--rm \
--detach \
--name=firebird-server \
--env=FIREBIRD_ROOT_PASSWORD=rootpwd \
--env=FIREBIRD_USER=fbusr \
--env=FIREBIRD_PASSWORD=fbpwd \
--env=FIREBIRD_DATABASE=firebird.fdb \
--env=FIREBIRD_DATABASE_DEFAULT_CHARSET=UTF8 \
--volume=firebird-data:/var/lib/firebird/data \
--publish=3050:3050 \
firebirdsql/firebird
```