Re: [go-nuts] Re: A single type to wrap text/template.Template and html/template.Template

2019-01-01 Thread Renee Jylkka
ble with chaining?  I think that's what this comes down to -- the text/template and html/template packages are designed for function chaining, so nearly every function returns a pointer to its own type. Thanks, Renee Jylkka On 12/31/2018 8:53 PM, K Davidson wrote: One way to accomplish th

[go-nuts] A single type to wrap text/template.Template and html/template.Template

2018-12-31 Thread Renee Jylkka
duplicate code and data structures, with only slight differences beyond which package I'm using? Thanks! Renee Jylkka -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it

[go-nuts] Re: MSSQL DBMS

2017-06-16 Thread Renee Jylkka
I assume from your subject line that you want to connect specifically to MS SQL, rather than some other flavor of SQL. I do not connect to Access, so I cannot help there. A generic interface for SQL-like databases is included in the basic Go packages. I assume that you have read this page: ht