0
votes
1answer
17 views
Importing a private-public exchange key pair
Hi
I want to export a RSA 1024 private-public exchange key pair from Machine-1 to Machine-2. I am using cryptoAPI in XP.
In Machine-1, i generated the key pair. I wrapped a sessi …
0
votes
7answers
294 views
Detect if any key is pressed in C# (not A, B, but any)
Hi,
[EDIT 3]
I kind of "solved it" by at using the "strange" version. At least for the most important keys. It is suffient for my case, where I want to check that ALT and ALT+A ar …
1
vote
1answer
40 views
How to remove a lua table entry by its key ?
I have a lua table that I use as a hashmap, ie with string keys :
local map = { foo = 1, bar = 2 }
I would like to "pop" an element of this table identified by its key. There is …
0
votes
1answer
30 views
foreign keys in sql server 2005
I having trouble creating a foreign key in sql 2005.
my primary key table has a primary key that spans 2 columns.
I want to create my foreign key so it references a column in my …
3
votes
2answers
42 views
Handling foreign key exceptions in PHP
What is the best way in PHP to handle foreign key exceptions on a mysql database? Is there a mysql class that can be used to simplify any code?
Ideally, what I want to do, as an e …
0
votes
1answer
18 views
SQL 2005: How to add same column and FK across multiple tables.
Hello
I need to add a Column "CurrentLifeCycleId" [int] into 73 tables and also add a Foreign Key from this new column to another single table "LifeCycle" Id column...is there a s …
1
vote
1answer
63 views
How to get key value
Hi,
My sample JSON string is as below:
{"8776337":{"text":"Test Message","status":"d","created_time":"1244475327","reply_number":"447624800500","completed_time":"1244475373","cre …
0
votes
1answer
30 views
Different settings in my.cnf are causing “max key length is 1000 bytes” error
Edit: This may be a 5.0-specific bug. (I'm on 5.0.83). Removing the innodb_log_file_size setting gets rid of the problem. Which makes complete sense. Not.
Googling about finds …
1
vote
1answer
45 views
Changing the value in a map in Groovy
This is about a very basic program I'm writing in Groovy.
I have defined a map inside a method:
def addItem()
{
print("Enter the item name: ")
def itemName = reader. …
0
votes
5answers
145 views
Does the array key determine array size in C++?
im storing some settings for objects in an array. the id's of objects are used as the key. the id's start from 100000 and go up. if i was to input data for an object with id 100 00 …
1
vote
6answers
124 views
What .NET dictionary supports a “find nearest key” operation?
I'm converting some C++ code to C# and it calls std::map::lower_bound(k) to find an entry in the map whose key is equal to or greater than k. However, I don't see any way to do the …
0
votes
7answers
122 views
Suggest a good method for having a number with high precision in C#
Hi every one!
I am programming on a project which I should store the key of the user to the initial configuration of a machine, I want to write it in C#.
I have an initial confi …
0
votes
6answers
64 views
PHP array problem
I have an array like this. What i want is to get the value of the index for specific values. ie, i want to know the index of the value "UD" etc.
Array
(
[0] => LN
[1] = …
0
votes
4answers
88 views
simple way to change the key value of an array element
I am reading in a bunch of multi-dimensional arrays, and while digging through them I have noticed that some of the keys are incorrect.
For each incorrect key, I simply want to ch …
1
vote
1answer
34 views
How to create multiple components of a service with c’tor dependencies
I'd like to create several similar services which can be destinguished and accessed by their names (=keys).
For the service implementation I want to use classes with c'tor depende …
