github.com/mattn/go-adodb@v0.0.1/README.md (about)

     1  # go-adodb
     2  
     3  Microsoft ADODB driver conforming to the built-in database/sql interface
     4  
     5  ## Installation
     6  
     7  This package can be installed with the go get command:
     8  
     9      go get github.com/mattn/go-adodb
    10  
    11  ## Documentation
    12  
    13  API documentation can be found here: http://godoc.org/github.com/mattn/go-adodb
    14  
    15  Examples can be found under the `./_example` directory
    16  
    17  ## Note
    18  
    19  If you met the issue that your apps crash, try to import blank import of `runtime/cgo` like below.
    20  
    21  ```go
    22  import (
    23      ...
    24      _ "runtime/cgo"
    25  )
    26  ```
    27  
    28  ## License
    29  
    30  MIT: http://mattn.mit-license.org/2015
    31  
    32  ## Author
    33  
    34  Yasuhiro Matsumoto (a.k.a mattn)