# dsc
**Repository Path**: liwen_test_sync_group/dsc
## Basic Information
- **Project Name**: dsc
- **Description**: Datastore Connectivity in go
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-12-03
- **Last Updated**: 2026-02-10
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Datastore Connectivity (dsc)
[](https://goreportcard.com/report/github.com/viant/dsc)
[](https://godoc.org/github.com/viant/dsc)
This library is compatible with Go 1.10+
Please refer to [`CHANGELOG.md`](CHANGELOG.md) if you encounter breaking changes.
- [Motivation](#Motivation)
- [Usage](#Usage)
- [Prerequisites](#Prerequisites)
- [Installation](#Installation)
- [API Documentaion](#API-Documentation)
- [Tests](#Tests)
- [Examples](#Examples)
- [License](#License)
- [Credits and Acknowledgements](#Credits-and-Acknowledgements)
## Motivation
This library was developed as part of dsunit (Datastore unit testibility library) to provide unified access to SQL, noSQL,
or any other store that deals with structured data in SQL-ish way.
## Usage:
The following is a very simple example of CRUD operations with dsc
```go
package main
import (
)
func main() {
config := dsc.NewConfig("mysql", "[user]:[password]@[url]", "user:root,password:dev,url:tcp(127.0.0.1:3306)/mydb?parseTime=true")
factory := NewManagerFactory()
manager, err := factory.Create(config)
if err != nil {
panic(err.Error())
}
// manager := factory.CreateFromURL("file:///etc/myapp/datastore.json")
interest := Interest{}
success, err:= manager.ReadSingle(&interest, "SELECT id, name, expiry, category FROM interests WHERE id = ?", []interface{}{id},nil)
if err != nil {
panic(err.Error())
}
var interests = make([]Interest, 0)
err:= manager.ReadAll(&interests, "SELECT id, name, expiry, category FROM interests", nil ,nil)
if err != nil {
panic(err.Error())
}
fmt.Printf("all interests: %v\n", interests)
interests = []Interest {
Interest{Name:"Abc", ExpiryTimeInSecond:3600, Category:"xyz"},
Interest{Name:"Def", ExpiryTimeInSecond:3600, Category:"xyz"},
Interest{Id:20, Name:"Ghi", ExpiryTimeInSecond:3600, Category:"xyz"},
}
inserted, updated, err:= manager.PersistAll(&interests, "interests", nil)
if err != nil {
panic(err.Error())
}
deleted, err := manager.DeleteAll(&interests, "interests", nil)
if err != nil {
panic(err.Error())
}
fmt.Printf("Inserted %v, updated: %v, deleted: %v\n", inserted, updated, deleted)
}
```
More examples illustrating the use of the API are located in the
[`examples`](examples) directory.
Details about the API are available in the [`docs`](docs) directory.
## Prerequisites
[Go](http://golang.org) version v1.5+ is required.
To install the latest stable version of Go, visit
[http://golang.org/dl/](http://golang.org/dl/)
Target
## Installation:
1. Install Go 1.5+ and setup your environment as [Documented](http://golang.org/doc/code.html#GOPATH) here.
2. Get the client in your ```GOPATH``` : ```go get github.com/viant/dsc```
* To update the client library: ```go get -u github.com/viant/dsc```
### Some Hints:
* To run a go program directly: ```go run ```
* to build: ```go build -o