Re: [go-nuts] display database table in html table like a gridview or dataview.

2017-07-06 Thread Jakob Borg
Error checking on the template execution is the first thing that comes to mind. //jb On 6 Jul 2017, at 14:10, Connel blaze mailto:connelbl...@gmail.com>> wrote: https://play.golang.org/p/QqHXewyDTp This is what i have. It's a simple CRUD example I'm using to learn go-database/sql. Create works

[go-nuts] display database table in html table like a gridview or dataview.

2017-07-06 Thread Connel blaze
https://play.golang.org/p/QqHXewyDTp This is what i have. It's a simple CRUD example I'm using to learn go-database/sql. Create works fine but the 'Read' ain't working. When I goto the read route, it's a blank html page. No data. like the struct isn't correct. Is there something I'm missing? -