2
Answers

Numeric values to alphabetical.

emmanuel okoh

emmanuel okoh

10y
688
1
Good morning my fellow programmers,Please can someone help me;

"I want to display my output result in words and in numeric,I did the numeric successfully but am find it difficult to do the words".

In the design view,I have 2 textboxes,I want one of them to display number(in figures) while the other one will display(numbers in words) words.


Thanks.

Answers (2)
0
spartakiran

spartakiran

NA 6 0 19y

Two completly defrent databases
One is Oracle another is Sybase.
What I need is bulk extractions from one database to another

Database tables are similar(not exactly the same as they are deferent databases)
E.g. 
DB1 -- TableA
Col1 varchar
Col2  number

E.g. in DB2 -- TableA
Colx varchar
Coly  number

0
Dave

Dave

NA 2 0 19y
How different are the schemas? IE does one table have fields the other doesn't?  

If anything, you could create the first Dataset from DatabaseA, then create another Dataset from 
a DataAdapter against DatabaseB, copy the information from the first dataset to the second, then use
the DataAdapter to write the information back to DatabaseB.

I'm sure theres a better way, for instance i'm sure theres a way to modify the schema on the tables
in the Dataset, then just use another DataAdapter to write the info back.

Of course, if you can use Stored Procedures on the two servers, you could just do it that way and
not fool around with Datasets.
0
spartakiran

spartakiran

NA 6 0 19y
No! schemas are deferent
Is it possible to map the column names to update command?
0
Mihir Solanki

Mihir Solanki

NA 20 0 19y
Yes you can do it... make sure schema of both database tables are same...