Tagged Questions

1
vote
4answers
48 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
25 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
1answer
16 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
33 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
1answer
32 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
2answers
38 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
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
29 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 …
1
vote
3answers
2k views

Android : Bitmap save to location

I am working on a function to download an image from a web server, redisplay it on the screen, and if the user wishes to keep the image, save it on the SD card in a certain folder. Is there an easy …
0
votes
1answer
11 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 …
1
vote
5answers
578 views

Django model custom save with ManyToManyField problem

I know this question has been posted multiple times but I still couldn't find a definite answer to this problem. So, here I go: class Invoice(models.Model): program = models.ForeignKey(Program) …
0
votes
2answers
80 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 …
0
votes
1answer
85 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 …
3
votes
1answer
58 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
173 views

finished iPhone app: add a new feature. record system sound and then be able to playback

i have just created a drum app. The user taps on the individual buttons which triggers a short sound to play using the systemsound from AudioToolbox. I now would like to add a UIButton which says …

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