views:

309

answers:

4

If I were to create a Windows shared folder, put a database file in that folder to be shared among multiple users of our client app, is that an NFS or SMB shared folder?

A: 

That would be SMB.

Justin Niessner
A: 

I would say it is a SMB shared folder. The SMB (protocol) is the NFS (protocol) in the Windows world.

PeterMmm
So it's by OS? Are shares on UNIX/Linux/OSX NFS?
Ben Mc
not by OS (not anymore, at least); but by mentality. also, there are very few good NFS implementations for windows.
Javier
A: 

Any particular reason you're using a file-based db? A client-server product such as MS SQL Server or (ick) MySQL would be a better approach. With direct file access you're risking locking issues and other problems.

David Lively
My clients usually don't have servers, just computers where they share folders. Yes, locking issues is actually my concern because SQLite reports problems with locking on NFS file systems.
Ben Mc
+1  A: 

For the record it is now supposed to be referred to as CIFS (Common Internet File System). But yes, it is SMB.

jcm
+1: Hasn't been SMB for years now
OMG Ponies