(writer http.ResponseWriter, request *http.Request)
| 286 | } |
| 287 | |
| 288 | func (this *InstallController) TableInfoList(writer http.ResponseWriter, request *http.Request) *result.WebResult { |
| 289 | |
| 290 | db := this.openDbConnection(writer, request) |
| 291 | defer this.closeDbConnection(db) |
| 292 | |
| 293 | return this.Success(this.getTableMetaList(db)) |
| 294 | } |
| 295 | |
| 296 | func (this *InstallController) CreateTable(writer http.ResponseWriter, request *http.Request) *result.WebResult { |
| 297 |
nothing calls this directly
no test coverage detected