Tagged Questions

0
votes
1answer
13 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 …
0
votes
1answer
23 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 …
0
votes
7answers
252 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
31 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 …
1
vote
1answer
57 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 …
2
votes
2answers
39 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 …
1
vote
1answer
44 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
1answer
16 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 …
0
votes
5answers
142 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
122 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
2answers
25 views

wxPython wx.KeyEvent GetKeyCode()

All, I am writing a wxPython app in which I want (at the moment) to print the name of the key that was pressed. I have a dictionary that maps, for example, the WXK_BACK to "back" …
0
votes
1answer
26 views

FluentNHibernate: can’t change key column name for a one-to-many relationship

Hi I have an entity: public class Message:Entity { public virtual IList<Message> ReplayMessages { set; get; } public virtual Message ParentMessage { set; get …
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
63 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] = …
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 …

1 2 3 4 5 10 next
15 30 50 per page