Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
Home » U++ Library support » U++ SQL » Bugs with svn build 8144 and NOAPPSQL
Bugs with svn build 8144 and NOAPPSQL [message #44238] Sat, 07 February 2015 09:58 Go to previous message
rxantos is currently offline  rxantos
Messages: 72
Registered: October 2011
Member
Tried to upgrade an application that uses NOAPPSQL as a flag, while trying to compile got errors in the SQLCase.cpp

String SqlCompile(const String& s)
{
 return SqlCompile(SQL.GetDialect(), s);
}


it should have an #ifndef flagNOAPPSQL surrounding it, as it uses global SQL

Another is in Sql.cpp
void operator*=(ValueMap& map, SqlSelect select)
{
	map.Clear();
	Sql sql;
	sql * select;
	while(sql.Fetch())
		map.Add(sql[0], sql[1]);
}


should also be surounded by #ifndef flagNOAPPSQL as there is no default Sql constructor when flagNOAPPSQL is present.

BTW: Is this the way to report bugs, or is there a bug tracker?
 
Read Message
Read Message
Previous Topic: How to read a Blob from a SQLite3 DB
Next Topic: DBF crash error while writing record
Goto Forum:
  


Current Time: Sun May 05 20:52:17 CEST 2024

Total time taken to generate the page: 0.02636 seconds