The identifier tag has no wiki summary.
0
votes
1answer
22 views
Java TimerTask <identifier> expected
Why does java keep giving me this error?
I have read multiple ways to use timer and all have given me expected error
I have been trying to get this for a while now.
private class ...
3
votes
0answers
75 views
Defining var + in Scala, is it useful? [duplicate]
Got into a discussion about the possible identifiers in Scala. It turns out you can define the variable +
Can this be useful? I can't seem to do anything with it:
felix@felix-UX32VD:~$ scala
Welcome ...
0
votes
0answers
23 views
Weka - Adding a unique identifier
I am running a logistic regression using Weka on a set of values with unique identifiers. I would like to run my historical data as the training data. In that case, I don't care about which values get ...
0
votes
1answer
67 views
Why is the dollar sign no longer “intended for use only in mechanically generated code?”
In ECMA-262, 3rd edition[PDF], under section 7.6 ("Identifiers," page 26), we see the following note:
The dollar sign is intended for use only in mechanically generated code.
That seems ...
-2
votes
0answers
19 views
mysql query that inserts and gives id of inserted record
I am looking for sql query that inserts a record and returns autogenerated id of that particular record.
And all should happen in single query without using last_inserted_id.
3
votes
1answer
23 views
Matlab: Update elements in array by identifier
I have a large array A with ~500.000 rows of the form
[ id1 id2 value1 value2 zero zero ]
and another, smaller Array B (~20.000 rows) with rows with some of the identifiers from A
[ id1 id2 ...
0
votes
1answer
38 views
ORA-00904: “CITYCODE”: invalid identifier in CREATE TABLE
So, I'm not very good with sql and am trying to jsut great two tables. one called CITY with PK of Citycode, and Warehouse, which uses Citycode as an FK. And I'm not surprised if even this is wrong.
...
0
votes
2answers
31 views
Flex - Use id that's stocked on a variable
I'm new at working with Flex, and I can't figure out how to reuse a specific ID.
So I'm doing an application where you can customize a product. First you choose the product, and then you can add ...
0
votes
1answer
18 views
Instantiation problems with id
I've followed a tutorial to realise a calculator. It seems that my buttons objects that i define, and instantiate with the ID are not instantiated because when i add a listener on them, they return a ...
1
vote
2answers
29 views
Make_Pair identifier not found in one function but found in another
I’m trying to make a dictionary of fonts with SDL_ttf, just like I made a dictionary with SDL_image. Since fonts are stored with a pnt_size I made a struct containing this info:
struct fontinfo
...
0
votes
2answers
30 views
Expected identifier or '(' for void dealloc
I am getting a "expected identifier or'(' message in Xcode. This comes after (void)dealloc;
I am not sure how to fix this or why it is coming up. If someone could tell me how to fix this, I would ...
0
votes
1answer
15 views
Uniquely identifying an NSScreen
I'm working on a project which has settings for each display. I want my application to support a display being removed and later re-added, possibly with another display used in between, with the ...
0
votes
0answers
27 views
Uncaught SyntaxError: Unexpected identifier in line 32 of snake.js
28. window.addEventListener('keydown', function(e) {
29. if (e.keyCode === 38 && direction !== 3){
30. direction = 2;
31. } elseif (e.keyCode === 40 && direction !== 2){
...
4
votes
1answer
43 views
How many Product-ids to create for Subscription in iPhoneSDK
For your information, I have already implemented In-app Purchase in the application and it is working fine with Content Hosting at Apple as well as Server Model.I have logic in my app to check whether ...
1
vote
6answers
71 views
Any Java way of generating an identifying string that is similar to YouTube's video string?
Each video at YouTube has a unique identifying string such as 1cru2fzUlEc.
Is any Java way of generating something close to it? By close I mean the string is unique, short, and uses numbers and ...
0
votes
0answers
46 views
Removing (hiding) fragment identifier from url in Joomla 2.5
Can anybody tell me efficient way to remove (hide) a fragment identifier on my web site created in Joomla 2.5 cms.
Fragment identifier is added to url end on every web page on my website on which I ...
0
votes
1answer
65 views
Bundle identifier changed after changing application name
a little stuck here,
I changed the name of my application, the bit that will show under the icon on a device, bundle identifier right ? I want to submit an update to my app, but now my bundle ...
-1
votes
1answer
38 views
add identifier column
For example, my data looks like this:
Number Value
1 3
2 4
3 6
4 7
I want to add a third column as identifier column based on Value. If the value is >5, then group 1, ...
1
vote
0answers
46 views
ERROR: Use of undeclared identifier when trying to call an instance method
I know that this is something simple that I am overlooking but I cannot for the life of me figure out what is going wrong. Can anyone shed some light on the situation? It would be very much ...
0
votes
1answer
55 views
hibernate: insert instance with external “id class”
I'm using Hibernate + HSQL on JBOSS server, I need to saveOrUpdate() an Object which has an ID represented by another class:
public class RideId implements java.io.Serializable {
private int ...
1
vote
2answers
55 views
How to call on a function found on another file?
I'm sorry for the newbyness but I'm recently starting to pick up C++ and the SFML library, and I was wondering if I defined a Sprite on a file appropriately called "player.cpp" how would I call it on ...
1
vote
3answers
49 views
Expected identifier error in C
For some reason I am getting the error:
expected identifier or '(' before 'wordlist'
in my header file (as well as the corresponding function definitions) for the two functions returning wordlist ...
-7
votes
3answers
100 views
Length of identifier in turboc++ and DevC++ for both C and C++ languages? [closed]
I want to know what the length of variable identifiers of C and C++ in Turbo C++ and Dev-C++ is.
3
votes
1answer
140 views
ZF2 - \Zend\Db\Adapter\Platform::getQuoteIdentifierSymbol()
Code is as following, where I aim to use Pdo_mysql:
use \Zend\Db\Adapter\Adapter;
use \Zend\Db\Sql\Sql;
use \Zend\Db\Sql\Expression;
$params = array(
'driver' => "Pdo_mysql",
'host' ...
2
votes
1answer
29 views
FireBird - serial field as in PGSQL?
PGSQL supports "serial" field type, which is converted to:
colname integer DEFAULT nextval('tablename_colname_seq') NOT NULL
This makes the identifier generating very easy.
In the FireBird I saw ...
-1
votes
1answer
78 views
Length of Vendor and Advertising identifiers [closed]
I know that UDID is 40 characters long. Now, I need to replace those since Apple forbids their usage. But I couldn't find the length of the replacements which are vendor and advertising identifiers ...
1
vote
1answer
100 views
How to call a method with spaces in the name?
I have the following class:
Help on class A in module a:
class A(__builtin__.object)
| Methods defined here:
|
| any vegetable(self)
| TODO document this
|
| getHeight(self)
| ...
-2
votes
2answers
72 views
Undeclared Identifier after the void
I have got this error on the line where the void is it says undeclared identifier for sliderDidChange can some one please help me with this i can;t find any answers.
h. file
//
// ...
2
votes
2answers
35 views
Is there a way to use the methods of a string created JOptionPane? (Java)
I've googled the holy bejaysus out of it and just can't find the right combination of words. How do I use methods on something with no identifier? For instance;
String inputBio = ...
0
votes
0answers
48 views
Hibernate id with Auto generation + user input
I have one scenario in hibernate id generation
1) If user didn't pass id, then Hibernate must create it.
2) If user given id, then hibernate must use the same and not to create automatic.
To achive ...
0
votes
1answer
59 views
Parse Issue Expected Identifier in Main.m
In this section of code
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate]));
}
}
The debugger says ...
1
vote
2answers
71 views
python library for identifying article topic
I have a large collection of articles, 80.000 and I want to extract those that are about one topic. Is there a python library or script in which i can input a manually chosen sample of articles about ...
0
votes
3answers
94 views
Identifier expected error (Java)
I am new to programming and could use a helping hand. I've created a "Person" class and a TestPerson file to test it (yes, this is an assignment.)
I am getting three errors "identifier expected" on ...
0
votes
1answer
50 views
QT header included but does not find identifier for QSslError
I have downloaded QT 4.8.1 Source(everywhere-commercial-version).
And compiled 64bit Version of QT with Visual Studio 2008 Pro under Windwos 7 64bit.
After that, i created a simple QT Application ...
0
votes
2answers
36 views
How put zero prefix for Long value < 10 e.g for DB Id's?
can somebody give litle advice about how give a zero prefix for output of Id's less than 10.
For example i want show in output label a single id value which is type of Long in DB is this value 4 but ...
0
votes
2answers
67 views
retrieving last inserted ID of a table for using as foriegn key in another table
I have table(table1 and table2) that ID of table1 are foreign key of table2. in INSERT I want to save last ID inserted in table1 for insert to foreign key of table2.
In your idea what is best way for ...
0
votes
2answers
62 views
Creating a darts game and two errors come up “too few argurments in function call” and “game, identifier not found”
Creating a darts game and two errors come up
too few argurments in function call
and
game, identifier not found
I am trying to create a game for an assignment that will make two players "joe ...
0
votes
1answer
24 views
How to retrieve unique identification from computer?
What can I extract from computer to identify it.
MAC address,
Hard disk serial number, then?
0
votes
1answer
47 views
how can I comment on an Oracle-SQL long-named column in a long-named table?
I want to execute several statements like this
comment on column Quite_A_Long_Table_Identifier.Quite_A_Long_Column_Identifier is 'Something';
and I receive an error message similar to this.
...
1
vote
2answers
75 views
Getting object name from list [duplicate]
Is there a way to retrieve the name of an object stored in a list?
What I want to do is to add an object name - the name of matrix in this particular case - prior to printing out properties of that ...
0
votes
2answers
87 views
Error: #if[n]def expected an identifier
Originally my code was:
#ifndef 2DO_H
#define 2DO_H
int ReadNumber();
void WriteAnswer(int Nsumber1, int Number2);
#endif
However I was getting an error #if[n]def expected an identifier. ...
0
votes
1answer
111 views
NHibernate SaveOrUpdate() working with GeneratedBy.Assigned() when it's not suppose to?
NHibernate's documentations specifically says
5.1.4.7. Assigned Identifiers
If you want the application to assign identifiers (as opposed to having NHibernate generate them), you may use the ...
0
votes
0answers
17 views
How do I declare the identifier for button?
I am fairly new to XCode and would like to know the code for this. Mine looks like this and I know it is completely wrong.
@property (weak, nonatomic) IBOutlet UIButton *gorillaUIButton;
...
0
votes
0answers
28 views
How to identify NSTableView object
I have an NSTableView with couple columns showing data. Each row has different values of an myResultItem. Several myResultItems are stored in an Array via KVC, the array is the content source to the ...
-4
votes
3answers
56 views
JavaScript warning on var element [closed]
Have defined:
var ru_cryptopro_npcades_10_native_bridge = {
callbacksCount : 1,
callbacks : {},
resultForCallback : function resultForCallback(callbackId, resultArray) {
var ...
1
vote
1answer
51 views
Select with Inner Join with Multipart Identifier and Having Clause
I need to select certain fields for a multipart identifier that has duplicates.
I have the query to grab the duplicates correct.
SELECT b.MemEmpID, b.LastName, b.FirstName
FROM ...
0
votes
5answers
72 views
Using scanner to create an object identifier?
Is there any way to create the name of an object depending on user input?
eg.
Object scan.nextLine() = new Object();
-8
votes
1answer
96 views
Is int π; is valid syntax in java? [duplicate]
I have some doubt ,i want to know that is int π; is a valid syntax in Java Or Not because Java support UNICODE so according to me it can be valid but I want to make sure
-1
votes
1answer
44 views
Bundle Identifier when selling my domain [closed]
I did a lot of research but didn't get an answer to my question so far, I hope you can help me.
I have a iPhone App in the AppStore. The Team ID I used since two years is:
...
4
votes
4answers
53 views
Duplicated identifier for a variable in function local scope
So, this is code from a student of my friend…
#include <stdio.h>
int main(){
int hours;
int take_one_number(void);{
scanf("%d",&hours);
}
int minutes;
int ...






