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 » BUGFIX: MySqlConnection::SetParam(): handling INT64_V is missing
BUGFIX: MySqlConnection::SetParam(): handling INT64_V is missing [message #52819] Wed, 04 December 2019 18:27 Go to next message
zsolt is currently offline  zsolt
Messages: 697
Registered: December 2005
Location: Budapest, Hungary
Contributor
Proposed patch:
 		case INT_V:
 			p = Format("%d", int(r));
 			break;
+		case INT64_V:
+			p = IntStr64(r);
+			break;
 		case DOUBLE_V:
 			p = FormatDouble(double(r), 20);
 			break;
 		case DATE_V: {
 				Date d = r;

Re: BUGFIX: MySqlConnection::SetParam(): handling INT64_V is missing [message #52821 is a reply to message #52819] Thu, 05 December 2019 19:57 Go to previous message
mirek is currently offline  mirek
Messages: 13975
Registered: November 2005
Ultimate Member
Thanks, applied.

Mirek
Previous Topic: SQL tutorial 5 and using namespace Upp; in header file (Solved)
Next Topic: PostgreSQL: Escape "?" parameter placeholder
Goto Forum:
  


Current Time: Tue Apr 23 21:08:56 CEST 2024

Total time taken to generate the page: 0.02664 seconds