Jump to content

[SOLVED] SELECT Query fails (Searching for Strings with Backslashes)


ZwoksKorbi

Recommended Posts

Hello,

 

at the moment i'm developing a tool to monitor the diskusage.

I've got a Table with the path's and one with the effectives.

(See Attachment)

 

The following Query fails with the error:

Column 'path' cannot be null

 

INSERT INTO 
  `effectives` (`size`,`files`,`path`)
VALUES 
  (0.00,
  0,
  (SELECT `ID` FROM `directories` WHERE `path` LIKE "\\\\BIN-SV-N2V\\CIFS_VOL0$\\hochbau\\00_CAD"))

The data i want to find can be seen in Attachment 2 (directories-Table).

 

The error is thrown by the Subquery.

 

What am I doing wrong?

Please help me.

 

 

 

[attachment deleted by admin]

Link to comment
Share on other sites

Hi,

 

i've used it:

$sql = "INSERT INTO 
  `effectives` (`size`,`files`,`path`)
VALUES 
  (".$data[1].",
   ".$data[2].",
   (SELECT `ID` FROM `directories` WHERE `path` LIKE \"".$db->real_escape_string(trim($data[3]))."\"))";

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.