0
votes
1answer
321 views
How can I insert a record using Form Builder and PL/SQL?
I'm slowly learning SQL and how to use form builder 6. The situation is I have a simple table named 'players' within the table I have three columns:
player_no (primary key)
position
goals
Within …
0
votes
2answers
530 views
Rails AJAX: My partial needs a FormBuilder instance
So I've got a form in my Rails app which uses a custom FormBuilder to give me some custom field tags
<% form_for :staff_member, @staff_member, :builder => MyFormBuilder do |f| %>
[...]
…
