An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

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
```