hi there !
i create in sql server a database name 'db' then i create two tables event and resource i change in web config a datasource to my own sql server...
i have got error in this
<pre>
SQLiteDataAdapter da = new SQLiteDataAdapter("SELECT [id], [name], [bath], [beds] FROM [resource] WHERE beds = @beds or @beds = '0'", ConString.Get(this));
da.SelectCommand.Parameters.AddWithValue("beds", roomFilter);
DataTable dt = new DataTable();
da.Fill(dt);
</pre>
it says:
Unable to open the database file
i dont understand why it says it i copy my connection sting to my database...