Creating Files
-
I have a database program. I am using accses databese with Microsoft.JET.4 Engine. Can i create a database with jet. If no, then i want to my own program create own database inplented in my project. How can i do this in "Less painful" way. I hope you understand this, what i have to ask
-
I have a database program. I am using accses databese with Microsoft.JET.4 Engine. Can i create a database with jet. If no, then i want to my own program create own database inplented in my project. How can i do this in "Less painful" way. I hope you understand this, what i have to ask
hi Saksida Bojan! The most unpainful way is to create XML files because .NET provides very comprehensive namespace for xml called System::Xml just use this and it will be even easier if you use serialization to deal with your XML files which can be found in System::Xml::Serialization. I have done it in VB and it worked fine for me, provided if you are not going to use very huge data processing. Hope it helps. osAma
-
hi Saksida Bojan! The most unpainful way is to create XML files because .NET provides very comprehensive namespace for xml called System::Xml just use this and it will be even easier if you use serialization to deal with your XML files which can be found in System::Xml::Serialization. I have done it in VB and it worked fine for me, provided if you are not going to use very huge data processing. Hope it helps. osAma
I don't use xml file, but Access database throu Microsoft.Jet.4
-
I have a database program. I am using accses databese with Microsoft.JET.4 Engine. Can i create a database with jet. If no, then i want to my own program create own database inplented in my project. How can i do this in "Less painful" way. I hope you understand this, what i have to ask
You can easily create a Jet database using ADOX. Here's an example in C#. http://support.microsoft.com/kb/317881/EN-US/[^] After you create the catalog you can add tables, then columns. I use this technique in one of my products. Hope this helps. - Drew
-
You can easily create a Jet database using ADOX. Here's an example in C#. http://support.microsoft.com/kb/317881/EN-US/[^] After you create the catalog you can add tables, then columns. I use this technique in one of my products. Hope this helps. - Drew
Thanks. A lot. I'am changing entire core structer, so i don't have a time to test. When i finished then i will implent this structure.