Jump to content

Recommended Posts

Hey Guys...

 

This is my query into a database.... the values are all empty in this statement. For example, this query:

 

$odbcquery = "INSERT INTO Holdings VALUES ( '$holding' ,'$SIN','$SetupDate','$lastname','$firstname',

              '$streetaddress','$city','$province','$country','$postalcode','$fundname','$fundclass','$plantype',

      '$unitsheld','$inceptiondate','$marketvalue','$fundcodeandload')";

 

 

Prints out this:

 

 

INSERT INTO QuadrusHoldings VALUES ( '' ,'','','','', '','','','','','','','', '','','','')

 

 

I am using the exact same syntax in a mysql database in another program and it works fine. Not quite sure what the problem is...

 

Thanks a bunch for your time.

 

YB

 

Link to comment
https://forums.phpfreaks.com/topic/64476-syntax-help-wanted/
Share on other sites

This code inserts blank values into the first record of the database... so the sql is correct.

The problem is that there are duplicate values (or blanks in my case) in the primary key. This is the error message:

 

"The changes you requested to the table were not successful because they would create duplicate values in the index, primary key, or relationship. Change the data in the field or fields that contain duplicate data, remove the index, or redefine the index to permit duplicate entries and try again"

 

 

 

To answer your question, yes the variables are declared, and they also print to screen right (with an echo statement) before the SQL statement.

Link to comment
https://forums.phpfreaks.com/topic/64476-syntax-help-wanted/#findComment-321426
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.