Categorygithub.com/polypheny/Polypheny-Go-Driver
modulepackage
0.0.0-20240722083737-5ec648220957
Repository: https://github.com/polypheny/polypheny-go-driver.git
Documentation: pkg.go.dev

# README

Light: 'Resume application project app icon' Dark: 'Resume application project app icon'

Polypheny-DB Go Driver

A Polypheny-DB Driver for the Go programming language which supports multiple models and query languages.

Installation

To install and use the Go driver in a project, simply import this repo and the sql package of Go and then run go mod tidy. User may also need the context package.

import (
    _ "github.com/polypheny/Polypheny-Go-Driver"
    "database/sql"
    "context"
)

A demo on how to use this driver can be found in this repo.

An in-depth and more detailed documentation can be found here.

Roadmap

See the open issues for a list of proposed features (and known issues).

Contributing

We highly welcome your contributions to the Polypheny Go Driver. If you would like to contribute, please fork the repository and submit your changes as a pull request. Please consult our Admin Repository and our Website for guidelines and additional information.

Please note that we have a code of conduct. Please follow it in all your interactions with the project.

License

The Apache 2.0 License

# Packages

No description provided by the author

# Structs

No description provided by the author
No description provided by the author
Connector implements the driver.Connector interface.
PolyphenyConn implements driver.Conn.
PolyphenyDriver implements driver.Driver and DriverContext interface.
PolyphenyResult implements driver.Result and represents the results of queries that don't return data.
PolyphenyRows implements driver.Rows and represents the results of queries that return data.
No description provided by the author
PreparedStatement implments Stmt, StmtExecContext and StmtQueryContext Deprecated functions, such as Exec and Query, are also implemented for compatibility, but they are deprecated.