Hi,

iam in windows application using c#..

iam uisng Firebird database..

my database path is like this:

string dsRelativePath = "database\\absolutemedia.fdb";

string dsAbsolutePath = Path.GetFullPath(dsRelativePath);

string ConnectionString = "ServerType=1;User=SYSDBA;Password=masterkey;Database=" + dsAbsolutePath;

this ConnectionString is working fine..

In my application i have to upload images from local directory..

when i browse for images folder thru OpenDialog Box,the dsAbsolutePath is changed to the imgaes folder automatically..

here image path variable name is also different...

can u please ,why this happened..

or

database path is correct ?