Jump to page: 1 2
Thread overview
string concatenation with %s
Jan 07, 2015
Suliman
Jan 07, 2015
bearophile
Jan 07, 2015
Suliman
Jan 07, 2015
novice2
Mar 30, 2015
Suliman
Mar 30, 2015
anonymous
Mar 30, 2015
Suliman
Mar 30, 2015
anonymous
Jan 07, 2015
Justin Whear
Jan 07, 2015
Suliman
Jan 07, 2015
Gary Willoughby
January 07, 2015
I need to construct complex SQL request, like:

string sql = ("INSERT INTO test.geomagnetic (`date`, `a_fredericksburg`, `fredericksburg`, `a_college`, `college`, `a_planetary`, `planetary`) VALUES ('%s', '%s', '%s', '%s', '%s', '%s', '%s');", date[i], a_fredericksburg[i], fredericksburg[i], a_college[i], college[i], a_planetary[i], planetary[i]);


I except that writefln have some behavior as string concatenation, but it does not.

IS there any way to put needed values in place of %s in string?
January 07, 2015
Suliman:

> I need to construct complex SQL request, like:
>
> string sql = ("INSERT INTO test.geomagnetic (`date`, `a_fredericksburg`, `fredericksburg`, `a_college`, `college`, `a_planetary`, `planetary`) VALUES ('%s', '%s', '%s', '%s', '%s', '%s', '%s');", date[i], a_fredericksburg[i], fredericksburg[i], a_college[i], college[i], a_planetary[i], planetary[i]);
>
>
> I except that writefln have some behavior as string concatenation, but it does not.
>
> IS there any way to put needed values in place of %s in string?

Please show the _clean_ input, followed by an output example.

Bye,
bearophile
January 07, 2015
On Wed, 07 Jan 2015 16:38:23 +0000, Suliman wrote:

> I except that writefln have some behavior as string concatenation, but it does not.
> 
> IS there any way to put needed values in place of %s in string?

std.string.format interpolates string with the same behavior as writefln but returns the resulting string instead of printing it.
January 07, 2015
On Wednesday, 7 January 2015 at 16:38:25 UTC, Suliman wrote:
> I need to construct complex SQL request, like:
>
> string sql = ("INSERT INTO test.geomagnetic (`date`, `a_fredericksburg`, `fredericksburg`, `a_college`, `college`, `a_planetary`, `planetary`) VALUES ('%s', '%s', '%s', '%s', '%s', '%s', '%s');", date[i], a_fredericksburg[i], fredericksburg[i], a_college[i], college[i], a_planetary[i], planetary[i]);
>
>
> I except that writefln have some behavior as string concatenation, but it does not.
>
> IS there any way to put needed values in place of %s in string?

Just FYI use prepared statements instead of string concatenation for SQL queries.

http://en.wikipedia.org/wiki/Prepared_statement
January 07, 2015
> Please show the _clean_ input, followed by an output example.
>
> Bye,
> bearophile

to prevent visual corruption I had past it here:
http://www.everfall.com/paste/id.php?ftzy9lxr6yfy



>Just FYI use prepared statements instead of string concatenation
for SQL queries.

You mean some tools, that help co construct request? How to use them with В, The problem is make proper string. Long string become unreadable :(
January 07, 2015
>std.string.format interpolates string with the same behavior as writefln

Thanks!
January 07, 2015
what if a_college[i] will contain ` char?
almost SQL have "prepare" statement...
March 30, 2015
same problem. I am preparing string to next SQL request:

string sss = format("SELECT * FROM test.imgs WHERE src LIKE CONCAT('%', REPLACE(CAST(CURDATE()as char), "-", ""), '%') OR CONCAT('%', CAST(CURDATE()as char), '%')");

but I am getting next error:

source\app.d(178): Error: invalid array operation "SELECT * FROM test.imgs WHERE
 src LIKE CONCAT('%', REPLACE(CAST(CURDATE()as char), " - ", ), '%') OR CONCAT('
%', CAST(CURDATE()as char), '%')" (possible missing [])
FAIL .dub\build\application-debug-windows-x86-dmd_2067-112ADE4A65EFD822A10EE5558
208F889\ geodataloader executable
March 30, 2015
On Monday, 30 March 2015 at 17:18:01 UTC, Suliman wrote:
> same problem. I am preparing string to next SQL request:
>
> string sss = format("SELECT * FROM test.imgs WHERE src LIKE CONCAT('%', REPLACE(CAST(CURDATE()as char), "-", ""), '%') OR CONCAT('%', CAST(CURDATE()as char), '%')");

Here's your code without SQL noise:

string sss = format("foo"-", ""bar");

It should be obvious now that you forgot to escape those double quotes.
March 30, 2015
> string sss = format("foo"-", ""bar");
>
> It should be obvious now that you forgot to escape those double quotes.

Thanks! Is there any way to stay string as is. without need of it's escaping and so on?

It's seems I have seen something like it in docs, but I am not sure about it...
« First   ‹ Prev
1 2