query:Go 中的 SQL 查询生成器

时间:2024-06-19 13:39:21
【文件属性】:

文件名称:query:Go 中的 SQL 查询生成器

文件大小:10KB

文件格式:ZIP

更新时间:2024-06-19 13:39:21

Go

询问 Go 中的 SQL 查询生成器。 类似于 MongoDB 的地方 package main import ( "github.com/inappcloud/query" "github.com/inappcloud/query/where" ) func main () { c := where . Parse ( `{"$or":[{"price":{"$gt":10},{"name":"phoenix"}]}` ) c . String () // "(price > ? OR name = ?)" c . Params () // []interface{}{10, "phoenix"} q := query . Select ( "teas" ). Where ( where . And ( c , where . Eq ( "id" , 1 ))


【文件预览】:
query-master
----delete.go(1KB)
----delete_test.go(1KB)
----update.go(2KB)
----insert.go(1KB)
----select_test.go(1KB)
----shared_test.go(339B)
----.travis.yml(110B)
----query.go(328B)
----LICENSE(1KB)
----update_test.go(2KB)
----README.md(651B)
----.gitignore(18B)
----select.go(2KB)
----insert_test.go(1KB)
----where()
--------where_test.go(5KB)
--------where.go(5KB)

网友评论