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 » Sqlite bugfix: sqlite has no "nowait" option in select statements
Sqlite bugfix: sqlite has no "nowait" option in select statements [message #60045] Sun, 16 July 2023 01:50
zsolt is currently offline  zsolt
Messages: 697
Registered: December 2005
Location: Budapest, Hungary
Contributor
Sql/SqlStatement.cpp:

The old code:
SqlSelect& SqlSelect::NoWait() {
	text << " nowait";
	return *this;
 }

The fixed code:
SqlSelect& SqlSelect::NoWait() {
	text << SqlCode(SQLITE3, "")(" nowait");
	return *this;
 }
Previous Topic: Strange (perhaps) DropList ctrl behaviour
Next Topic: [FEATURE REQUEST] Add Jsonize() to S_ structs
Goto Forum:
  


Current Time: Mon Apr 29 01:14:11 CEST 2024

Total time taken to generate the page: 1.09024 seconds