type contrib.go.opencensus.io/integrations/ocsql.ocRows

18 uses

	contrib.go.opencensus.io/integrations/ocsql (current package)
		driver.go#L40: 	_ driver.Rows                           = &ocRows{}
		driver.go#L41: 	_ driver.RowsNextResultSet              = &ocRows{}
		driver.go#L42: 	_ driver.RowsColumnTypeDatabaseTypeName = &ocRows{}
		driver.go#L43: 	_ driver.RowsColumnTypeLength           = &ocRows{}
		driver.go#L44: 	_ driver.RowsColumnTypeNullable         = &ocRows{}
		driver.go#L45: 	_ driver.RowsColumnTypePrecisionScale   = &ocRows{}
		driver.go#L655: type ocRows struct {
		driver.go#L664: func (r ocRows) HasNextResultSet() bool {
		driver.go#L675: func (r ocRows) NextResultSet() error {
		driver.go#L686: func (r ocRows) ColumnTypeDatabaseTypeName(index int) string {
		driver.go#L697: func (r ocRows) ColumnTypeLength(index int) (length int64, ok bool) {
		driver.go#L708: func (r ocRows) ColumnTypeNullable(index int) (nullable, ok bool) {
		driver.go#L719: func (r ocRows) ColumnTypePrecisionScale(index int) (precision, scale int64, ok bool) {
		driver.go#L727: func (r ocRows) Columns() []string {
		driver.go#L731: func (r ocRows) Close() (err error) {
		driver.go#L747: func (r ocRows) Next(dest []driver.Value) (err error) {
		driver.go#L779: 	r := ocRows{
		driver.go#L787: 			ocRows