Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
6k views

How do I edit multiple records in one Ruby on Rails form?

I'm making a simple to-do list application to teach myself Ruby on Rails, however I've run into a problem. I have a simple form that lists to-do items with a check box to the left of them, and an ...
2
votes
3answers
111 views

Inserting multiple rows in a table using PHP

I am trying to insert multiple rows into MySQL DB using PHP and HTML from. I know basic PHP and searched many examples on different forums and created one script however it doesn't seem working. Can ...
1
vote
1answer
63 views

How to delete multiple rows with 2 columns as composite primary key in MySQL?

My innodb table has the following structure: 4 columns (CountryID, Year, %Change, Source), with the 2 columns (CountryID, Year) as the primary key. How do I delete multiple rows other than using a ...
1
vote
1answer
112 views

Update multiple rows based on multiple values

Lets say I have this: Declare @passRefID as int Declare @passTextA as varchar Deckare @oassTextB as varchar Declare @passPropertyA as int Declare @passPropertyB as int Set @oassTextA = 'Joe' Set ...
1
vote
3answers
867 views

How do I set a unique ID for checkboxes in a multi-record Rails form?

I've set up a Rails form roughly following the instructions in this Railscast. Here's the code for the form: <% form_tag complete_todos_path, :method => :put do %> <ul> ...
1
vote
2answers
423 views

Return Multiple Results in Linq2Sql without a stored procedure?

i would like to return two record sets from a simple database table with one Linq2Sql query. I know how to do it if this was using Linq2Sql calling a stored procedure, but I don't want to use a stored ...
0
votes
2answers
50 views

MySQL single row with multiple records

I have a table with contains multiple rows that define "amenities" for a particular resort. I need to return the resortID if there are rows containing whatever "amenOptionID" I define. My issue comes ...
0
votes
2answers
332 views

How to identify duplicate items gathered from multiple feeds and link to them in a Database

I have a Database storing details of products which are taken from many sites, and gathered through the individual sites API's. When I call the feed, the details are stored in a database table. The ...