U++ framework
Do not panic. Ask here before giving up.

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: 702
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;
 }
 
Read Message
Previous Topic: Strange (perhaps) DropList ctrl behaviour
Next Topic: [FEATURE REQUEST] Add Jsonize() to S_ structs
Goto Forum:
  


Current Time: Sun Apr 26 11:07:31 GMT+2 2026

Total time taken to generate the page: 0.00433 seconds