Re: [sqlite] Need help on SQLite In-Memory Mode

2014-08-11 Thread Kevin Benson
On Mon, Aug 11, 2014 at 9:19 PM, Nick Bao wrote: > Thanks, Joe! > > But it did not work for me. > > Still got the error: > System.ArgumentException: Invalid ConnectionString format for parameter > "FullUri" > > > Are you using System.Data.SQLite version > *1.0.81.0 ?*

Re: [sqlite] UEFA EURO 2012 Football Championship problem - SOLVED!!

2014-08-11 Thread Errol Emden
Keith...you are the man!!! Thanks for showing me a better way to solve my problem. I honestly did not think of using correlated subqueries, mainly because I was unsure of the underlying operations when they are used. But your mentoring explanation has made it quite clear now. I hope to be as

Re: [sqlite] Need help on SQLite In-Memory Mode

2014-08-11 Thread Nick Bao
Thanks, Joe! But it did not work for me. Still got the error: System.ArgumentException: Invalid ConnectionString format for parameter "FullUri" Nick Bao DL_DEV_4/DL_DEV_19, VP, Dalian Office - AvePoint, Inc. P: +86.411.8473.6866 | F: 159.0496.1680 | nick@avepoint.com Follow us onĀ 

Re: [sqlite] UEFA EURO 2012 Football Championship problem

2014-08-11 Thread Keith Medcalf
How about select mdate, team1, (select count(*) from goal where matchid = game.id and teamid = game.team1) as score1, team2, (select count(*) from goal where matchid = game.id and

Re: [sqlite] Cross-Platform ADO wrapper for iOS, Android and Win 8.1 WP 8.1?

2014-08-11 Thread J Decker
maybe ... http://www.unixodbc.org/ On Mon, Aug 11, 2014 at 10:47 AM, Ken Wenyon wrote: > Is there ADO Support for SQLite using Windows 8.1 and Windows Phone 8.1? > I am looking for a Cross-Platform ADO wrapper for iOS, Android and Win 8.1 > WP 8.1? > > > Ken Wenyon >

[sqlite] Cross-Platform ADO wrapper for iOS, Android and Win 8.1 WP 8.1?

2014-08-11 Thread Ken Wenyon
Is there ADO Support for SQLite using Windows 8.1 and Windows Phone 8.1? I am looking for a Cross-Platform ADO wrapper for iOS, Android and Win 8.1 WP 8.1? Ken Wenyon ___ sqlite-users mailing list sqlite-users@sqlite.org

Re: [sqlite] Not SQLite related, but, SQLite Mailing List related

2014-08-11 Thread jose isaias cabrera
"Stephen Chrzanowski" wrote... Ok, this IS NOT about SQLite itself in ANY regard, but specifically about this particular mailing list and how GMail is handling itself. When I joined this mailing list years ago, I put anything that goes through here into its own label via the same means that

Re: [sqlite] UEFA EURO 2012 Football Championship problem

2014-08-11 Thread Petite Abeille
On Aug 11, 2014, at 8:39 PM, Errol Emden wrote: > 1. Matches in which neither team scored is not being displayed. Because you have an inner join to goal. If there no goal, then no entry will match. > 2. Scores for the same matchid where both teams scored are appearing on

Re: [sqlite] Not SQLite related, but, SQLite Mailing List related

2014-08-11 Thread Luuk
On 11-8-2014 19:19, Stephen Chrzanowski wrote: Ok, this IS NOT about SQLite itself in ANY regard, but specifically about this particular mailing list and how GMail is handling itself. When I joined this mailing list years ago, I put anything that goes through here into its own label via the

Re: [sqlite] Not SQLite related, but, SQLite Mailing List related

2014-08-11 Thread RSmith
On 2014/08/11 19:19, Stephen Chrzanowski wrote: Ok, this IS NOT about SQLite itself in ANY regard, but specifically about this particular mailing list and how GMail is handling itself. When I joined this mailing list years ago, I put anything that goes through here into its own label via the

Re: [sqlite] UEFA EURO 2012 Football Championship problem

2014-08-11 Thread Errol Emden
Hi Keith: I am trying to list every match with the goals scored by each team as shown. mdateteam1score1team2score2 1 July 2012ESP4ITA 0 10 June 2012ESP1ITA1 10 June 2012IRL1CRO3 ... The database schema is as follows: game(id,mdate,stadium,team1,team2); goal(matchid,teamid,player,gtime);

Re: [sqlite] CREATE INDEX Placement

2014-08-11 Thread Simon Slavin
On 11 Aug 2014, at 5:19pm, Drago, William @ MWG - NARDAEAST wrote: > Does it matter if I group all of my CREATE INDEX statements at the end of my > .sql file or should they appear right after each CREATE TABLE statement? Does > SQLITE care one way or another? The

[sqlite] Not SQLite related, but, SQLite Mailing List related

2014-08-11 Thread Stephen Chrzanowski
Ok, this IS NOT about SQLite itself in ANY regard, but specifically about this particular mailing list and how GMail is handling itself. When I joined this mailing list years ago, I put anything that goes through here into its own label via the same means that I've got for other email I regularly

Re: [sqlite] CREATE INDEX Placement

2014-08-11 Thread Richard Hipp
On Mon, Aug 11, 2014 at 12:19 PM, Drago, William @ MWG - NARDAEAST < william.dr...@l-3com.com> wrote: > All, > > Does it matter if I group all of my CREATE INDEX statements at the end of > my .sql file or should they appear right after each CREATE TABLE statement? > Does SQLITE care one way or

[sqlite] CREATE INDEX Placement

2014-08-11 Thread Drago, William @ MWG - NARDAEAST
All, Does it matter if I group all of my CREATE INDEX statements at the end of my .sql file or should they appear right after each CREATE TABLE statement? Does SQLITE care one way or another? Thanks, -- Bill Drago Senior Engineer L3 Communications / Narda Microwave

[sqlite] Crash in sqlite3_mutex_try [Was: SQLite 3.8.6 beta]

2014-08-11 Thread Jan Nijtmans
2014-08-08 23:34 GMT+02:00 Richard Hipp>: > Please continue to test the latest snapshots and report any issues you find. I already reported this to sqlite-dev, but without test-case exposing the problem. Here is the test-case, which is 100% reproducable. And below is a minimal patch which fixes