1
vote
1answer
31 views
SubSonic 2.2 SqlQuery object generates very different sql for WHERE…IN statement for SQL Server 2008 and SQL Server 2005
Does anybody have an idea why SubSonic 2.2 SubSonic.SqlQuery object would be generating very different sql for the same C# code when running against SQL Server 2005 or SQL Server 2 …
0
votes
2answers
38 views
PHP syntax error T_ENCAPSED_AND_WHITESPACE
hello all!
i'm starting to work with php basics and i have some problem understanding how mix code with strings.
I found a great and useful style to print string blocks but i don' …
0
votes
3answers
114 views
How do I find the compilation error in this Perl statement?
I have this code:
my $orig_file_size = -s $file ;
Is throwing an error:
syntax error at ftp_4 line 33, near "$orig_file_size)"
Execution of ftp_4 aborted due to compilation err …
1
vote
2answers
49 views
PHP Parse Error; Drupal6 Deployment
I had a Drupal installation at www.example.com/test. Now, it's ready to go live, and I am trying to move it to www.example.com. I changed the line in sites/default/settings.php to: …
0
votes
1answer
187 views
syntax error: _stdcall — Help? Please?
Hello,
I am trying to use this code to define the APIs that are needed to communicate with a card reader. Below is the header file (complete). [AtUsbHid.h]
It is throwing severa …
1
vote
2answers
68 views
Cakephp generating xml error - blank space
Hi,
I am trying to generate a dynamic xml document in CakePHP to output to the browser.
Here is my controller code:
Configure::write ('debug', 0);
$this->layout = null;
heade …
1
vote
2answers
140 views
Why is Maya 2009 TreeView control giving a syntax error on drag?
I'm using the TreeView control in Maya 2009 but I'm getting a syntax error on drag and drop. My code is as follows (simplified for brevity):
class View(event.Dispatcher):
def …
0
votes
4answers
51 views
SQL Syntax Error - PHP/MySQL
Can anyone tell me what's going on here. I'm not sure why this code is not working and throwing the following error:
You have an error in your SQL syntax, check the manual that c …
-3
votes
8answers
155 views
please tell me why “else” is a syntax error here.
import java.util.Scanner;
public class SW {
/**
* @param args
*/
public static void main(String[] args) {
int length;
int width;
int number;
int perimeter;
int area;
Scan …
0
votes
1answer
64 views
Why is my if statement not firing?
I have the following Objective-c Function
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSUInteger section = [index …
0
votes
1answer
77 views
Totally Unhelpful Error Messages [closed]
Possible Duplicates:
The funniest/weirdest error message you’ve got from a development environment/application
Most daunting error message?
Just for laughs: who's …
0
votes
2answers
36 views
MySQL transaction query help
This problem is baffling me:
BEGIN;
INSERT INTO sub_users(user_id, email)
SELECT user_id FROM users WHERE email='someemail@email.com', '$email';
COMMIT;
Normally, I have multip …
0
votes
2answers
45 views
SQL Syntax error on table update
Hello all,
Why is that I'm getting a syntax error on the following SQL statement under sqlite?
Error reads:
SQL Error: near "SET": syntax error
UPDATE nova
SET Nome …
-2
votes
1answer
102 views
Why does SQLite complain about the syntax of my prepared statement?
I'm having trouble getting a prepared statement in sqlite3 to work. I'm working with Perl and the Perl DBD framework. Below is the code I use:
#This is a function I have defined
s …
4
votes
2answers
133 views
How to make this Python program compile?
I have this Python code:
import re
s = "aa67bc54c9"
for t, n in re.findall(r"([a-z]+)([0-9]+)", s)
And I get this error message when I try to run it:
File "<stdin>" …
