0
votes
5answers
30 views
Optimize simple update on table
Hi All,
I am running following query in a stored proceudre and it is taking 30 milliseconds to execute. Can anyone help me out to optimize this query:
Table Definition is:
Crea …
0
votes
2answers
63 views
Update HttpResponse Every Few Seconds.
My application in Django can create some very big SQL queries. I currently use a HttpRequest object, for the data I need, then a HttpResponse, to return what I want to show the Use …
0
votes
0answers
30 views
Issues with re-rendering objects on a canvas - Java
Hi, guys. I'm having some serious problems with this, have been working on it for some time now - about 2 weeks - and I just can't see the issue I'm having here. I'm sure I'm makin …
0
votes
1answer
18 views
Deploying using Setup project with update functionality of ClickOnce
Hi,
I want to deploy a wpf client appllication, I need to allow the user to choose a directory for the install, eg. c:\program files\myapp. Unable to do this with clickonce, I nee …
0
votes
2answers
27 views
Adding and changing usercontrol at run time in a WPF application
I have a situation as follows, i am going to use WPF for first time, so any suggestion abt how to proceed whould be great:
I hav a drop down, when i select any item from it - it sh …
0
votes
2answers
37 views
Including a function inside single quotes
I am trying to figure out why I can't include a function into this. I am trying to make it so $client will make it's way into the request string. http://test.com/next.xml?file=$cli …
0
votes
2answers
29 views
How do I add a limit to update-query in Zend Framework?
Hey!
How do I add the LIMIT 1 clause to an update when using Zend Framework?
I'm kind of forced not to use Zend_Db_Table_Abstract::update() since it executes itself unlike the sw …
0
votes
5answers
66 views
JQuery MySql update
Hi, im trying to adapt this little snippet:
$("#checkbox_id").change(function(){
/* CODE HERE */
});
I have a series of checkboxes that are dynamically generated and their …
0
votes
3answers
71 views
How to update every second from db?
Hi guys,
I have to build a site like an auction-site:
I Have a detail page from items where a countdown should run down.
In this page nearly every second a update must be possib …
0
votes
1answer
26 views
MongoDB: How to update multiple documents with a single command?
I was surprised to find that the following example code only updates a single document:
> db.test.save({"_id":1, "foo":"bar"});
> db.test.save({"_id":2, "foo":"bar"});
> …
0
votes
1answer
51 views
NHibernate: set entity from transient object based on unique field
My application obtains transient objects.
MyClass
Id
Name
OtherData
Mapping is like Id is identifier and Name has unique constraint in database.
The transient object has n …
0
votes
4answers
102 views
MySQL/PHP update query with dates not updating
Bit of a strange problem here...
I've got an update query that isn't working, and I can't for the life of me work out why!
My table has two three fields - 'id' (int, auto increme …
0
votes
1answer
41 views
Any way to recursively update a tree in SQL?
I've got a database table that represents a bunch of trees. The first three columns are GUIDs that look like this:
NODE_ID (PK)
PARENT_NODE_ID (FK to same table, references NODE_ …
1
vote
1answer
67 views
Updating Order field in SQL
We're required to add Ordering to our EventVenue table, which we've done by adding an int field to store the EventVenue's placing in the order. The ordering is based upon the paren …
0
votes
2answers
25 views
nHibernate one-to-many inserts but doesnt update
Instead of getting into code, I have a simple question. Default behavior for a simple one-to-many is that it inserts the child record then updates the foreign key column with the …
