| View previous topic :: View next topic |
| Author |
Message |
estevan Guest
|
Posted: Tue Sep 13, 2005 9:04 pm Post subject: TTable -> null value on winxp vs win2k |
|
|
Hi all,
I'm working with C++ Builder 5 on Windows XP.
I have this problem...
I have a table and I want set to NULL a field.
I try it with this istruction:
MyTable->Fields->FieldByName("name")->Clear();
But it doesn't run! This set the value of the field to 0
But if I compile the same istruction on windows 2000 it runs very well!!
Please help me...
thank in advance
Estevan
|
|
| Back to top |
|
 |
Marko Krizmanic Guest
|
Posted: Fri Sep 30, 2005 12:28 pm Post subject: Re: TTable -> null value on winxp vs win2k |
|
|
You sholud execute query like this:
UPDATE TABLE
SET NAME=NULL
"estevan" <estefan.civera (AT) email (DOT) it> wrote
| Quote: | Hi all,
I'm working with C++ Builder 5 on Windows XP.
I have this problem...
I have a table and I want set to NULL a field.
I try it with this istruction:
MyTable->Fields->FieldByName("name")->Clear();
But it doesn't run! This set the value of the field to 0
But if I compile the same istruction on windows 2000 it runs very well!!
Please help me...
thank in advance
Estevan
|
|
|
| Back to top |
|
 |
|