1
vote
3answers
33 views
Cakephp - Updating information on a logged User
Hello,
I have a controller named sales_controller at this controller I got a function in wich I want to:
update information about the sale -> DONE
create a new record on other model -> DONE
update …
0
votes
2answers
40 views
How do I save and read an image to my temp folder when quitting and loading my app
I want to save and read a UIImage to my temp folder when my app closes and then load and delete it when the app loads. How do I accomplish this. Please help.
1
vote
4answers
56 views
How do I write a generic Save() method that handles single objects and collections?
I have two generic save methods in a repository class:
public void Save<T>(T entity)
{
_session.Save(entity);
}
public void Save<T>(IEnumerable<T> entities)
{
foreach (var …
0
votes
1answer
28 views
Can NHibernate save a collection without an iterator?
Simple question: can NHibernate save a collection without an iterator? For example:
var list = new List<Item>();
list.Add(1000 items);
session.Save(list);
Or do I have to do foreach over the …
0
votes
2answers
42 views
iPhone Core Data application will terminate save database required?
Hello,
I have an application that allows you to edit some percentages, however it will only let you commit those changes if the percentages add up to 100. However because the Core Data template …
0
votes
1answer
38 views
Edit of self referencing HABTM in cakephp works, sometimes
I'm using a self referencing HABTM model with Participants. You sign up for an event and when you log in to your reservation/profile you see a list of other participants and you can choose to add …
0
votes
1answer
21 views
Kohana 2.3.4 ORM update question
I'm trying to update a record using the ORM library built in to Kohana 2.3.4. I'm basically modifying the script I use to insert the record in the first place. My problem is the record is getting …
0
votes
2answers
32 views
Save Client side time in database
Hi All
I am developing an application, i need date and time of the user who is accessing(ie Client's date time), how can i get it to server side........?
0
votes
2answers
34 views
Hide/disable Save button in adobe in web browser
Hi
Greetings
Iam exporting a crsytalreport to pdf using asp.net 2003.
On executing the pdf report is opened in the default pdf reader(adobe reader 9 in my case) which is embedded in the browser (ie …
0
votes
2answers
30 views
iPhone Core Data saving multiple items at once random behavior?
Hello,
I have an application that reads an rss feed, parses the xml and adds it to my database using Core Data (this is so the user can see the feed even if no internet connection is available) this …
3
votes
1answer
59 views
Save Matlab invisible plot under terminal as an image with same size
Hi,
I am ssh connecting to a linux server and do some Matlab programming. I would like to save invisible plot as
figH = figure('visible','off') ;
% Plot something
% save the plot as an image with …
0
votes
1answer
89 views
Django m2m and saving objects
I have a couple of simple objects that have a many-to-many relationship. Django has joined them using obj1_obj2 table and it looks like this in mysql;
id | person_id | nationality_id
…
0
votes
1answer
12 views
LINQ to SQL equivalent for XML file persistence.
Microsoft has made saving objects very easy with their LINQ to SQL mapping.
However, I would sometimes like something a little more lightweight, i.e. the ability to save objects to a file when an …
0
votes
2answers
81 views
saving all modified buffers in emacs, but not one by one
When I press C-x s or C-x C-c, emacs displays the names of modified buffers one by one and asks what to do with each (save, diff, pass, ...). Pressing y one by one is slow. Pressing ! doesn't let you …
1
vote
4answers
108 views
“Remember password” option [C#]
Hi, i need to implement a "Remember password" option in my program, it works with client-server protocols that REQUIRE the entire password to be passed in the loggin process, not only Hashes, so i …
