Click here to Skip to main content
15,889,335 members
Home / Discussions / C#
   

C#

 
QuestionIs it possible to create an Access database with Pure C# Code Pin
Infernojericho19-Aug-07 23:04
Infernojericho19-Aug-07 23:04 
AnswerRe: Is it possible to create an Access database with Pure C# Code Pin
Christian Graus20-Aug-07 0:01
protectorChristian Graus20-Aug-07 0:01 
GeneralRe: Is it possible to create an Access database with Pure C# Code Pin
Syed Mujtaba Hassan20-Aug-07 2:51
Syed Mujtaba Hassan20-Aug-07 2:51 
AnswerRe: Is it possible to create an Access database with Pure C# Code Pin
Talal Sultan20-Aug-07 0:03
Talal Sultan20-Aug-07 0:03 
GeneralRe: Is it possible to create an Access database with Pure C# Code Pin
Infernojericho20-Aug-07 0:35
Infernojericho20-Aug-07 0:35 
GeneralRe: Is it possible to create an Access database with Pure C# Code Pin
Christian Graus20-Aug-07 0:45
protectorChristian Graus20-Aug-07 0:45 
GeneralRe: Is it possible to create an Access database with Pure C# Code Pin
Talal Sultan20-Aug-07 1:48
Talal Sultan20-Aug-07 1:48 
GeneralRe: Is it possible to create an Access database with Pure C# Code Pin
J4amieC20-Aug-07 1:02
J4amieC20-Aug-07 1:02 
Infernojericho wrote:
The reason I choose Access is because of simplicity, everything is stored in a file; all I have to is upload a file and voila.


True, but the basics of SQL Server are not much different from the basics of Access.


Infernojericho wrote:
What happens if I had 2 people accessing the same piece of data, and coincidently modifying it at the exact same time (with Access). Could the results be disastrous?


This is an issue for all databases. If 2 users try to concurrently write records in SQL its just as problematic. You must deal with concurrency issues whatever database you choose.


Infernojericho wrote:
ow do I upload the database to the webserver. Is there any database files (as with Access?) for SQL Server? I've been long baffled by the this. And is M$ SQL server free for download?


Using the term "M$" looks childish. Microsoft is a corporation and just like all corps they like making $$$. Choose MySQL or some other open source database if you are offended by a commercial entity making money!

In answer to your question. There are database files with SQL Server in a similar way to access. There are 2 files representing the database and the transaction log - it is NOT just a case of copying them to a server though - they must be attached to an instance of a running SQL Server. You can also backup your local copy (used in development) and restore that to the sql server instance at your hosting provider. SQL Server express edition (a cut-down local version of the server but fully featured) is free.


Infernojericho wrote:
I also spoke to someone else, he said I could give SQL-Lite a try, exactly what is it?


A competing product for the likes of SQL Server express.


Infernojericho wrote:
I can assume that I am able to create databases on the fly with SQL Server?


You can, but as you've already been advised its a really really really bad idea! Read up on defining a database schema that is dynamic by design.




GeneralRe: Is it possible to create an Access database with Pure C# Code Pin
JoeSharp20-Aug-07 1:02
JoeSharp20-Aug-07 1:02 
QuestionActive Directory Integration using C#.net Pin
shanthivasan19-Aug-07 22:26
shanthivasan19-Aug-07 22:26 
AnswerRe: Active Directory Integration using C#.net Pin
sathish s19-Aug-07 22:44
sathish s19-Aug-07 22:44 
GeneralRe: Active Directory Integration using C#.net Pin
shanthivasan19-Aug-07 23:33
shanthivasan19-Aug-07 23:33 
GeneralRe: Active Directory Integration using C#.net Pin
sathish s20-Aug-07 3:24
sathish s20-Aug-07 3:24 
GeneralRe: Active Directory Integration using C#.net Pin
shanthivasan20-Aug-07 3:31
shanthivasan20-Aug-07 3:31 
AnswerRe: Active Directory Integration using C#.net Pin
ekynox20-Aug-07 12:57
ekynox20-Aug-07 12:57 
QuestionC# 3.0 Limitation: Type Inference & Lambda Expressions Pin
SHaroz19-Aug-07 22:14
SHaroz19-Aug-07 22:14 
AnswerRe: C# 3.0 Limitation: Type Inference & Lambda Expressions Pin
originSH19-Aug-07 22:23
originSH19-Aug-07 22:23 
GeneralRe: C# 3.0 Limitation: Type Inference & Lambda Expressions Pin
SHaroz19-Aug-07 22:59
SHaroz19-Aug-07 22:59 
GeneralRe: C# 3.0 Limitation: Type Inference & Lambda Expressions Pin
originSH20-Aug-07 0:04
originSH20-Aug-07 0:04 
QuestionMutex and user account Pin
MarioMARTIN19-Aug-07 22:08
MarioMARTIN19-Aug-07 22:08 
AnswerRe: Mutex and user account Pin
Guffa20-Aug-07 0:53
Guffa20-Aug-07 0:53 
GeneralRe: Mutex and user account Pin
MarioMARTIN20-Aug-07 1:31
MarioMARTIN20-Aug-07 1:31 
AnswerRe: Mutex and user account Pin
pbraun20-Aug-07 12:00
pbraun20-Aug-07 12:00 
GeneralRe: Mutex and user account Pin
MarioMARTIN20-Aug-07 20:47
MarioMARTIN20-Aug-07 20:47 
GeneralRe: Mutex and user account Pin
MarioMARTIN20-Aug-07 21:26
MarioMARTIN20-Aug-07 21:26 

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.