Search Results

0
votes
2answers
2k views

MySQL: “lock wait timeout exceeded”

I am trying to delete several rows from a MySQL 5.0.45 database: delete from bundle_inclusions; The client works for a while and then returns the error: …
1
vote

How do you manage “pick lists” in a database.

Create one table for lists and one table for list_options. # Put in the name of the list insert into lists (id, name) values (1, "Country in North America"); # Put in the values …
1
vote

Rails: How do I check if a column has a value?

This is what you asked for: <% for agent in @broker.agents %> <% unless agent.cell.blank? %> <span class="cell-number">Cell: <%= agent.cell %></span …