Re: [flexcoders] Re: how to insert checkbox value into database

2009-11-23 Thread Chris Downey
For this problem to be solved, I think you need to find out what value is getting to Access. Something is reaching Access. What is it? On Mon, Nov 23, 2009 at 6:57 AM, stinasius wrote: > > > this is what i have tried to do following your previous example... > > private var poolSelected: Boole

[flexcoders] Re: how to insert checkbox value into database

2009-11-23 Thread stinasius
this is what i have tried to do following your previous example... private var poolSelected: Boolean = false; public function poolselected():void{ if(pool.selected == true){ poolSelected = 1; }

Re: [flexcoders] Re: how to insert checkbox value into database

2009-11-23 Thread Chris Downey
Ooops. By "pragmatically" I meant "programmatically" On Mon, Nov 23, 2009 at 12:30 AM, Chris Downey wrote: > I'm not sure how much my code examples will help - I'm using SQL Server and > before the data gets to SQL, I translate the boolean value to a 1 or 0. > > If I were in your shoes, the next

Re: [flexcoders] Re: how to insert checkbox value into database

2009-11-22 Thread Chris Downey
I'm not sure how much my code examples will help - I'm using SQL Server and before the data gets to SQL, I translate the boolean value to a 1 or 0. If I were in your shoes, the next thing I'd do is to figure out a way to know the exact value that Access is getting. Make no assumptions. Consider

[flexcoders] Re: how to insert checkbox value into database

2009-11-22 Thread stinasius
Chris Downey you said you do this all the time, care to show how exaclty you do it using the first example of itemWorking, or you can show how to directly send the checkbox.selected value to the data access object layer (via your RemoteObject). please this would be very helpful.

RE: [SPAM] [SPAM] [flexcoders] Re: how to insert checkbox value into database

2009-11-20 Thread Tracy Spratt
lopment services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of stinasius Sent: Friday, November 20, 2009 12:57 AM To: flexcoders@yahoogroups.com Subject: [SPAM] [SPAM] [flexcoders] Re: how to insert checkbox value into database yes/no is looking f

[SPAM] [flexcoders] Re: how to insert checkbox value into database

2009-11-19 Thread stinasius
yes/no is looking for a boolean value. when the checkbox in the flex ui is checked the value recorded in database is yes but remember yes/no in access is a checkbox in the database column so if in the flex ui the checkbox is checked then the checkbox is also checked in the access table and if it

RE: [SPAM] [flexcoders] Re: how to insert checkbox value into database

2009-11-19 Thread Tracy Spratt
[mailto:flexcod...@yahoogroups.com] On Behalf Of stinasius Sent: Thursday, November 19, 2009 10:03 AM To: flexcoders@yahoogroups.com Subject: [SPAM] [flexcoders] Re: how to insert checkbox value into database here is were it fails in my cfc i have the following INSERT INTO homes(pool) VALUES("#ar

[flexcoders] Re: how to insert checkbox value into database

2009-11-19 Thread stinasius
here is were it fails in my cfc i have the following INSERT INTO homes(pool) VALUES("#arguments.pool#") the column in the table is pool and the id of the check box in the flex ui is also pool. in flex i have the following private function insertHandler():void{

[flexcoders] Re: how to insert checkbox value into database

2009-11-19 Thread stinasius
here is were it fails in my cfc i have the following INSERT INTO homes(pool) VALUES("#arguments.pool#") the column in the table is pool and the id of the check box in the flex ui is also pool. in flex i have the following private function insertHandler():void{

RE: [SPAM] [flexcoders] Re: how to insert checkbox value into database

2009-11-18 Thread Tracy Spratt
: how to insert checkbox value into database yes am already using my app to input info into database, but for the value of the check box that is the one that isn't working.

[flexcoders] Re: how to insert checkbox value into database

2009-11-16 Thread stinasius
yes am already using my app to input info into database, but for the value of the check box that is the one that isn't working.

Re: [flexcoders] Re: how to insert checkbox value into database

2009-11-16 Thread Chris Downey
Is your app successfully putting any data into the database now, or is this the first attempt to get it working? On Mon, Nov 16, 2009 at 6:47 AM, stinasius wrote: > > > Tracy that's what i did but it does not work... > -- Chris Downey http://www.vaccine-tlc.org/ http://www.chrisdowney.name/ h

[flexcoders] Re: how to insert checkbox value into database

2009-11-16 Thread stinasius
Tracy that's what i did but it does not work...

RE: [SPAM] [flexcoders] Re: how to insert checkbox value into database

2009-11-15 Thread Tracy Spratt
Re: how to insert checkbox value into database sorry for being too slow... but can you please be a little more clear here is the code am using to do the inserting from a flex form into a database, please show me how i can use your code in here. thanks private function insertHand

[flexcoders] Re: how to insert checkbox value into database

2009-11-14 Thread stinasius
sorry for being too slow... but can you please be a little more clear here is the code am using to do the inserting from a flex form into a database, please show me how i can use your code in here. thanks private function insertHandler():void{ listManager.listProperty