Click here to Skip to main content
15,912,756 members
Home / Discussions / C#
   

C#

 
GeneralRe: Getting table names from .mdb Pin
benglish7229-Jun-04 14:30
benglish7229-Jun-04 14:30 
GeneralRe: Getting table names from .mdb Pin
Heath Stewart29-Jun-04 17:17
protectorHeath Stewart29-Jun-04 17:17 
QuestionHow to config **.exe.config by programming Pin
chansion28-Jun-04 15:04
chansion28-Jun-04 15:04 
AnswerRe: How to config **.exe.config by programming Pin
Dave Kreskowiak28-Jun-04 16:35
mveDave Kreskowiak28-Jun-04 16:35 
GeneralRe: How to config **.exe.config by programming Pin
Tom Larsen29-Jun-04 6:05
Tom Larsen29-Jun-04 6:05 
AnswerRe: How to config **.exe.config by programming Pin
Heath Stewart29-Jun-04 4:28
protectorHeath Stewart29-Jun-04 4:28 
GeneralParse Custom XML type into DataSet Pin
james-cxx28-Jun-04 14:58
james-cxx28-Jun-04 14:58 
GeneralRe: Parse Custom XML type into DataSet Pin
Heath Stewart29-Jun-04 4:15
protectorHeath Stewart29-Jun-04 4:15 
Not without having to serialize the entire DataSet itself (using the undocumented IXmlSerializable interface) - not exactly something you want to do (it gets pretty complex if you want to remain compatible with the functionality of the DataSet).

You could try, however, to create a typed DataSet (using xsd.exe or the DataSet designer in VS.NET - right-click on your project or project folder, select Add->Add New Item and add a "DataSet"), then modify the hidden source code (use Project->Show All Files) to transform a string into a float[].

Keep in mind, however, that most databases (Oracle is the only major database I can think of that can hold an array, IIRC) can't hold arrays. So, in Access, MS SQL Server/MSDE, MySQL, etc., this would only be a string. So should it be in your DataSet (well, in most cases). Your caller should be responsibe for serializing and deserializing that string to/from a float[], from a logical perspective.

 

Microsoft MVP, Visual C#
My Articles
GeneralRe: Parse Custom XML type into DataSet Pin
james-cxx30-Jun-04 14:42
james-cxx30-Jun-04 14:42 
GeneralShutDown Computer Pin
The_Soul_Of_Rock28-Jun-04 14:43
The_Soul_Of_Rock28-Jun-04 14:43 
GeneralRe: ShutDown Computer Pin
Dave Kreskowiak28-Jun-04 16:33
mveDave Kreskowiak28-Jun-04 16:33 
GeneralRe: ShutDown Computer Pin
Colin Angus Mackay29-Jun-04 3:18
Colin Angus Mackay29-Jun-04 3:18 
GeneralRe: ShutDown Computer Pin
Dave Kreskowiak29-Jun-04 3:51
mveDave Kreskowiak29-Jun-04 3:51 
GeneralRe: ShutDown Computer Pin
Heath Stewart29-Jun-04 4:05
protectorHeath Stewart29-Jun-04 4:05 
GeneralRe: ShutDown Computer Pin
Dave Kreskowiak29-Jun-04 5:47
mveDave Kreskowiak29-Jun-04 5:47 
GeneralRe: ShutDown Computer Pin
Heath Stewart29-Jun-04 6:09
protectorHeath Stewart29-Jun-04 6:09 
GeneralRe: ShutDown Computer Pin
Dave Kreskowiak29-Jun-04 8:28
mveDave Kreskowiak29-Jun-04 8:28 
QuestionHow to use Raster/Bitmap Fonts ... ? Pin
nbjahan28-Jun-04 13:55
nbjahan28-Jun-04 13:55 
AnswerRe: How to use Raster/Bitmap Fonts ... ? Pin
Karl 200029-Jun-04 3:54
Karl 200029-Jun-04 3:54 
GeneralExporting toCSV Pin
Member 120485128-Jun-04 12:03
Member 120485128-Jun-04 12:03 
GeneralRe: Exporting toCSV Pin
Dave Kreskowiak29-Jun-04 3:43
mveDave Kreskowiak29-Jun-04 3:43 
GeneralRe: Exporting toCSV Pin
Member 120485129-Jun-04 10:50
Member 120485129-Jun-04 10:50 
GeneralRe: Exporting toCSV Pin
Heath Stewart29-Jun-04 3:58
protectorHeath Stewart29-Jun-04 3:58 
GeneralRe: Exporting toCSV Pin
Member 120485129-Jun-04 10:53
Member 120485129-Jun-04 10:53 
GeneralRe: Exporting toCSV Pin
Heath Stewart29-Jun-04 11:10
protectorHeath Stewart29-Jun-04 11:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.