The tag has no wiki summary.

learn more… | top users | synonyms (1)

0
votes
0answers
15 views

Retrieving the value in Rails from a RETURNING clause on a DML statement?

How can I call a DML statement using Rails' ORM like the following: INSERT INTO table (c1) VALUES (1) RETURNING c1 ; and capture the returning value?
3
votes
3answers
38 views

Java what .read() function returns ? And Java IOException

I have this line of code.And numbers.txt has a string of these numbers : 123456789 .Running it prints : 235689 . Why? What does .read() do ? And when 'while(fin.read() > -1 )' is TRUE? Also about the ...
0
votes
1answer
21 views

postgresql returning updated column

I'd like to log any table. So I need to know what columns changed. Could you give me some tips for hoping result? I only want updated column. table: test col1 |col2 | col3 ------+------+------ a ...
0
votes
1answer
26 views

Python Child/Parent classes, Child Class Returning String Twice?

Easy question and probably very obvious to one of you, but Im unsure of why this happends. So here are the three python files Ive made. Main Char class: class Character(): """ This is the ...
0
votes
0answers
19 views

Returning to app and restore data

I'm sure this question is very stupid and has been asked several times, but I wasn't able to find a solution. I'm trying to create a little 2d board-game, it has a MainActivity which has a ...
3
votes
5answers
137 views

Why strrchr() returns `char*` instead of `const char*`?

The function char* strrchr(const char *str, int ch) returns a pointer (char*) within str (const char *) where the last occurrence of ch is located. So we can write the following code without any ...
2
votes
1answer
41 views

JQuery/Mootools offset returns null

i am using jQuery and mootools librarys and i have this error TypeError: offset is null [Parar en este error] if (jQuery(window).scrollTop() > offset.top) { this is the code: <link ...
0
votes
5answers
130 views

Returning char pointer from C function

I need help to check if my code is correct. The code is too big to include entirely, so I will paste only the affected parts. char *tmp; tmp=Decode_URL(tmp_data); sprintf(Data,"%s",tmp); ...
1
vote
1answer
45 views

How to transform an R Matrix into an xts/zoo object?

aI'm having a problem transforming an xts derived R Matrix back into an xts object after running the returns function. Here's what I've got... > class(xtsData) [1] "xts" "zoo" > ...
0
votes
1answer
52 views

no return value of call procedure mysql

I have a procedure in mysql and it has 4 parameters as Input and 3 parameters of OUTPUT and one param of OUTPUT doesn't return nothing (null). DELIMITER $$ drop procedure if exists `cierreMes`$$ ...
0
votes
3answers
57 views

AJAX Call Returning after getting $_POST[] Value

My problem is this. I have this ajax call: $.ajax({ url: "./changepassword_ajax.php", type: "POST", data: formData, processData: ...
1
vote
5answers
114 views

How can I return None in a function that has return type?

I have below code #include<iostream> #include <vector> using namespace std; template<class T> class Stack { private: vector<T> stack; public: T Pop() { ...
0
votes
1answer
47 views

Update a table and display updated rows with a single SQL command

I need your help with PostgreSQL. I have a homework in which I have to update a column of a table and display all the information that has been updated, but I have to use a single command to do all ...
2
votes
4answers
69 views

PHP - Array size returns 1?

Under Return Values for Count() Returns the number of elements in var. If var is not an array or an object with implemented Countable interface, 1 will be returned. There is one exception, if var ...
0
votes
4answers
47 views

Why does this php query prints nothing

I have a problem, I have the following PHP code, which is supposed to get the "first" and "last" values of the column where the "id" matches what is in the URL. For instance, when the URL is ...
0
votes
0answers
40 views

Ajax works perfectly on localhost BUT not returning data once moved online

This has puzzled me greatly. I have a small ajax setup to take user entry and process some information and return information to the user. It works perfectly on localhost. But once moved to test ...
0
votes
3answers
61 views

Segmentation Fault in Simple Offset Encryption

Alright guys, this is my first post here. The most recent assignment in my compsci class has us coding a couple of functions to encode and decode strings based on a simple offset. So far in my ...
0
votes
3answers
70 views

How could I get the output from a .jsp file in PHP?

I'm trying to do, for example, http://www.minecraft.net/haspaid.jsp?user=notch, which returns true. I want to basically make ?user=$somevariable from PHP and read whether the result returns true or ...
5
votes
1answer
44 views

ObjC: Error handling… what to return

Apologies for such a newbie question. I have written a class method that takes three strings and returns a substring. I have written conditional statements that only allow the substring to returned ...
0
votes
3answers
62 views

Iterator returns an Object and not the desired object

public class Facture { private Client client = new Client();; private float Paiement; private float soustotal; private float tps; private float tvq; private float ttc; private List<LigneFacture> ...
0
votes
1answer
90 views

Prestashop Error In Order Returns

I'm getting an errror in Back Office > Orders > Merchandise Returns when trying to change the return status from "Waiting for Confirmation" to "Waiting for Package". I've attached screenshots. Any ...
0
votes
1answer
246 views

how to fully specify the type of a returning parameter abap

noobie learning abap here. I've got a method that imports a structure, creates an internal table out of the structure, and returns this table. I've implemented it as an exporting method, but now I ...
1
vote
1answer
31 views

Why div count keeps returning 0

I have a real simple problem that I can't seem to find a real simple answer to. The simple problem is that my jQuery div count keeps returning 0, I have no idea why. I've tried .children(), to no ...
0
votes
4answers
217 views

PostgreSQL and JDBC: Is `UPDATE table … RETURNING … INTO` supported?

I have a table with [primary key counters] for [per page comments in another table]. These primary keys are per page: for each page, comment IDs start on 1. I'd like to atomically allocate 10 IDs to ...
0
votes
2answers
77 views

Rails 3: Search method returns all models instead of specified

What I'm trying to do: I have a model "Recipe" in which I defined a method "search" that takes an array of strings from checkboxes (I call them tags), and a single string. The idea is to search the db ...
0
votes
1answer
89 views

How do I loop a portfolio return calculation for multiple periods in matlab?

I have the following data/sets (simplified version to make the example clear): 3*10 matrix of stocks identified by a number for a given period (3 stocks (my portfolio) in rows * by 10 days (in ...
0
votes
1answer
117 views

Monodroid - Camera Activity isn't returning

I'm trying to take a picture in one of the activities of my application using the Camera, save it and return the file location for further usages. However, when I press the ok button in the camera ...
0
votes
2answers
74 views

Trouble passing parameter variables

I have been having trouble with constructing my parameter passing. I have tried setting the variables String pluralizedWord = makePlural(word),etc. but that didn't help. I have been getting a cannot ...
0
votes
1answer
99 views

Android: ComponentInfo: java null pointer exception after returning to App

My app works without any problem until close my app and return after more than 15 min aprox it crash, if I return to my App after only 5 min all seems right. I can't find the problem please help!!! ...
0
votes
3answers
133 views

returning reference to temporary c++

SongPart mtm::SongStructure::getPart(int index) const { assert(index >= 0 && index < num_of_parts); return song_parts[index]; } const SongPart& mtm::Song::operator[](int ...
2
votes
3answers
66 views

explain unfamiliar python syntax — returning into a list

I totally understand what the right side of this expression is doing. But what's it returning into? In other words, whats the left side doing? [records, remainder] = ''.join([remainder, ...
-1
votes
1answer
142 views

Returning an ArrayList object [closed]

I create an ArrayList inside a method and return it to the calling one. If I see the contents of the List from the calling method, the values are all -1; Although the values in the called method are ...
0
votes
2answers
73 views

PHP returning references

I have read the section of returning references in PHP by putting the ampersand in both the function definition and variable assignment. But, I have yet to find examples of "returning references" in ...
0
votes
2answers
229 views

NZEC in python on spoj for AP2

I wrote the following two codes FCTRL2.py import sys; def fact(x): res = 1 for i in range (1,x+1): res=res*i return res; t = int(raw_input()); for i in range (0,t): ...
1
vote
3answers
107 views

Java indexOf returns -1

So I am reading in a line from a file, that looks like: Snowman:286:355:10 And this is the first part of the code I wrote to separate the data and place it into arrays. for (int i = 0 ; ...
0
votes
2answers
134 views

Cannot access second form element with javascript

The problem is, userid is grabbed just fine, but the second element "passwordfield" and all the remaining element ALWAYS returns null. I've tried all methods for grabbing this element value but they ...
1
vote
2answers
72 views

java: what is this method returning?

public class A extends B { private A(B b) { super(b); } public static A parse(string s) // question 1 { B result = D.parse(s); return new A(result); // ...
-6
votes
1answer
121 views

How to write a method that accepts a String as a parameter and returns that String with each pair of adjacent letters reversed [closed]

Here's the code I have now: public static String swapPairs(String s) { String result = ""; for (int i=0; i<s.length; i++){ I'm not sure if this is heading in the right direction or not, ...
1
vote
2answers
84 views

exec() command on mac osx returns 5

I am trying to execute a thumbnail converter script phantomjs. From my terminal it works fine but in my web page returns 5 code. Is that a problem with the permissions? I am using php 5.3 + MAMP ...
0
votes
1answer
59 views

Return two different values in C (structs, lists) [duplicate]

Possible Duplicate: returning multiple values from a function I'm trying to make a doubly linked list in C. I have a main function that calls another function to create nodes and build the ...
0
votes
1answer
717 views

How to return primary key from oracle merge query

I want to return the primary key from an oracle merge query. I'm using a single statement to insert if not exist and I don't want to use procedure or function to do so.. this is the sample query ...
0
votes
1answer
1k views

VBA-Excel return multidimensional array from a function

I'm trying to write a function which returns a multidimensional array. The problem is that the size of the array isn't defined. My array is initialized in the function below my_list() Dim my_list() ...
1
vote
1answer
427 views

PHP, Postgres help using RETURNING

I think I understand how PostgreSQL and RETURNING work - I've found many, many resources. If I'm catching on, it would look something like "INSERT INTO table (column2, column3) VALUES ('value1', ...
1
vote
0answers
173 views

Attempting to get executable path of process returns null

I have a piece of C# code that goes through all the running processes, finds a specific one, and gets its ExecutablePath. Problem is that, although it manages to find the wanted process, attempting to ...
3
votes
7answers
134 views

How to properly return an operator (*,/,-,+) in C++?

EDIT - thank you all for the help. I didnt even think of doing the switch statement. For some reason I keep thinking C++ is a lot different than Java... it makes a lot of sence with a switch.. thanks ...
3
votes
2answers
60 views

Date from MySQL returns NULL

This is my table structure: Datum (Timestamp) |IP |X (times visited) 2012-09-08 14:09:44 * 10 2012-09-08 13:20:01 * 34 I'm getting the data from mySQL using: $Darray=array(); ...
0
votes
3answers
64 views

Return filename if a string is found in the file.?

I want a code which returns filename if given strings are found in the file. please help..
0
votes
2answers
177 views

Pure Jquery Web Service Response

I have noticed many code examples of calling a web service which returns json data but the implementation usually involves a back-end language like PHP. Does anyone know of a good tut on an all jQuery ...
5
votes
1answer
750 views

python multiprocessing: some functions do not return when they are complete (queue material too big)

I am using multiprocessing's Process and Queue. I start several functions in parallel and most behave nicely: they finish, their output goes to their Queue, and they show up as .is_alive() == False. ...
0
votes
0answers
96 views

Insert and update in the same statement

IBM DB2 9.7+ if a have a table with some interval of times, startTime and endTime. And for some entries i want to split those periods of time. I could do Insert into my_table newStartTime, endTime ...

1 2