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

C#

 
GeneralRe: What is the logic for WebService methods ? Pin
MehmetFurkan20-Aug-07 0:09
MehmetFurkan20-Aug-07 0:09 
GeneralRe: What is the logic for WebService methods ? Pin
Talal Sultan20-Aug-07 1:38
Talal Sultan20-Aug-07 1:38 
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 
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.


Yes, that's all it has going for it.

Infernojericho wrote:
Could the results be disastrous?


I'm not really sure what concurrency support Access has, how many users are you thinking of ? More than one user, implies that this is a distributed app, so it probably makes sense to consider setting up a SQL Server instance on the server. Having the DB on the server negates any question of security, it's access to the server that is your first line of defence there.

Infernojericho wrote:
How exactly does those M$ SQL Server and Oracle work?


They use services to run their main program, and they also create just a data file, the difference is simply that the main DB has to be connected to it.

Infernojericho wrote:
How do I upload the database to the webserver.


The way I do it, when I have to, is to do a backup of my local DB, then copy the file to the server, terminal services in, and use the local SQL Server to restore my backup file.

Infernojericho wrote:
And is M$ SQL server free for download?


SQL Server is actually cheap, compared to Oracle, but it's quite expensive, in real terms. As I said previously, SS Express is free, it only allows 5 connections or something, tho. If this is a web app, and you get it hosted, you may want to look into MySQL, just because a lot of hosts support it, I believe. But, I am sure you can find hosts with SQL Server hosting.

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


Never heard of it, could he mean SQL Server Express ?

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


SQL Server is a real database, Access isn't quite. You can run any SQL you like on a SQL Server instance, and you can write SQL to create any database.



Christian Graus - Microsoft MVP - C++

"I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )

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 
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 

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.