From debf0b93400985af7f485665adacfeeca14698cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Carlos=20Nieto?= <xiam@menteslibres.org> Date: Wed, 29 Aug 2012 06:25:53 -0500 Subject: [PATCH] Updating links. --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 297eec9e..7ad553aa 100644 --- a/README.md +++ b/README.md @@ -13,12 +13,12 @@ Use ``go get`` to download and install ``gosexy/db``. This package provides shared interfaces and datatypes only, in order to connect to an actual database a wrapper is required. -## Available drivers +## Available wrappers -* [mongo](/gosexy/db/tree/master/mongo) -* [mysql](/gosexy/db/tree/master/mysql) -* [postgresql](/gosexy/db/tree/master/postgresql) -* [sqlite](/gosexy/db/tree/master/sqlite) +* [mongo](http://gosexy.org/db/wrappers/mongo) +* [mysql](http://gosexy.org/db/wrappers/mysql) +* [postgresql](http://gosexy.org/db/wrappers/postgresql) +* [sqlite](http://gosexy.org/db/wrappers/sqlite) ## Connecting to a database @@ -32,7 +32,7 @@ Once you've installed a driver, you need to import it into your Go code: ### Setting up a database source -We are going to use the [mysql](/gosexy/db/tree/master/mysql) driver in our examples. If you want to use another driver +We are going to use the [mysql](http://gosexy.org/db/wrappers/mysql) driver in our examples. If you want to use another driver (such as ``mongo``) just replace ``mysql`` with the name of your driver and everything should work the same. sess := mysql.Session(db.DataSource{Host: "localhost", Database: "test", User: "myuser", Password: "mypass"}) -- GitLab