developing with sql server
-
hi, I am working on a cyber cafe program and using sql server express. Will I need to install sql server to the target pc's to use my program? And is there anything that I should be careful when compiling?
-
hi, I am working on a cyber cafe program and using sql server express. Will I need to install sql server to the target pc's to use my program? And is there anything that I should be careful when compiling?
Maybe. More detail would be helpful. Is it client/server? Only the server needs the server software.
-
hi, I am working on a cyber cafe program and using sql server express. Will I need to install sql server to the target pc's to use my program? And is there anything that I should be careful when compiling?
If you run your program locally as a server, you need to install. I think what you should be careful about is the connecting string of your database file.
-
Maybe. More detail would be helpful. Is it client/server? Only the server needs the server software.
the program is a client/server application and only server will be using the database locally One more question: if I compile my program, is the database I created included in the compilation? (I use VS C# Express with Sql exspress)
-
the program is a client/server application and only server will be using the database locally One more question: if I compile my program, is the database I created included in the compilation? (I use VS C# Express with Sql exspress)
teknolog123 wrote:
is the database I created included in the compilation
The data files? No. But you could include them in the deployment/installer project.
-
teknolog123 wrote:
is the database I created included in the compilation
The data files? No. But you could include them in the deployment/installer project.
thanks a lot!