Search Result

Collapse
12 results in 0.0041 seconds.
Keywords
Members
Tags
syntax error
  •  

  • drvcm
    started a topic Kindly, help fixing error 1064

    Kindly, help fixing error 1064

    Hello everyone and thank you in advance,

    This is been driving me crazy, in running the following query, I get the error 1064, below please find the full query and the error message.
    There must be errors everywhere becuase I tried removing one line at a time to pinpoint the error, and the error comes up the same on the lines I did not remove.

    Note: the syntax error is in the:
    Tabellenstruktu r für Tabelle...
    See more | Go to post

  • Syntax error (missing operator) in query expression 'Serial Number = 'L3FW341''.

    Syntax error (missing operator) in query expression 'Serial Number = 'L3FW341''.

    The Serial Number field is declared as text in Access Db.
    I am not sure which operator is missing in my command!

    Below is my code:


    Code:
    Cmd1 = New OleDbCommand("Select * from Asset Details where Serial Number = 'L3FW341'", Conn)
            Da = New OleDbDataAdapter(Cmd1)
            Db1 =
    ...
    See more | Go to post
    Last edited by Stewart Ross; Dec 26 '11, 04:09 PM. Reason: Changed italic to code tags

  • Syntax error (missing operator) in query expression...

    Hi All,

    I am getting the following MS Access error:

    Syntax error (missing operator) in query expression '(((BOQ.Descrip tion) =Site Establishment Dismantle))'

    For the following VBA statement:

    Code:
    Dim name As String
    name = "Site Establishment Dismantle"
    Set rs1 = db1.OpenRecordset("select BOQ.Description from BOQ where " & " (((BOQ.Description) ="
    ...
    See more | Go to post

  • declaration terminated incorrectly... what could be the problem?

    Hi! I'm new in turbo C... and I'm trying to make a Program to calculate the product of two numbers.
    please help me! I'm using Turbo C v3.0

    this error occured:
    25:Declaration terminated incorrectly

    Code:
    #include<stdio.h> 
                                                                
    int a, b, c;                                                                 
    int product (int
    ...
    See more | Go to post

  • declaration terminated incorrectly... what could be the problem?

    Hi! I'm new in turbo C... and I'm trying to make a Program to calculate the product of two numbers.
    please help me! I'm using Turbo C v3.0

    this error occured:
    25:Declaration terminated incorrectly

    Code:
    #include<stdio.h> 
                                                                
    int a, b, c;                                                                 
    int product (int
    ...
    See more | Go to post

  • SQL query to find covering staff - Syntax error

    Hi Everyone,

    To my understanding this code should work; however there's a syntax error somewhere within the sub-query and I cannot find it. It's very possible that my understanding is insufficient and there's a better way to achieve my ends, hence a little background on the motivation behind the query:

    I run a staffing database for my department. My boss wants a report that can be run to identify which staff members...
    See more | Go to post

  • ilya Kraft
    started a topic Unknown Syntax Error, When Echoing Out Content
    in PHP

    Unknown Syntax Error, When Echoing Out Content

    Hello I have content that I want to echo out, but I came across a syntax error on line 31, which I can't figure out.
    I will post full code here just in case it is needed to answer a question, But The problem is on line 31.
    line 31:
    Code:
    <input name=\"pm_sender_id\" id=\"pm_sender_id\" type=\"hidden\" value=\"<?php echo $_SESSION['id']; ?>\" />
    Full...
    See more | Go to post

  • RSchrand
    started a topic Another One of Those T_DNUMBER Errors
    in PHP

    Another One of Those T_DNUMBER Errors

    First, I am stuck using GoDaddy because that's who my client went with. I'm almost thinking this is related to their address for the database hosting, but I would like confirmation on that.

    Having uploaded the database and then the site, when accessing the linked pages I get the following error message:

    Parse error: syntax error, unexpected T_DNUMBER in D:\Hosting\#### ##\html\Connect ions\saveFairgr ounds.php on line 9...
    See more | Go to post
    Last edited by Markus; Nov 14 '10, 05:45 PM. Reason: Added [code][/code] tags

  • Syntax error(missing operator) in query expression

    The problem is fairly complex. I have a table where I can add records. These records have several parts. Each record consists of ID, Date, Train Number and many more. I have a form where I can add records. This form has two pages. One for adding records ( this part works fine ) and then I have another form where I can search records by filtering. The filtering happens by using an options group with different options button. I added a button...
    See more | Go to post

  • shashahayes
    started a topic Error C2061: syntax error
    in C

    Error C2061: syntax error

    I am getting an error on this line, does anyone have any suggestions?

    here is the error
    here is line 25

    Code:
      if area > 750 then charge = 200
    1>Furniture.cp p
    1>c:\users\jims ha\documents\vi sual studio 2008\projects\f urniture\furnit ure\furniture.c pp(25) : error C2061: syntax error : identifier 'area'
    1>Build log was saved at "file://c:\Users\JimSha \Documents\Visu al...
    See more | Go to post
    Last edited by shashahayes; Mar 6 '10, 07:25 PM. Reason: missing info

  • syntax error before { line 29 and syntax error before } line 45? gcc mac.

    Code:
    #include<stdio.h>
    int main(void)
    
    {
    	
    	double Yeild, Heads, Seedhead, Size, unit;
    		
    		printf("Please enter 1 for US customary Units or 2 for metric units: ");
    		scanf("%lf", &unit);
    		if(unit=1) 
    		{
    		
    		printf("Please give the number of heads per square foot: ");
    		scanf("%lf", &Heads);
    ...
    See more | Go to post
    Last edited by Banfa; Feb 25 '10, 12:15 AM. Reason: Added [code] ... [/code] tags

  • tpgames
    started a topic syntax error I'm not finding

    syntax error I'm not finding

    I can't get this script to recognize that the image name is
    Image53.jpg, Image54.jpg, etc. instead of 53.jpg, 54.jpg.
    What am I doing wrong? I'm trying to not have to change a thousand image names. :D

    Code:
    //change x=0 to x=1 change current= 0 to current = 1 Works!
    
    // The 1 = the first image number for both X and Current!
    
    imgName = new Array()
    for (x=53; x<=100; x++) {
    imgName[x] = x
    ...
    See more | Go to post
    Last edited by tpgames; Jun 21 '09, 06:19 PM. Reason: more data needed.
Working...