GoCommand signals the end of a batch of Transact-SQL statements to the SQL Server Utilities. https://learn.microsoft.com/en-us/sql/t-sql/language-elements/sql-server-utilities-statements-go?view=sql-server-ver16
| 50 | // GoCommand signals the end of a batch of Transact-SQL statements to the SQL Server Utilities. |
| 51 | // https://learn.microsoft.com/en-us/sql/t-sql/language-elements/sql-server-utilities-statements-go?view=sql-server-ver16 |
| 52 | type GoCommand struct { |
| 53 | // Count is a positive integer, the batch preceding the GO command will execute the specified number of times. |
| 54 | // The default value of Count is 1. |
| 55 | Count uint |
| 56 | } |
| 57 | |
| 58 | // String returns the string representation of the command. |
| 59 | func (g *GoCommand) String() string { |
nothing calls this directly
no outgoing calls
no test coverage detected