Coder Social home page Coder Social logo

nhibernate.vertica's Introduction

NHibernate.Vertica

Vertica 7 (Unofficial) Support for NHibernate (and Linq to NHibernate)

NHibernate does not offer support for Vertica 7, not surprising as it is new, not widely adopted and not a particularly strong player in Microsoft environments. Some people appear to have been able to get Java Hibernate working with the PostgreSQL.Standard configuration, but that is with Java and JDBC. When I tried to use PostgresSQL it didn't work even after installing the Npgsql ADO.NET driver. There are some limitations and incompatibilities that crop up when attempting to use the NHibernate Postgresql configuration.

This package implements an Vertica7 Driver and Dialect for NHibernate. It uses the Vertica 7 ADO.NET provider by subclassing the PostgreSQL Dialect:

        _sessionFactory = Fluently.Configure()
            .Database(NHibernate.Vertica.Vertica7Configuration.Standard
                          .ConnectionString(@"Servername=<vertica7server>;Port=5433;Database=<dbname>;Username=dbadmin;Password=<mypassword>")

It is then possible to use NHibernate with Vertica 7 to: a) select data out of Vertica using Linq to NHibernate:

        var makeQuery = (from make in session.Query<Make>()
                             where make.Name == makeName
                             select make).SingleOrDefault();

b) insert and update data c) generate schema into Vertica from POCOs d) Use Vertica-style prepared statements (these differ from PostGreSQL)

The TestConsole project demonstrates how to integrate NHibernate with Vertica 7.

Pre-requisites: Dependent DLLs are referenced from nuget where possible. Also requires the installation of the Vertica 7 ADO.NET Driver (Vertica.Data) available at http://www.vertica.com/.

NUGET This package is available at Nuget, https://www.nuget.org/packages/NHibernate.Vertica/

nhibernate.vertica's People

Contributors

loopback2020 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.