Displaying 2 results from an estimated 2 matches for "usr_id".
Did you mean:
user_id
2006 May 18
8
Concatenated key
...d playing a couple days ago with Rails and it find it very
interesting.
But I''m a bit stuck with making it work with a concatenated primary key.
I want to use my own names for the DB fields and I''m using SQL Server
2005.
My tables look roughly like this:
CREATE TABLE USERS (
USR_ID VARCHAR(25) NOT NULL PRIMARY KEY,
USR_PASS VARCHAR(25)
)
CREATE TABLE SECTOR (
SECT_ID TINYINT NOT NULL PRIMARY KEY,
SECT_NAME VARCHAR(25)
)
CREATE TABLE PERMISSION (
FK_USR_ID VARCHAR(25) NOT NULL,
FK_SECT_ID TINYINT NOT NULL
)
ALTER TABLE PERMISSION
ADD CONSTRAINT PK_PERMISSION
PRIMARY KE...
2006 Mar 09
13
[prototype] how i send Dynamic form field values??
I want to know how can i send the values of form fields build dynamic
with prototype.
i have the form as follow:
<form id="id" method="post" action="url">
<div id="dynamicFields"></div>
</form>
with prototype i fill the dynamicFields DIV with <input> and <select>
tags, but when i submit the form the values of