create a runtime table in Ms Access database
-
I want to create table at runtime for an existing Ms Access database using ASP.net 2.0 and C#. Can anyone please guide me through it ?
-
I want to create table at runtime for an existing Ms Access database using ASP.net 2.0 and C#. Can anyone please guide me through it ?
arpita2006 wrote:
ASP.net 2.0
ASP.NET will not help you because that is a technology for web applications. ADO.NET is that part of the .NET Framework that deals with databases. With ADO.NET you can issue pretty much any commands that the underlying database understands. So you can use
OleDbCommand.ExecuteNonQuery()
to issueCREATE TABLE
commands. You will need to look up the MS Access reference for details of what SQL you need to perform these actions.
Upcoming Scottish Developers events: * Glasgow: Tell us what you want to see in 2007 My: Website | Blog | Photos
-
I want to create table at runtime for an existing Ms Access database using ASP.net 2.0 and C#. Can anyone please guide me through it ?
http://www.stpworks.com/DesktopDefault.aspx?tabindex=1&tabid=3&articleid=3[^]
Vasudevan Deepak Kumar Personal Homepage Tech Gossips