> My mistake, I meant to say an mdf file. How can I
> access and modify an mdf file without MS Server
> installed on the machine?
mdf = one of the MS SQL Server data files.
Why would you want to do that? The SQL Server has to be running somewhere anyways or there is no point in the files. And it would probably be a really bad idea to try to modify them without going through a SQL Server.
But if you want to spend a lot of time (probably at least 6 months) figuring out the internal format and you want to tie yourself forever to one version of SQL Server (and probably one schema layout) then you could just access it like a file.
OK in that case let me just say what I am trying to achieve. I have an app that uses a database. I was wondering if there is anyway to use the application and the database file,but without the server running? maybe with MySQL? The goal is to be able to copy the software and the database file to another pc and have it work. But I am guessing that is not realistically possible?
> maybe with MySQL?
Definitely not.
> The goal is to be able to copy the
> software and the database file to another pc and have
> it work. But I am guessing that is not realistically
> possible?
Either you need the database server or you have to write something to interpret the format of the file.