本文整理汇总了Golang中github.com/vattle/sqlboiler/queries.SetCount函数的典型用法代码示例。如果您正苦于以下问题:Golang SetCount函数的具体用法?Golang SetCount怎么用?Golang SetCount使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了SetCount函数的19个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Golang代码示例。
示例1: Exists
// Exists checks if the row exists in the table.
func (q cvtermDbxrefQuery) Exists() (bool, error) {
var count int64
queries.SetCount(q.Query)
queries.SetLimit(q.Query, 1)
err := q.Query.QueryRow().Scan(&count)
if err != nil {
return false, errors.Wrap(err, "chado: failed to check if cvterm_dbxref exists")
}
return count > 0, nil
}
开发者ID:dictyBase,项目名称:Modware,代码行数:14,代码来源:cvterm_dbxref.go
示例2: Count
// Count returns the count of all AuthUserRole records in the query.
func (q authUserRoleQuery) Count() (int64, error) {
var count int64
queries.SetSelect(q.Query, nil)
queries.SetCount(q.Query)
err := q.Query.QueryRow().Scan(&count)
if err != nil {
return 0, errors.Wrap(err, "chado: failed to count auth_user_role rows")
}
return count, nil
}
开发者ID:dictyBase,项目名称:Modware,代码行数:14,代码来源:auth_user_role.go
示例3: Exists
// Exists checks if the row exists in the table.
func (q stockcollectionQuery) Exists() (bool, error) {
var count int64
queries.SetCount(q.Query)
queries.SetLimit(q.Query, 1)
err := q.Query.QueryRow().Scan(&count)
if err != nil {
return false, errors.Wrap(err, "chado: failed to check if stockcollection exists")
}
return count > 0, nil
}
开发者ID:dictyBase,项目名称:Modware,代码行数:14,代码来源:stockcollection.go
示例4: Count
// Count returns the count of all CvtermDbxref records in the query.
func (q cvtermDbxrefQuery) Count() (int64, error) {
var count int64
queries.SetSelect(q.Query, nil)
queries.SetCount(q.Query)
err := q.Query.QueryRow().Scan(&count)
if err != nil {
return 0, errors.Wrap(err, "chado: failed to count cvterm_dbxref rows")
}
return count, nil
}
开发者ID:dictyBase,项目名称:Modware,代码行数:14,代码来源:cvterm_dbxref.go
示例5: Exists
// Exists checks if the row exists in the table.
func (q phenotypeComparisonCvtermQuery) Exists() (bool, error) {
var count int64
queries.SetCount(q.Query)
queries.SetLimit(q.Query, 1)
err := q.Query.QueryRow().Scan(&count)
if err != nil {
return false, errors.Wrap(err, "chado: failed to check if phenotype_comparison_cvterm exists")
}
return count > 0, nil
}
开发者ID:dictyBase,项目名称:Modware,代码行数:14,代码来源:phenotype_comparison_cvterm.go
示例6: Count
// Count returns the count of all StockRelationshipCvterm records in the query.
func (q stockRelationshipCvtermQuery) Count() (int64, error) {
var count int64
queries.SetSelect(q.Query, nil)
queries.SetCount(q.Query)
err := q.Query.QueryRow().Scan(&count)
if err != nil {
return 0, errors.Wrap(err, "chado: failed to count stock_relationship_cvterm rows")
}
return count, nil
}
开发者ID:dictyBase,项目名称:Modware,代码行数:14,代码来源:stock_relationship_cvterm.go
示例7: Count
// Count returns the count of all EnvironmentCvterm records in the query.
func (q environmentCvtermQuery) Count() (int64, error) {
var count int64
queries.SetSelect(q.Query, nil)
queries.SetCount(q.Query)
err := q.Query.QueryRow().Scan(&count)
if err != nil {
return 0, errors.Wrap(err, "chado: failed to count environment_cvterm rows")
}
return count, nil
}
开发者ID:dictyBase,项目名称:Modware,代码行数:14,代码来源:environment_cvterm.go
示例8: Count
// Count returns the count of all FeaturepropPub records in the query.
func (q featurepropPubQuery) Count() (int64, error) {
var count int64
queries.SetSelect(q.Query, nil)
queries.SetCount(q.Query)
err := q.Query.QueryRow().Scan(&count)
if err != nil {
return 0, errors.Wrap(err, "chado: failed to count featureprop_pub rows")
}
return count, nil
}
开发者ID:dictyBase,项目名称:Modware,代码行数:14,代码来源:featureprop_pub.go
示例9: Count
// Count returns the count of all JbrowseOrganism records in the query.
func (q jbrowseOrganismQuery) Count() (int64, error) {
var count int64
queries.SetSelect(q.Query, nil)
queries.SetCount(q.Query)
err := q.Query.QueryRow().Scan(&count)
if err != nil {
return 0, errors.Wrap(err, "chado: failed to count jbrowse_organism rows")
}
return count, nil
}
开发者ID:dictyBase,项目名称:Modware,代码行数:14,代码来源:jbrowse_organism.go
示例10: Exists
// Exists checks if the row exists in the table.
func (q jbrowseOrganismQuery) Exists() (bool, error) {
var count int64
queries.SetCount(q.Query)
queries.SetLimit(q.Query, 1)
err := q.Query.QueryRow().Scan(&count)
if err != nil {
return false, errors.Wrap(err, "chado: failed to check if jbrowse_organism exists")
}
return count > 0, nil
}
开发者ID:dictyBase,项目名称:Modware,代码行数:14,代码来源:jbrowse_organism.go
示例11: Exists
// Exists checks if the row exists in the table.
func (q contactRelationshipQuery) Exists() (bool, error) {
var count int64
queries.SetCount(q.Query)
queries.SetLimit(q.Query, 1)
err := q.Query.QueryRow().Scan(&count)
if err != nil {
return false, errors.Wrap(err, "chado: failed to check if contact_relationship exists")
}
return count > 0, nil
}
开发者ID:dictyBase,项目名称:Modware,代码行数:14,代码来源:contact_relationship.go
示例12: Count
// Count returns the count of all ContactRelationship records in the query.
func (q contactRelationshipQuery) Count() (int64, error) {
var count int64
queries.SetSelect(q.Query, nil)
queries.SetCount(q.Query)
err := q.Query.QueryRow().Scan(&count)
if err != nil {
return 0, errors.Wrap(err, "chado: failed to count contact_relationship rows")
}
return count, nil
}
开发者ID:dictyBase,项目名称:Modware,代码行数:14,代码来源:contact_relationship.go
示例13: Count
// Count returns the count of all StockItemOrder records in the query.
func (q stockItemOrderQuery) Count() (int64, error) {
var count int64
queries.SetSelect(q.Query, nil)
queries.SetCount(q.Query)
err := q.Query.QueryRow().Scan(&count)
if err != nil {
return 0, errors.Wrap(err, "chado: failed to count stock_item_order rows")
}
return count, nil
}
开发者ID:dictyBase,项目名称:Modware,代码行数:14,代码来源:stock_item_order.go
示例14: Exists
// Exists checks if the row exists in the table.
func (q authUserRoleQuery) Exists() (bool, error) {
var count int64
queries.SetCount(q.Query)
queries.SetLimit(q.Query, 1)
err := q.Query.QueryRow().Scan(&count)
if err != nil {
return false, errors.Wrap(err, "chado: failed to check if auth_user_role exists")
}
return count > 0, nil
}
开发者ID:dictyBase,项目名称:Modware,代码行数:14,代码来源:auth_user_role.go
示例15: Count
// Count returns the count of all File records in the query.
func (q fileQuery) Count() (int64, error) {
var count int64
queries.SetSelect(q.Query, nil)
queries.SetCount(q.Query)
err := q.Query.QueryRow().Scan(&count)
if err != nil {
return 0, errors.Wrap(err, "models: failed to count files rows")
}
return count, nil
}
开发者ID:zqzca,项目名称:back,代码行数:14,代码来源:files.go
示例16: Count
// Count returns the count of all Tableinfo records in the query.
func (q tableinfoQuery) Count() (int64, error) {
var count int64
queries.SetSelect(q.Query, nil)
queries.SetCount(q.Query)
err := q.Query.QueryRow().Scan(&count)
if err != nil {
return 0, errors.Wrap(err, "chado: failed to count tableinfo rows")
}
return count, nil
}
开发者ID:dictyBase,项目名称:Modware,代码行数:14,代码来源:tableinfo.go
示例17: Exists
// Exists checks if the row exists in the table.
func (q fileQuery) Exists() (bool, error) {
var count int64
queries.SetCount(q.Query)
queries.SetLimit(q.Query, 1)
err := q.Query.QueryRow().Scan(&count)
if err != nil {
return false, errors.Wrap(err, "models: failed to check if files exists")
}
return count > 0, nil
}
开发者ID:zqzca,项目名称:back,代码行数:14,代码来源:files.go
示例18: Exists
// Exists checks if the row exists in the table.
func (q featurepropPubQuery) Exists() (bool, error) {
var count int64
queries.SetCount(q.Query)
queries.SetLimit(q.Query, 1)
err := q.Query.QueryRow().Scan(&count)
if err != nil {
return false, errors.Wrap(err, "chado: failed to check if featureprop_pub exists")
}
return count > 0, nil
}
开发者ID:dictyBase,项目名称:Modware,代码行数:14,代码来源:featureprop_pub.go
示例19: Count
// Count returns the count of all PhenotypeComparisonCvterm records in the query.
func (q phenotypeComparisonCvtermQuery) Count() (int64, error) {
var count int64
queries.SetSelect(q.Query, nil)
queries.SetCount(q.Query)
err := q.Query.QueryRow().Scan(&count)
if err != nil {
return 0, errors.Wrap(err, "chado: failed to count phenotype_comparison_cvterm rows")
}
return count, nil
}
开发者ID:dictyBase,项目名称:Modware,代码行数:14,代码来源:phenotype_comparison_cvterm.go
注:本文中的github.com/vattle/sqlboiler/queries.SetCount函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论