Skip to content

Commit

Permalink
Updating package names
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenneth Shaw committed Oct 9, 2017
1 parent aa95caf commit 4913e67
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ identically with `Parse`/`Open`.
Install in the usual Go fashion:

```sh
go get -u github.com/knq/dburl
go get -u github.com/xo/dburl
```

## Usage
Expand All @@ -135,7 +135,7 @@ to be imported:
| TiDB (tidb) | [github.com/go-sql-driver/mysql](https://github.com/go-sql-driver/mysql) |
| Vitess (vitess) | [github.com/go-sql-driver/mysql](https://github.com/go-sql-driver/mysql) |
| | |
| Google Spanner (spanner) | github.com/knq/spanner (not yet public) |
| Google Spanner (spanner) | github.com/xo/spanner (not yet public) |
| | |
| MySQL (mymysql) | [github.com/ziutek/mymysql/godrv](https://github.com/ziutek/mymysql) |
| PostgreSQL (pgx) | [github.com/jackc/pgx/stdlib](https://github.com/jackc/pgx) |
Expand All @@ -152,7 +152,7 @@ to be imported:
| Sybase SQL Anywhere (sqlany) | [github.com/a-palchikov/sqlago](https://github.com/a-palchikov/sqlago) |
| VoltDB (voltdb) | [github.com/VoltDB/voltdb-client-go/voltdbclient](github.com/VoltDB/voltdb-client-go]) |

Please see [the GoDoc API page](http://godoc.org/github.com/knq/dburl) for a
Please see [the GoDoc API page](http://godoc.org/github.com/xo/dburl) for a
full API listing.

### URL Parsing Rules
Expand All @@ -174,7 +174,7 @@ import (
"log"

_ "github.com/denisenkom/go-mssqldb"
"github.com/knq/dburl"
"github.com/xo/dburl"
)

func main() {
Expand All @@ -197,5 +197,5 @@ func main() {

The dburl package was built primarily to support these projects:

* [usql](https://github.com/knq/usql) - a universal command-line interface for SQL databases
* [xo](https://github.com/knq/xo) - a command-line tool to generate Go code from a database schema
* [usql](https://github.com/xo/usql) - a universal command-line interface for SQL databases
* [xo](https://github.com/xo/xo) - a command-line tool to generate Go code from a database schema
6 changes: 3 additions & 3 deletions dburl.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
// TiDB (tidb) | github.com/go-sql-driver/mysql
// Vitess (vitess) | github.com/go-sql-driver/mysql
// -----------------------------|-------------------------------------------------
// Google Spanner (spanner) | github.com/knq/spanner (not yet public)
// Google Spanner (spanner) | github.com/xo/spanner (not yet public)
// -----------------------------|-------------------------------------------------
// MySQL (mymysql) | github.com/ziutek/mymysql/godrv
// PostgreSQL (pgx) | github.com/jackc/pgx/stdlib
Expand Down Expand Up @@ -146,8 +146,8 @@
//
// Related Projects
//
// This package was written mainly to support xo (https://github.com/knq/xo)
// and usql (https://github.com/knq/usql).
// This package was written mainly to support xo (https://github.com/xo/xo)
// and usql (https://github.com/xo/usql).
package dburl

import (
Expand Down
2 changes: 1 addition & 1 deletion example/example.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"log"

_ "github.com/denisenkom/go-mssqldb"
"github.com/knq/dburl"
"github.com/xo/dburl"
)

func main() {
Expand Down

0 comments on commit 4913e67

Please sign in to comment.