the semicolon is often used to separate multiple statements (for example, in Perl, Pascal, PL/I, and SQL). In other languages, semicolons are called terminators and are required after every statement (such as in Java, and the C family).
1
vote
1answer
177 views
how to make hibernate hbm2ddl generate sql with semicolon?
I use hibernate hbm2ddl to generate db schema script from entity classes. it works well but each line ends without a semicolon, which makes me have to manually add them. Is there any way to save me ...
2
votes
2answers
622 views
How to execute mysql code with semicolon in php?
The code is
INSERT INTO `semicolon` VALUES ('1', 'a:1:{s:4:\"size\"';\s:2:\"24\";\}');
As you might see in double single quotes there is ; - semicolon and it splits the code because its the ...
0
votes
1answer
116 views
PHP/MySQL - Random semicolon output
I have this script to outpout everything from table called Articles.
If I load this script there are random semicolons coming at front of my table like this ; ;
This is my code:
...
2
votes
2answers
416 views
What is the effect of a semicolon at the end of a line?
What is the effect of having a semicolon at the end of a line of code?
I've seen this in some code I've taken over:
Printer.Print "Customer: " & strCustomerName & " (" & strCustomerCode ...
2
votes
2answers
217 views
Why this executes without semicolon?
here is simple PHP code which executes without semicolon
<?php
for($a=1; $a<=10;Print $a,$a++)
?>
how this is possible?
0
votes
1answer
1k views
Behavior of a Semicolon after for Loop Declaration
Most for loops have the syntax:
for(initializer; condition; incrementer) {
// code
// code
}
If theres only one line of code, it may follow this syntax:
for(initializer; condition; ...
0
votes
1answer
108 views
EBNF Colon and Semicolon usage?
I have no idea what a colon means in BNF or EBNF. It's not listed anywhere on the internet. Anyway, my professor decided to assign it in the homework. I think he is confusing it with a semicolon or ...
0
votes
2answers
4k views
Syntax error 1084: Expecting semicolon before leftbrace
Did make a Flash banner and it al works fine. But when i want to put with the rectangle tool a button over the whole banner and put in the action tab the code:
Symbol16.onRelease() {
...
1
vote
7answers
659 views
Semicolon after double slash in C
I have a question about comments in C language.
When we write for example
//this is the first step
This means a comment.
But when we write
//this is the first step;
Does this also mean a ...
7
votes
1answer
4k views
In Bash, when do lines need to be terminated with a semi-colon? [duplicate]
Possible Duplicate:
Semicolons superfluous at the end of a line in shell scripts?
In which situations in Bash scripts do you need a semicolon at the end of a line? I had thought it was just ...
0
votes
6answers
626 views
Split semicolon file into arrays, something strange
I want to split a word string that every word is splited with a semicolon into a array.
Why is the length of this string just 2? How can I make the length of the array to always bee 6, because every ...
-1
votes
1answer
731 views
error C2146: syntax error : missing ';'
I hate to ask for help on such a common error but I've been staring and prodding at my code for two hours trying to find what the compiler says is a missing semi-colon and unspecified type:
error ...
1
vote
4answers
214 views
Does a semi-colon matter in JavaScript [duplicate]
Possible Duplicates:
do we need semicolon at the end
Why use semicolon?
Are semicolons needed after an object literal assignment in JavaScript?
Should I use semi-colons in javascript?
...
0
votes
2answers
276 views
MSVS unexpected class error: Didn't forget the semicolon though
In my code below, I get this compiler error error C2236: unexpected 'class' 'Pawn'. Did you forget a ';'? But as you can see plainly, I'm not missing a semi colon... am I? I used to think it was a ...
-1
votes
2answers
311 views
Are semicolons mandatory in javascript statements?
I want to know, is this legal?
function test()
{
alert ("hello")
$("#loading").show();
}
Or should I write this instead:
function test()
{
alert ("hello");
$("#loading").show();
}
...
6
votes
2answers
265 views
When/why did Lisps start using semicolons for comments?
What is the history of the semicolon being used for comments in Lisp and its dialects?
A guy in our group thought Clojure's use of the semicolon was an in-your-face to Java & Co. at first.
I ...
2
votes
3answers
197 views
What is the logic of C++ punctuator usage?
I am trying to discern the logic behind punctuator usage in C++. Particularly the semicolon.
This is my progress so far, with some questions:
A declaration introduces a type, class or object into a ...
1
vote
2answers
180 views
I must be missing something - semicolon error that makes no sense
This is the source of my page. I'm getting a mysterious CS1002 error. Been looking at this for awhile now and can't figure it out.
<%@ Page language="C#" validateRequest=false %>
<%@ Import ...
1
vote
1answer
1k views
Semi-colon as separator in jasperreport csv editions
I want to makes my jasperrepport's csv documents values separated with semicolons instead of commas.
I've found net.sf.jasperreports.export.csv.field.delimiter parameter which works if i adds it on ...
-1
votes
1answer
195 views
What is the escape character for semi-coloon(;) in xslt
can't seem figure out the escape character for semi-colon(;)
i'm trying to put this line in my head tag
<META http-equiv="Content-Type" content="text/html; charset=UTF-16">
but the ...
10
votes
2answers
2k views
Semicolons superfluous at the end of a line in shell scripts?
I am editing this shell script (by somebody else) which contains the following.´:
case $1 in
0 )
echo $1 = 0;
OUTPUT=3;;
1 )
echo $1 = 1;
OUTPUT=4;;
2 )
echo $1 = 2;
...
1
vote
2answers
286 views
missing semicolon breaks script unexpectedly
NOTE: originally, i thought the issue was caused by something more complex; i see now (and edited the title and sample code) that the only difference is the presence or absence of a semicolon. that ...
10
votes
4answers
907 views
Vim smart insert semicolon
Is there a Vim plugin that can handle smart semicolon insertion, like the one in Eclipse?
Example (pipe character is insertion cursor):
foobar(|)
I type a semicolon:
foobar();|
Similarly:
...
2
votes
1answer
628 views
Matlab: quickly finding lines with missing semicolons [duplicate]
Possible Duplicate:
Is there a way to fix all MATLAB mlint messages at once?
If one forgets to place a semicolon at the end of a line, Matlab just prints the output of that line to the ...
2
votes
2answers
228 views
Aptana complaining about JavaScript semicolons
Why does Aptana with either validator (Mozilla or JSlint) complain about this code:
var collectionOfValues = {
key0 : value0;
key1 : value1;
key2 : value2;
};
It works fine with , but ...
-2
votes
3answers
529 views
How can I write readable Python code when there are no curly brackets and semicolons? [closed]
I love the semicolons and curly brackets from C and PHP.
Now I am starting to program with Python and when the code gets bigger it seems to me very messy without them(the curly brackets and ...
2
votes
3answers
241 views
Why no semicolon at the end of js expression in javascriptmvc app?
I am starting to learn javascriptmvc, and in code samples, I see code without semicolons at the end of expressions. Does this count on automatic semicolon insertion or am I missing something? code ...
10
votes
12answers
3k views
What is semicolon in c++?
Roughly speaking in C++ there are operators (+ , - * [] new ...), identifiers (names of classes, variables, functions,...), const literals (10, 2.5, "100",...), some keywords (int, class, typename, ...
1
vote
5answers
246 views
Javascript: Situation with no semi colon needed?
I am setting up some data to do an ajax post and the code looks like this.
var data = {}
data.someId= 3;
data.anotherId = 4;
and this works fine. But why don't I need a semi-colon at the end of the ...
1
vote
2answers
733 views
C# build json string that has semicolons in the data
I am creating a string as follows:
string title = "Q:hello";
I then want to embed this string in a JSON string to send to the client. How do I escape the semicolon? I don't want to use a library.
...
0
votes
2answers
305 views
What are the criteria for automatic semicolon insertion? [duplicate]
Possible Duplicate:
What are the rules for Javascript's automatic semicolon insertion?
JavaScript befuddles me with its implicit line termination. It's a very C-like language, except ...
1
vote
1answer
695 views
why the semicolon couldn't place in the CommandText of a OracleCommand when C#
why the semicolon(';') couldn't place in the CommandText of a OracleCommand when C#
just lick below
string sql = "select * from table1;";
OracleCommand oc = new OracleCommand(sql , con);
...
1
vote
4answers
422 views
why must i don't put a semicolon at the end of class declaration in c# [closed]
In c# class declaration
class thing
{
...
}
maybe this question is a little silly.Why at the end of class declaration don't inlucde the semicolon.It's really different from c plus plus.you can ...
1
vote
3answers
168 views
I'm getting a semicolon error in PHP and can't understand why it's a problem
This is the error message:
Parse error: syntax error, unexpected ';' in /home1/goldensu/public_html/camira/contactForm.php on line 155
and this is the code:
$sendMessage = "Someone is ...
4
votes
1answer
481 views
Why do I need semicolons after these imports?
I never really used Traits much in Scala so far, and I want to change this. I have this code:
import tools.nsc.io.Path
import java.io.File
trait ImageFileAcceptor extends FileAcceptor {
override ...
0
votes
5answers
967 views
Why do we add a semicolon in java PATH variable and not for the JAVA_HOME variable?
I have a very basic question to ask, that why do we need to add a semicolon at the end of PATH variable and why don't we add semicolon in JAVA_HOME variable?
I read lot of books and forums,
To ...
2
votes
2answers
898 views
Wix: Set semicolon to CustomActionData
I have a problem with setting data that contains semicolons to CustomActionData property.
By default CustomActionData class uses semicolon as DataSeparator and it breake my data, when it contains ...
2
votes
3answers
707 views
Use of ({ … }) brackets in macros to swallow the semicolon
Often, in macros, you will see people use a do { ... } while(0) to swallow the semicolon. I just came across an example where they use ({ ... }) instead, and it seems to not only swallow the ...
1
vote
7answers
646 views
php turn line break into semicolon
I have a csv file with this:
software
hardware
educational
games
languages
.
.
.
I need a new csv file with:
software;hardware;educational;games;languages;....
How can I do that?
I'm doing:
...
0
votes
9answers
192 views
why doesn't ; ; result in a build error in VS?
no matter how much ; you placed at the end of a c# code line, the compiler will not show an error and the build is successful
in almost all other languages like c,c++ and java.. this is not allowed.
...
6
votes
7answers
2k views
Why is a semicolon required at end of line?
Why does this work:
a = []
a.push(['test']);
(function() {alert('poop')})()
But this gives the error "number is not a function":
a = []
a.push(['test'])
(function() {alert('poop')})()
The only ...
6
votes
6answers
1k views
javascript open brace in the same line
I remember there is a convention/recommendation to put opening brace in the same line, because the way Javascript add semicolon or something.
//OK
function blah(){
};
//Probably not OK
function ...
8
votes
4answers
848 views
Should I put a Semicolon (;) when I use onclick=“”
Should I put a Semicolon (;) when I use onclick=""
<p onclick="closeLightBox();">Click<p>
or
<p onclick="closeLightBox()">Click<p>
8
votes
6answers
1k views
Does C# allow double semicolon ; ; if so, are there any special ways?
I am writing a statement and it compiles, but the compiler [VS] never tells me that I put the semicolon two times.
This means in ASP.NET MVC 3
return Json(mydata);;
return Json(mydata);
Both of ...
5
votes
3answers
954 views
Why do some languages need semicolons?
I understand that semicolons indicate the end of a line in languages like Java, but why? I get asked this a lot by other people, and I can't really think of a good way to explain how it works better ...
1
vote
5answers
328 views
Is it always safe to insert a linebreak after a semicolon in javascript?
I am having an issue checking in a minified javascript file into Clearcase. The file in question is a single line, well over the 8000 character limit that Clearcase imposes.
I know that javascript ...
2
votes
1answer
328 views
.NET Uri class query missing the semicolon reserved character, simple workarounds?
This http://msdn.microsoft.com/en-us/library/system.uri.query.aspx and this ietf. org/rfc/rfc1738 .txt (pardon the formatting, can't post more than one url) suggest that the .Net Uri class does not ...
0
votes
4answers
430 views
What’s the purpose of semicolon (;) in XmlAttribute:: AttributeName (DotNet)
Greetings,
I’m trying to solve one programming mystery (to me). I have searched goggle but I have found nothing about the use of semicolon in the AttributeName property of XmlAttribute. I’m working ...
1
vote
4answers
165 views
I've heard Javascript inserts “;” automatically and that may cause problems [duplicate]
Possible Duplicate:
What are the rules for Javascript's automatic semicolon insertion?
I've also heard that Go insert them too, but they followed a different approach
How does ...
16
votes
4answers
4k views
Can you use semicolons in Ruby?
When learning Ruby, I noticed that in all the examples there are no semicolons. I am aware that this is perfectly fine as long as each statement is on its own line. But what I am wondering is, can you ...