Re: [sqlite] SQL result to struct

2009-06-29 Thread Shaun Seckman (Firaxis)
such as ensuring equivalent types and validating against column names. -Original Message- From: sqlite-users-boun...@sqlite.org [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of Igor Tandetnik Sent: Monday, June 29, 2009 8:17 AM To: sqlite-users@sqlite.org Subject: Re: [sqlite] SQL result

Re: [sqlite] SQL result to struct

2009-06-29 Thread Igor Tandetnik
Mark Flipphi wrote: > I need some help with storing the result from a query into a struct. > > I have a query like : > > SELECT Echo.Position, Echo.Depth, Echo.dBLevel, Echo.Time, > Echo.CommonIdx, Common.ChanNr > FROM Echo JOIN Common ON Echo.CommonIdx = Common.CommonIdx > ORDER BY Echo.Position

[sqlite] SQL result to struct

2009-06-29 Thread Mark Flipphi
Hello, I need some help with storing the result from a query into a struct. I have a query like : SELECT Echo.Position, Echo.Depth, Echo.dBLevel, Echo.Time, Echo.CommonIdx, Common.ChanNr FROM Echo JOIN Common ON Echo.CommonIdx = Common.CommonIdx ORDER BY Echo.Position ASC and i need to store