[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

09/22/2009 at 10:01AM PDT, ID: 24752239
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.0

create a table with a cgi

Asked by running32 in CGI Scripting, Perl Programming Language

I am getting the error below when I try to create a table and add a new field using a cgi script.  can someone please tell me where I am going wrong in my code.  Thanks

I was trying to add $shiftLocation and it looks from the error like it is not picking up th new field .


********error
create shift table ...
CREATE TABLE IF NOT EXISTS shift(shift_id integer primary key auto_increment, shift_proj_id integer not null, date text not null, stime text not null, etime text not null, text not null, num_needed integer not null, FOREIGN KEY (shift_proj_id) REFERENCES proj (proj_id) ON DELETE CASCADE)
Status: 500 Content-type: text/html
Software error:
DBD::mysql::st execute failed: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'not null, num_needed integer not null, FOREIGN KEY (shift_proj_id) REFERENCES pr' at line 1 at database.pl line 240.

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
**********cgi script
## shift table holds information abou the different shifs for a single project.
## See database.pl for list of columns.
$SHIFT_TABLE = "CREATE TABLE IF NOT EXISTS $shiftTableName(".
    "$shiftID integer primary key auto_increment, " . 
    "$shiftProjID integer not null, " . 
    "$shiftDate text not null, " .
    "$shiftStart text not null, " .
    "$shiftEnd text not null, " .
    "$shiftLocation text not null, " .
    "$shiftNumPeople integer not null, ".     
    "FOREIGN KEY ($shiftProjID) REFERENCES $projTableName ($projID) ON DELETE CASCADE)"; 
 
print "<br>create shift table ...<br>";
$SQL = $SHIFT_TABLE;
print "$SQL<br>";
&Do_SQL;
 
[+][-]09/22/09 10:21 AM, ID: 25395180

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09/22/09 10:25 AM, ID: 25395221

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/22/09 10:26 AM, ID: 25395248

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/22/09 11:58 AM, ID: 25396222

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: CGI Scripting, Perl Programming Language
Sign Up Now!
Solution Provided By: nemws1
Participating Experts: 2
Solution Grade: A
 
 
[+][-]09/22/09 01:04 PM, ID: 25396994

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/22/09 01:06 PM, ID: 25397008

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/22/09 01:29 PM, ID: 25397249

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20090824-EE-VQP-74 - Hierarchy / EE_QW_EXPERT_20070906