1
vote
1answer
47 views
Hibernate map collection with constant key
Hi,
I'm trying to map a collection (of type map) using a foreign key and a fixed value as the key/mapping arguments.
I have several tables of product types and a language table w …
0
votes
4answers
55 views
Somewhat simple PHP array intersection question
Maybe I'm going insane, but I could have sworn that there was an PHP core function which took two arrays as arguments:
$a = array('1', '3');
$b = array('1'=>'apples', '2'=>' …
5
votes
5answers
95 views
Acceptable types to use as keys in a HashTable
I must admit to having only a rudimentary understanding of how HashTables work, although from what little I do know it seems fairly straightforward. My question is just this: it se …
0
votes
2answers
65 views
Counting all the keys pressed and what they are (python)
I'd like to create a map of the number of presses for every key for a project I'm working on.
I'd like to do this with a Python module. Is it possible to do this in any way?
3
votes
3answers
970 views
C# How to Generate Unique Public and Private Key via RSA
I am building a custom shopping cart where CC numbers and Exp date will be stored in a database until processing (then deleted). I need to encrypt this data (obviously).
I want to …
0
votes
5answers
231 views
how do I make a composite key with SQL Server Management Studio?
how do I make a composite key with SQL Server Management Studio?
I want two INT columns to form the identity (unique) for a table
2
votes
5answers
342 views
Multiple Modifier Keys in C#
I am betting this is a really simple question to answer, I just can't get such a simple thing to work.
I use a keydown event to detect keys pressed and have several common key com …
1
vote
2answers
47 views
home, end, delete, pageup, pagedown with ksh
Hello.
I want to use home, end, delete, pageup, pagedown with ksh. My TERM is
xterm-color. These keys works fine with tcsh and zsh, but not with ksh
(print a tilde ~)
I found t …
0
votes
3answers
73 views
How to re-index the values of an array in PHP?
Array (
[id] => 3
[user_id] => 1
[clan_id] => 1
[date] => 2009-09-24 09:02:05
[skill1rank] => 1
[skill1lvl] => 2376
[skill1xp] => 1 …
1
vote
1answer
147 views
How to identify the keyboard keys using C#
Hi,
I have an C# application runing at the back ground. Now i want to stop this application when the system is locked. how can i do that. Any help regarding this is really appreci …
14
votes
16answers
1k views
Surrogate Vs. Natural/Business Keys
Here we go again, the old argument still arises... we'd better have a business key as a primary key, or we'd rather have a surrogate id (i.e. an SQL Server identity) with a unique …
1
vote
2answers
49 views
Mysql mapping table FK constraints
Hi,
I'm experiencing some difficulties with foreign key constraints. I have three tables:
Features
ID PK AUTO_INC
Title VARCHAR
Subscriptions
ID PK AUTO_INC
Title …
5
votes
3answers
300 views
Is Perl guaranteed to return consistently-ordered hash keys?
Given something like
foreach (keys %myHash) {
... do stuff ...
}
foreach (keys %myHash) {
... do more stuff ...
}
Is Perl guaranteed to iterate over the keys in a consist …
4
votes
3answers
216 views
Concatenating Dictionaries
I have three lists, the first is a list of names, the second is a list of dictionaries, and the third is a list of data. Each position in a list corresponds with the same positions …
0
votes
2answers
204 views
how to fetch array keys with jQuery?
Good afternoon. I have an array with some keys, and values in them. I then need to fetch the array keys and not the data in them. I want to do this with jQuery. I know for example …
