Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
6answers
184 views

Is a line in a Java program the same thing as a statement?

I'm a Java noob. I've only used it for a few days and I'm still trying to figure it all out. In a program, is a line the same thing as a statement?
6
votes
9answers
342 views

C#, Are these 2 statements identical?

Do the following 2 code snippets achieve the same thing? My original code: if (safeFileNames != null) { this.SafeFileNames = Convert.ToBoolean(safeFileNames.Value); } else { ...
5
votes
3answers
2k views

In SQLite, do prepared statements really improve performance?

I have heard that prepared statements with SQLite should improve performance. I wrote some code to test that, and did not see any difference in performance with using them. So, I thought maybe my ...
2
votes
2answers
54 views

How to access variables inside regex statements? c# 4.0

I have looked everywhere, but I cannot for the life of me figure out how to make a variable inside a regex statement be accessible from elsewhere. If someone could help that would be amazing! Here is ...
2
votes
5answers
177 views

How can I remove one of these if statements and shorten the code?

I have the following code. The only problem is that we run it through a checkstyle program and it comes up with the error Cyclomatic Complexity is 11 (max allowed is 10). I would like to know how can ...
2
votes
3answers
395 views

how to use “if” statements inside pipeline

I'm trying to use if inside a pipeline. I know that there is where (alias ?) filter, but what if I want activate a filter only if a certain condition is satisfied? I mean, for example: ...
2
votes
3answers
328 views

Mysql PDO Prepared statement efficiency

I am taking over a PHP app that uses MySQL PDO prepared statements for each time it runs an SQL statement. I know that Preparing SQL can be more efficient when the you are about to do many iterations ...
2
votes
2answers
157 views

Few questions about PDO and prepared statements

I'm starting to use PDO and prepared statements in my applications, but i have some questions to the pros out there. Hope you can help me! :) When should i use prepared statements? Every query in my ...
2
votes
1answer
665 views

Is there a VB equivalent to C#'s Continue and Break statements?

For sake of argument, how could I do this in VB? foreach foo in bar { if (foo == null) break; if (foo = "sample") continue; //more code //... }
1
vote
5answers
66 views

Launching a website with injeciton protection

I am a new php "developer" and a new member of the SOF site. I am launching a website for the first time and in my online research I have been told that while PHP might be easy at the surface the most ...
1
vote
1answer
69 views

Understanding PHP Prepared Statments

So I have a website, and the user has just logged in and it redirects them to the User Dashboard. I have the user_id in a SESSION so I can use that for my SELECT queries to grab other information ...
1
vote
3answers
148 views

How do I get the result of two select statement in a single row?

I am using two select statments in a php page as follows: $num1 = mysql_query("SELECT SId FROM mtable WHERE Pathogen='$pathogen1' && Topic='$topic1' && Indicator='$ind1' && ...
1
vote
2answers
176 views

Separation of statements in TOAD

I am a long time SQL Server users and am VERY new to Oracle. In SQL Server, I can do the following DROP TABLE Blah; CREATE TABLE Blah(yada int); When I run a similar statement in Oracle, the DROP ...
1
vote
2answers
402 views

Conditional statement for detecting iPhone

I am trying to display something specifically to iPhone users on a web page using conditional statements (like you would with IE). <!--#if expr="(${HTTP_USER_AGENT} = /iPhone/)"--> Hello ...
1
vote
1answer
70 views

mysql bind param needs a persistent(from bind to execution) object?

when i use prepared statement, i see mysql takes a pointer to MYSQL_BIND.buffer For example, to bind an integer i need to provide the pointer to integer rather than integer itself. Does it mean ...
1
vote
2answers
114 views

Program compiles with and without return 0 [closed]

Possible Duplicate: What should main() return in C/C++? This is a pretty basic question, I guess. I've been programming for a year now but a friend of mine surprised me with a rather ...
1
vote
4answers
717 views

Firebird multiple statements

is there any way to execute multiple statements (none of which will have to return anything) on Firebird? Like importing a SQL file and executing it. I've been looking for a while and couldn't find ...
0
votes
1answer
48 views

How to make and exception using “if” in a wordpress php page

I am using a wordpress theme that has a specific layout feature for the blog template anytime "category" is used. The blog template displays the date in a ribbon graphic and there is additional ...
0
votes
4answers
26 views

IF Statement Multiple Answers - Same Result Javascript

Is their a method to have multiple right answers with the same result? function check(code){ if(code == (8 || 9 || 13 || 16 || 17 || 18 || 20 || 32)){ return true; } } I know I can ...
0
votes
0answers
25 views

SQLite Data Browser: Execute more than one statement

I'm using the SQLite Data Browser (on Linux Mint) to mess around with SQL. In the Execute SQL tab I'm trying to run some basic queries. I've created some tables and now I'm trying to insert several ...
0
votes
5answers
99 views

Java, questions about switches and cases?

So I want to do a certain action 60 % of the time and another action 40% of the time. And sometimes have it doing neither. The best way I can think to do this is through switches and making a bunch of ...
0
votes
2answers
128 views

With mysqli and prepared statements can I PASS IN COLUMN NAMES to 'ORDER BY'

I need to be able to use prepared MYSQLI statements for security reasons. I need to be able to ORDER BY COLUMNNAME DIRECTION However, the COLUMNNAME is DYNAMIC as is the DIRECTION (ASC/DESC) When I ...
0
votes
1answer
41 views

Group results where specific ID in a while-loop

Table with data: id score inputid 1 1 1 2 4 1 3 3 1 4 1 2 5 2 2 6 3 5 7 1 6 8 1 6 while ...
0
votes
1answer
38 views

I'm wondering how to add the @synthesize statements for the MovieEditorViewController header file in XCode

The implementation file looks like this: #import "MovieViewController.h" #import "Movie.h" #import "MovieEditorViewController.h" @implementation MovieViewController @synthesize titleLabel; ...
0
votes
7answers
46 views

SQL Statement order by maximum of entries

I have a table called "reports" it looks like: user_id | report_post 1 2 2 2 3 2 4 10 Now I want to list the first three entries at ...
0
votes
1answer
63 views

MySQL evaluating results

I have a funny MySQL query that needs to pull a subquery from another table, I'm wondering if this is even possible to get mysql to evaluate the subquery. example: (I had to replace some brackets ...
0
votes
1answer
59 views

SQL join or what?

I'm an SQL newbie. sorry. i have 3 tables: services, cities, city_services. i need to get all services that are available in a given city (using city_id) from the city_services table, but also want to ...
0
votes
0answers
73 views

MySQLi Only Allowing 256 Characters

I’ve just started to use MySQLi (I normally just use MySQL Connect, etc) and have encountered a problem. If I fetch some data from a table, even if the field is of the type ‘text’, it is truncated to ...
0
votes
2answers
110 views

mysql prepared statements, is this possible?

function fetchbyId($tableName,$idName,$id){ global $connection; $stmt = mysqli_prepare($connection, 'SELECT * FROM ? WHERE ? = ?'); var_dump($stmt); ...
0
votes
1answer
71 views

php,mysql prepared statements

function addAlbum($album){ $connection = mysqli_connect(HOST,USER,PASS,DATABASE); $stmt = mysqli_prepare($connection,'INSERT INTO `'.TABLE_ALBUMS.'` (albumName) VALUES (":album")'); ...
0
votes
1answer
106 views

mysql prepared statements, trouble understanding how it works

i am trying to use prepared statements but having trouble getting it to successfully run. here is my code: function addAlbum($album){ $connection = mysqli_connect(HOST,USER,PASS,DATABASE); ...
0
votes
1answer
173 views

Commas in Javascript if statements?

Sorry for this maybe stupid question, but how can I use commas in if statements? This is the normal part: $("a[rel*=overlay]").overlay({ fixed: false, closeOnClick: false, ...
0
votes
3answers
774 views

SQLite3, combining multiple INSERT statements?

I'm sure there must be an easy answer to this but everything i've googled seems to over complicate things and now im not so sure. So here's what i'd have to do to insert records into my table now ...
0
votes
1answer
76 views

mysql prepared statements stores(caches) result of select?

First, this question refers to c api of prepared statements, and mysql version 5.1.48. I have one program(A) that does "select" and another(B) does "insert/update" I'd like the program(A) that does ...
0
votes
1answer
88 views

Prepared statement puts \ before '

Im using prepared statements to descramble BBcode but for some reason it puts \ before ' when posting. I dont know what causes it, but Im sure it happens when i change the BBcode to html to be put in ...
0
votes
4answers
95 views

SQL Server and Oracle joins tutorials

Question 1: I am learning SQL Server and Oracle joins (inner joins, outer joins...) and case statements syntax. Though I can google for the info, but would like to ask for some sites, links, and ...
0
votes
1answer
309 views

Using prepared statement without ROW_NUMBER() and OVER() functions in Db2

Let's say I have a table T_SWA .This is my prepared statement. Select version from (Select id, version,creator,created_date ROW_NUMBER() OVER(order by created_date) cnt From T_SWA where cnt=3 and ...
0
votes
1answer
76 views

SQL: how to use column name from an outer clause in an inner clause?

How can I use the value from an outer clause inside an inner clause using nested SELECT statements? Eg: SELECT cost AS c, quantity, (SELECT COUNT(1) FROM accounts WHERE cost = c) FROM accounts ...
0
votes
1answer
483 views

How do you access variables using NMake?

I have a makefile with the following code. I'm trying to set a variable in an if statement. It doesn't error, but %OPTION% just prints "%OPTION" (with only one percentage sign) and the $(OPTION) ...
0
votes
2answers
285 views

PL-SQL - Two statements with begin and end, run fine seperately but not together?

Just wondering if anyone can help with this, I have two PLSQL statements for altering tables (adding extra fields) and they are as follows: -- Make GC_NAB field for Next Action By Dropdown begin if ...
0
votes
2answers
867 views

How to use the SQLITE3 LIKE statement

I have problems running a dynamic LIKE statement in my project: this query works like a charm and returns all items with a 't' in there name: const char *sql = "select * from bbc_ipad_v1_node where ...
0
votes
2answers
1k views

SQL — How to combine three SELECT statements with very tricky requirements

I have a SQL query with three SELECT statements. A picture of the data tables generated by these three select statements is located at www.britestudent.com/pub/1.png. Each of the three data tables ...
0
votes
8answers
531 views

How to check if a variable has any value from a given set?

How can I check if a condition passes multiple values Example: if(number == 1,2,3) I know that commas don't work. EDIT: Thanks!
0
votes
1answer
219 views

Get the Actual SQL of a Prepared Statement with mysqli?

Is there any way to get the actual SQL that is the result of preparing a statement when using the mysqli extension? My problem: I am using prepared statements. In all cases, they SHOULD update a ...
0
votes
0answers
337 views

Hibernate, get datas from both tables in a join statement

I want to use below code and want to get datas from both tables, but how? There aren't any association in my hibernate mapping files. SQLQuery query = session.createSQLQuery("SELECT cat.* from cat ...
0
votes
3answers
204 views

PHP Mysqli prepared not creating statement object

I am using the php mysqli extension with prepared statements, but on one query it is not creating the query object. Here is the code: $sqlq = "SELECT id,name FROM productcategories JOIN products ON ...
-3
votes
2answers
62 views

What's the advantage and use of prepared statements in PHP [closed]

Possible Duplicate: PHP PDO prepared statements prepared statements - are they necessary* Recently, heard about php prepared statements. Nearly all hi-rep php developers use php prepared ...
-6
votes
1answer
49 views

Identifying statements [closed]

Simple question. I want to detect the use of Java exception in try- catch statements. Lets say it looks like this: try{ System.out.println(10); } catch(Exception es){ ...