SchemaResource is the resource of the schema.
| 7 | |
| 8 | // SchemaResource is the resource of the schema. |
| 9 | type SchemaResource struct { |
| 10 | Database string |
| 11 | Schema string |
| 12 | Table string |
| 13 | |
| 14 | // LinkedServer is the special resource for MSSQL, which can be used to specify the linked server. |
| 15 | LinkedServer string |
| 16 | } |
| 17 | |
| 18 | // String implements fmt.Stringer interface. |
| 19 | func (r SchemaResource) String() string { |
nothing calls this directly
no outgoing calls
no test coverage detected