D
Dino Buljubasic
Can somebody help with this problem please.
I need to create a temporary table from a table in SQL Server
database. The database table looks like:
id description other
1 aName ( 01/01/2000 - 01/01/2005) blah blah
.....
.....
I need to temporarily break this database table into a temporary table
of this form:
id desc startdate end date other
1 aName 01/01/2000 01/01/2005 blah blah
......
......
I need this so I can sort my temporary table by desc and startdate so
I can load this sorted info into my combo box.
I am thinking about using DataTable and DataRow objects but this does
not seam to be right way, or ???
Any help will be appreciated.
dino
I need to create a temporary table from a table in SQL Server
database. The database table looks like:
id description other
1 aName ( 01/01/2000 - 01/01/2005) blah blah
.....
.....
I need to temporarily break this database table into a temporary table
of this form:
id desc startdate end date other
1 aName 01/01/2000 01/01/2005 blah blah
......
......
I need this so I can sort my temporary table by desc and startdate so
I can load this sorted info into my combo box.
I am thinking about using DataTable and DataRow objects but this does
not seam to be right way, or ???
Any help will be appreciated.
dino