Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

brendalc1636
brendalc1636
Offline

Badges

Badges
4

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
7

Discussions

Discussions
0

Questions

Questions
3

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by brendalc1636
Customize the badges you want to showcase on your profile
Re: Model-Driven Form update ID Property - Adobe LiveCycle 14-06-2011
Why are you changing the primary key and why is it not auto-increment? Just wondering.

Views

170

Likes

0

Replies

0
Re: Conflict when updating a record - Adobe LiveCycle 05-05-2011
To fix this issue I used sequence.currval instead of sequence.nextval.

Views

105

Likes

0

Replies

0
SQLAssembler id-query - Adobe LiveCycle 25-04-2011
Hello all,I have stumbled across a problem I ran across previously but I don't know how to fix the problem. I have an insert query in my SQLAssembler that inserts a record into our Oracle database. I have an id-query that gets the currval from a sequence for the primary key of the new record: INSERT INTO WORK_QUEUE (WORK_QUEUE_ID, CREATION_DATE, DESCRIPTION) VALUES (#WORK_QUEUE_ID#, TO_DATE(#CREATION_DATE#, 'MM/DD/YYYY'), #DESCRIPTION#) SELECT SUBSCRIBER_ID_SEQ.CURRVAL FROM DUAL where WORK_QUE...

Views

960

Likes

0

Replies

0
Re: Adding an item to the database - Adobe LiveCycle 25-04-2011
Thank you for your response! I will have to look into how to do that. Brenda

Views

143

Likes

0

Replies

0
Re: Adding an item to the database - Adobe LiveCycle 21-04-2011
Yes, Rohit, I know all that. Seems I missed mentioning some information or maybe I just wasn't clear enough.I can fill the arraycollection correctly by calling the fill method. I can add the item to the database by adding the new item to the arraycollection which executes the insert query.The problem is that after the insert query is executed, my application seems to take a long time "returning" from that query. For example, after a customer is added, the user can go through and edit other items...

Views

146

Likes

0

Replies

0
Adding an item to the database - Adobe LiveCycle 20-04-2011
Hello!I am currently using a SQLAssembler to read and write to an Oracle database. When my Flex application loads, I call a fill method to get a list of customers. This list of customers is about 9000 so it take a little bit of time to load initially. The customers are loaded into an arraycollection and that arraycollection is passed to a datagrid for displaying. After the data appears in the data grid, a user can create a new customer. The new customer is added to the arraycollection:customerCo...

Views

1.2K

Likes

0

Replies

4
Conflict when updating a record - Adobe LiveCycle 21-04-2010
Hello. I'm having a problem I just don't understand. I am using the SQLAssembler to save to an Oracle database.My Flex GUI displays information about dependents in a datagrid. I populate the datagrid with an arraycollection that is populated by using a fill method. If I want to add a new dependent in the datagrid, I enter new information into a form and click a create button. My create button adds the dependent to the arraycollection. When I add this item to my arraycollection I also set it to a...

Views

692

Likes

0

Replies

2