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 previous 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;

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


Current Time: Sat Apr 27 20:58:58 CEST 2024

Total time taken to generate the page: 0.05781 seconds