The temporary tag has no wiki summary.
1
vote
0answers
27 views
Temporary fields in Firebird
Is there temporary fields in Firebird 2.5? When I:
INSERT INTO table (..., tmp, ...) (..., val, ...)
I need something like this in before-insert trigger:
...
new.field1=(SELECT t2.id FROM table2 ...
0
votes
1answer
26 views
fully update a temporary table sql
i have a problem: i am trying to fully update a temporary table (in a stored procedure) in SQL Server 2012, but it only updates the first entry that matches my description. here is the code:
create ...
2
votes
2answers
85 views
Life span of stack allocated data in c++
I have c++ code that works properly in Debian (gcc (Debian 4.7.2-5) 4.7.2), but fails in Ubuntu (gcc (Ubuntu/Linaro 4.7.2-2ubuntu1) 4.7.2). I'm getting stack space reused between variables, similar to ...
0
votes
2answers
27 views
Implementing a delayed association in Rails
Here's a programming challenge I'm facing. I'm new at this...
I'd like to do this the Rails Way, with elegant code, and learn something in the process.
In my app, Players track an Action (25 ...
0
votes
1answer
29 views
Particular form of bind temporary to const reference has no effect
Given
struct A
{
void a(void) { std::cout << "A" << std::endl; }
};
const A &a = A(); /* Make a copy of A and bind to a */
const A &b(A()); /* Does nothing */
a.a(); /* ...
-1
votes
0answers
28 views
creating Teradata Stored Procedure with Global Temporary table [closed]
Teradata is not allowing me to compile the stored procedure when Create global temporary table statement exists. Can any one help me how to proceed with this.
0
votes
0answers
25 views
VBA storing pivot item value in a variable
Hi I am trying to store value of pivot item in a variable and unable to do so. The pivot items are dates. My code as follows:
With StatsAppViewPt.PivotFields(CreationDate)
...
1
vote
1answer
60 views
How to use members of temporary instance in C++?
I have an object A with copy constructor and assignment operator which has a member QVector. I use it that way:
QVector<B*> x = GetA().GetVector();
x.at(0)->doSomething();
Now I want to do ...
0
votes
1answer
56 views
Returning reference to temporary, const differences
When the following code is compiled by g++ or clang++, I get the warnings "returning reference to temporary object" (g++) and "returning reference to local temporary object" (clang++).
Can someone ...
0
votes
1answer
40 views
jquery change div height temporary / until user clicks anywhere else
I have a #content div with a default css height: auto. After clicking on a button and submitting a form, I change the height of my content-div to 300:
if(msg == 'OK')
{
result = '<div ...
0
votes
2answers
57 views
MySQL: Auto increment temporary column in select statement
How do I create and auto increment a temporary column in my select statement with MySQL?
Here is what I have so far:
SET @cnt = 0;
SELECT
(@cnt =@cnt + 1) AS rowNumber,
rowID
FROM myTable
...
5
votes
3answers
181 views
C++ function returns a rvalue, but that can be assigned a new value?
The code is as follows:
#include <iostream>
using namespace std;
class A {
};
A rtByValue() {
return A();
}
void passByRef(A &aRef) {
// do nothing
}
int main() {
A ...
0
votes
1answer
51 views
How to know the usage of temporary tablespace in Oracle
I am trying to compare two tables which are very large in my system(Oracle 10g).
The way I used to compare is the "MINUS" operation.
Because of the large size of tables, I want to know the usage of ...
0
votes
2answers
125 views
insert item to the front of a linked list? python
so I've been trying to insert an item to the front of a linked list, and it sort of works, but not fully. Here is what I have so far (there are more methods in the LinkedList class, but I omitted them ...
0
votes
1answer
29 views
How to run logic over several large apache log files in Python?
I have a bunch of apache log files, which I need to parse and extract information from. My script is working fine for a single file, but I'm wondering on the best approach to handle multiple files.
...
1
vote
3answers
114 views
Reference to an unnamed temporary object (life time)
After reading this answer from ildjarn, I wrote the following example, and it looks like an unnamed temporary object has the same life time as its reference!
How come this is possible?
Is it ...
-1
votes
2answers
47 views
Temporary Table [closed]
Can I create temporary table within case statement..?
if yes please explain me with example.
actually I want to do something like this..
declare @a int = 1
select case when @a = 1 then
'yes'
else
...
0
votes
0answers
33 views
Silly error while using Oracle temporary table and Entity framework
When I run my function in 1st and 2nd time, there as no data. But when I run in 3rd time there are 15 record. Why?
I'm using store procedure in Oracle to insert data to temporary table. Then I create ...
0
votes
1answer
105 views
c++ custom type vector optimization
I have an A class and it has a private int _i member. I want n number of A instances to be stored in a vector. Thus, i gave an initial capacity to the vector. Also, i want to hold objects with ...
1
vote
2answers
96 views
Why is the destructor called before the move constructor when returning a temporary (rvalue)
I suspect I don't understand something about move semantics. Given the following code I would expect the debugger (MSVC2010SP1) to call Proxy's members in the following order:
Proxy(Resource*) ...
0
votes
2answers
29 views
Remove temp variable in code with switch-block
Have such code in project:
Cookie CookieCreate(CookiesTypes type)
{
Cookie user_cookie = null;
switch (type)
{
case CookiesTypes.SessionId:
user_cookie ...
10
votes
3answers
272 views
Is it meaningless to declare the return type of a function as T&&?
As we have known, in most common cases, T&& means "this is a temporary object". However, if one wants to return a temporary object from a function, he/she can declare the function as follows:
...
3
votes
2answers
97 views
Return pointer to a temporary in C [duplicate]
Possible Duplicate:
returning a pointer to a literal (or constant) character array (string)?
Is the code below correct?
const char* state2Str(enum State state)
{
switch (state)
{
...
5
votes
6answers
196 views
c++ temporary - “pure virtual method called”
As I understand temporaries, the following code should work, but it doesn't.
struct base
{
virtual~base() {}
virtual void virt()const=0;
};
struct derived:public base
{
virtual void ...
0
votes
3answers
116 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 ...
0
votes
2answers
1k views
MYSQL: Create Temporary Table with Index and SELECT
I have a stored function where i use temporary tables. For performance reasons i need an index in that table. Unfortunately, you cannot use ALTER TABLE because this causes an implicit commit.
...
0
votes
1answer
138 views
Temporary array?
It's a long story that I'm fighting with, so I'm not going to extend to much for now, but and if not possible I will detail the problem.
I'm using Laravel framework. From an ajax call I send data ...
1
vote
2answers
70 views
Passing a temporary object to std::cout
I have this very simple piece of testing code:
std::string a = "A"
std::string b = "B"
std::cout << a + b << std::endl;
While it works in GNU g++, I'm worried if it is portable to pass ...
7
votes
3answers
108 views
Does binding temporary to a reference require a copy constructor in C++?
Consider the following code:
class A {
A(const A&);
public:
A() {}
};
int main() {
const A &a = A();
}
This code compiles fine with GCC 4.7.2, but fails to compile with Visual C++ ...
5
votes
3answers
129 views
What is the order of calling destructors for temporaries in C++?
Consider the following code:
#include <iostream>
struct A {
~A() { std::cout << "~A" << std::endl; }
};
struct B {
~B() { std::cout << "~B" << std::endl; }
};
...
0
votes
0answers
47 views
iOS InApp purchase based on App version?
I created a app v1 which has InApp purchases. But now I am going to release an update v2 which has a one extra InApp purchase item (like holiday gift).
And I'm going to remove that particular InApp ...
2
votes
2answers
169 views
Where should I save a semi-temporary database?
I have an application where I would like to save some raw files in a folder structure on the client's computer. This EXE is completely stand-alone, and could possibly be running from a CD, or ...
1
vote
1answer
351 views
Using index, using temporary, using filesort - how to fix this?
I'm working on a event tracking system which uses a handful of lookup tables as well as the primary logging table. In a report I'm writing, an object can be selected to view statistics against. The ...
0
votes
1answer
47 views
ASP.NET temporary disable validators
I just have started to learn ASP.NET and implementing simple application with one GridView to view and edit records, and one DetailsView to add new records.
I've added some validators for DetailsView ...
3
votes
1answer
55 views
Mysql Temporary Data
We have requirement, where multiple users are keep on asking some aggregate data for monitoring on table which is quite big. I am thinking creating temporary table that could be memory/memchached ...
1
vote
1answer
231 views
SQLAlchemy temporary table with Declarative Base
I need a temporary table in my programme. I have seen that this can be achieved with the "mapper" syntax in this way:
t = Table(
't', metadata,
Column('id', Integer, primary_key=True),
# ...
1
vote
2answers
82 views
Is it necessary to have a temporary or a literal to have an rvalue?
This question asks if all temporaries are rvalue.
The answer is no, because if we consider this expression:
const int &ri = 2 + 3;
then, the very same temporary (2 + 3), which is an rvalue ...
1
vote
1answer
62 views
mysql select from table 1 join and order by table 2 , optimization filesort
read mysql post but couldnt find the solution.
Any pointers would be appreciated.
I have 2 tables A,B
Table A has folderid mapped to multiple feedid (1 to many )
Table B has feedid and data ...
1
vote
2answers
69 views
dropping temporary table
I have 3 php scripts: in 1st one I create a temporary table (in MySQL) with name based on User ID, in 2nd I use that table and give a message to the user, in the 3rd one I use and delete temporary ...
1
vote
2answers
93 views
Writing to temporary directory does not work
I am trying to write a file to a temporary directory. I am doing it like this:
NSString *_location = NSTemporaryDirectory();
NSString *_guid = [[NSCalendarDate calendarDate] ...
0
votes
0answers
42 views
whether static STL vector size initializer constructor makes copies of temporary in initialized state?
I have a static global variable which is a C++ STL vector. In the static initialization I specify its size in the constructor. Now what happens AFAIR.
1) One temporary objects constructor is called ...
0
votes
0answers
207 views
NSData write to temporary file [closed]
How to write NSData (it is NSImage's TIFFRepresentation) to a temporary file, then read it and after that delete it? Maby someone could give me some sample code about how to work with temporary files ...
0
votes
1answer
35 views
Server for showing my system to my client?
I've developed a website and that's working well on my localhost. I want to show it to my client by uploading it on a server for one or two hours, so that my client can access and play with it ...
0
votes
3answers
70 views
Expirable links to profile pages
I'm working on a project in core php with mysql for a tutor agency in which i have send mail to people with links to the tutor profile pages matching their required criteria. I want these links to be ...
3
votes
2answers
97 views
C equivalent to C++ get_temporary_buffer?
20.6.11 Temporary buffers [temporary.buffer] defines two function templates:
template<class T> pair<T*, ptrdiff_t> get_temporary_buffer(ptrdiff_t n) noexcept;
template<class T> ...
0
votes
4answers
190 views
Java: can temporary objects created from String concatenation be accessed?
When creating a String object in Java, then concatenating something else to it via
someString.concat("I am being concatenated to someString");
or somesuch, since Strings are immutable, a temporary ...
5
votes
2answers
133 views
C++ return reference to temporaries or store them in objects
Consider the following code dealing with const references:
const int & func (const int &x)
{
return x;
}
struct Foo {
Foo (const int &x)
: m_x(x) {}
const int & getX ...
0
votes
2answers
146 views
Create a new object every time or keep a single one
We use primitive types without considering constructors and destructors. It may be because of that, most of them are stored in the stack. We also use struct like float3 for primitive types. We may ...
0
votes
1answer
307 views
how to add a column in a table with a name that is stored in a temporary variable
I want to add a column in a table every time the loop is run. I created a temporary variable which would take a different name for each iteration in the loop. now I want to add a column in my table ...
0
votes
1answer
521 views
How to combine data into a temporary table in Mysql
I have a very large table called paypal_ipn_orders. In this table I have 2 important bits of information a row called item_name and a row called sort_num. I want to use certain parameters to pull out ...

