[go-nuts] Re: RSQL, a lighweight clone of Microsoft SQL Server written in Go

2017-03-14 Thread nicolas riesch
To compile from source, follow these instructions: http://rsql.ch/guide/download_page/ -- 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, send an email to golang-nuts+unsubscr...@g

[go-nuts] Re: RSQL, a lighweight clone of Microsoft SQL Server written in Go

2017-03-14 Thread nicolas riesch
License for the server is GPL. I've just put it right now. -- 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, send an email to golang-nuts+unsubscr...@googlegroups.com. For more o

[go-nuts] Re: RSQL, a lighweight clone of Microsoft SQL Server written in Go

2017-03-14 Thread nicolas riesch
License for the server is GPL. I've just put it right now. Le lundi 13 mars 2017 21:13:39 UTC+1, nicolas riesch a écrit : > > I have developed RSQL, a *lighweight clone of Microsoft SQL Server*, > which runs on Linux and can execute T-SQL scripts. > > It has been succ

[go-nuts] RSQL, a lighweight clone of Microsoft SQL Server written in Go

2017-03-13 Thread nicolas riesch
I have developed RSQL, a *lighweight clone of Microsoft SQL Server*, which runs on Linux and can execute T-SQL scripts. It has been successfully tested with millions of records. The source code is *written in Go*, and contains 140,000 lines. It would help me very much if some of you could downl

[go-nuts] Re: Why can't convert []T to []T2 if T2 is a copy definition of T?

2016-09-02 Thread nicolas riesch
In your original example, if you don't cast, it works. https://play.golang.org/p/g-GScYkA5S The explanation is here: https://groups.google.com/forum/#!topic/golang-nuts/x3nOMDCLv5M Le vendredi 26 août 2016 17:45:40 UTC+2, T L a écrit : > > > > package main > > type Age int > > func main() { >