Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
Nathan Sokalski #1
File in use error
I am recieving an error about not being able to use a file because it is
already in use. Based on the error, I think it is referring to my DB, but I
don't know how to avoid the error or why it is happening. Here is the error:
Server Error in '/LVBEP' Application.
--------------------------------------------------------------------------------
Could not use ''; file already in use.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.
Exception Details: System.Data.OleDb.OleDbException: Could not use ''; file
already in use.
Source Error:
Line 41: Dim memberadapter As New OleDb.OleDbDataAdapter("SELECT *
FROM members ORDER BY name", "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE="
& Server.MapPath("LVBEP.mdb"))
Line 42:
Line 43: memberadapter.Fill(members)
Line 44: datEditMembers.DataSource = members
Line 45: datEditMembers.DataBind()
Source File: C:\Inetpub\wwwroot\LVBEP\memberadmin.aspx.vb Line: 43
Stack Trace:
[OleDbException (0x80004005): Could not use ''; file already in use.]
System.Data.OleDb.OleDbConnection.ProcessResults(I nt32 hr) +20
System.Data.OleDb.OleDbConnection.InitializeProvid er() +57
System.Data.OleDb.OleDbConnection.Open() +203
System.Data.Common.DbDataAdapter.QuietOpen(IDbConn ection connection,
ConnectionState& originalState) +44
System.Data.Common.DbDataAdapter.FillFromCommand(O bject data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior) +304
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord,
Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior
behavior) +77
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet) +38
LVBEP.memberadmin.RefreshMembers() in
C:\Inetpub\wwwroot\LVBEP\memberadmin.aspx.vb:43
LVBEP.memberadmin.Page_Init(Object sender, EventArgs e) in
C:\Inetpub\wwwroot\LVBEP\memberadmin.aspx.vb:27
System.Web.UI.Control.OnInit(EventArgs e) +67
System.Web.UI.Control.InitRecursive(Control namingContainer) +241
System.Web.UI.Page.ProcessRequestMain() +197
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET
Version:1.1.4322.2032
--
Nathan Sokalski
[email]njsokalski@hotmail.com[/email]
[url]http://www.nathansokalski.com/[/url]
Nathan Sokalski Guest
-
File not found Error - even though file is there
{ Note: This is a resposted message from a different forum because I'm unsure where this topic best belongs. } I'm starting to get concerned. ... -
File Not found 404 Error -- while the file exists and mostly loads.
There is an ASP page in my site which sometimes gives file not found error. This page which is suppossedly missing exists on the server and... -
PHP Warning: InterBase: Error while trying to open file File too large
Hello, I have this configuration: kernel 2.3.20, apache 1.3.27, with php 4.2.3 as apxs module with firebirdCS-1.0.3-64IO I have problems with... -
File Access error - writing to .txt file
Normally web sites run under the ASPNET user account. It appears that this account does not have write privileges to the file path you've... -
Delete File Asp.NET Error: File is used by another process
Please, help! I have set Permission to Full Control to the user ASPNet_wp account to my Security folder. I have set UserName = "System"... -
Scott Mitchell [MVP] #2
Re: File in use error
Make sure your Access database file is NOT open in Windows. I.e., make
sure you are closed out of it. I don't know if that's the cause of YOUR
error, but I do know that things can get 'funky' if you have Access
opened, inspecting/modifying your database, and you try to work with it
via an ASP.NET page...
hth
Nathan Sokalski wrote:> I am recieving an error about not being able to use a file because it is
> already in use. Based on the error, I think it is referring to my DB, but I
> don't know how to avoid the error or why it is happening. Here is the error:
> Server Error in '/LVBEP' Application.
> --------------------------------------------------------------------------------
>
> Could not use ''; file already in use.
> Description: An unhandled exception occurred during the execution of the
> current web request. Please review the stack trace for more information
> about the error and where it originated in the code.
>
> Exception Details: System.Data.OleDb.OleDbException: Could not use ''; file
> already in use.
>
> Source Error:
>
> Line 41: Dim memberadapter As New OleDb.OleDbDataAdapter("SELECT *
> FROM members ORDER BY name", "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE="
> & Server.MapPath("LVBEP.mdb"))
> Line 42:
> Line 43: memberadapter.Fill(members)
> Line 44: datEditMembers.DataSource = members
> Line 45: datEditMembers.DataBind()
>
> Source File: C:\Inetpub\wwwroot\LVBEP\memberadmin.aspx.vb Line: 43
>
> Stack Trace:
>
> [OleDbException (0x80004005): Could not use ''; file already in use.]
> System.Data.OleDb.OleDbConnection.ProcessResults(I nt32 hr) +20
> System.Data.OleDb.OleDbConnection.InitializeProvid er() +57
> System.Data.OleDb.OleDbConnection.Open() +203
> System.Data.Common.DbDataAdapter.QuietOpen(IDbConn ection connection,
> ConnectionState& originalState) +44
> System.Data.Common.DbDataAdapter.FillFromCommand(O bject data, Int32
> startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
> CommandBehavior behavior) +304
> System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord,
> Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior
> behavior) +77
> System.Data.Common.DbDataAdapter.Fill(DataSet dataSet) +38
> LVBEP.memberadmin.RefreshMembers() in
> C:\Inetpub\wwwroot\LVBEP\memberadmin.aspx.vb:43
> LVBEP.memberadmin.Page_Init(Object sender, EventArgs e) in
> C:\Inetpub\wwwroot\LVBEP\memberadmin.aspx.vb:27
> System.Web.UI.Control.OnInit(EventArgs e) +67
> System.Web.UI.Control.InitRecursive(Control namingContainer) +241
> System.Web.UI.Page.ProcessRequestMain() +197
>
>
>
> --------------------------------------------------------------------------------
> Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET
> Version:1.1.4322.2032
--
Scott Mitchell [ASP.NET MVP]
[email]mitchell@4GuysFromRolla.com[/email]
[url]http://www.4GuysFromRolla.com/ScottMitchell[/url]
Scott Mitchell [MVP] Guest
-
Nathan Sokalski #3
Re: File in use error
I did not have Access (or any other programs that use Access or any Access
DBs) open at the time. I even tried restarting my computer to make sure
nothing was running in the background, but it did not help.
--
Nathan Sokalski
[email]njsokalski@hotmail.com[/email]
[url]http://www.nathansokalski.com/[/url]
"Scott Mitchell [MVP]" <mitchell@4guysfromrolla.com> wrote in message
news:UNmXe.92$9E2.31@newssvr11.news.prodigy.com...> Make sure your Access database file is NOT open in Windows. I.e., make
> sure you are closed out of it. I don't know if that's the cause of YOUR
> error, but I do know that things can get 'funky' if you have Access
> opened, inspecting/modifying your database, and you try to work with it
> via an ASP.NET page...
>
> hth
>
>
>
> Nathan Sokalski wrote:>>> I am recieving an error about not being able to use a file because it is
>> already in use. Based on the error, I think it is referring to my DB, but
>> I don't know how to avoid the error or why it is happening. Here is the
>> error:
>> Server Error in '/LVBEP' Application.
>> --------------------------------------------------------------------------------
>>
>> Could not use ''; file already in use.
>> Description: An unhandled exception occurred during the execution of the
>> current web request. Please review the stack trace for more information
>> about the error and where it originated in the code.
>>
>> Exception Details: System.Data.OleDb.OleDbException: Could not use '';
>> file already in use.
>>
>> Source Error:
>>
>> Line 41: Dim memberadapter As New OleDb.OleDbDataAdapter("SELECT
>> * FROM members ORDER BY name", "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA
>> SOURCE=" & Server.MapPath("LVBEP.mdb"))
>> Line 42:
>> Line 43: memberadapter.Fill(members)
>> Line 44: datEditMembers.DataSource = members
>> Line 45: datEditMembers.DataBind()
>>
>> Source File: C:\Inetpub\wwwroot\LVBEP\memberadmin.aspx.vb Line: 43
>>
>> Stack Trace:
>>
>> [OleDbException (0x80004005): Could not use ''; file already in use.]
>> System.Data.OleDb.OleDbConnection.ProcessResults(I nt32 hr) +20
>> System.Data.OleDb.OleDbConnection.InitializeProvid er() +57
>> System.Data.OleDb.OleDbConnection.Open() +203
>> System.Data.Common.DbDataAdapter.QuietOpen(IDbConn ection connection,
>> ConnectionState& originalState) +44
>> System.Data.Common.DbDataAdapter.FillFromCommand(O bject data, Int32
>> startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
>> CommandBehavior behavior) +304
>> System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32
>> startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
>> CommandBehavior behavior) +77
>> System.Data.Common.DbDataAdapter.Fill(DataSet dataSet) +38
>> LVBEP.memberadmin.RefreshMembers() in
>> C:\Inetpub\wwwroot\LVBEP\memberadmin.aspx.vb:43
>> LVBEP.memberadmin.Page_Init(Object sender, EventArgs e) in
>> C:\Inetpub\wwwroot\LVBEP\memberadmin.aspx.vb:27
>> System.Web.UI.Control.OnInit(EventArgs e) +67
>> System.Web.UI.Control.InitRecursive(Control namingContainer) +241
>> System.Web.UI.Page.ProcessRequestMain() +197
>>
>>
>>
>> --------------------------------------------------------------------------------
>> Version Information: Microsoft .NET Framework Version:1.1.4322.2032;
>> ASP.NET Version:1.1.4322.2032
>
> --
>
> Scott Mitchell [ASP.NET MVP]
> [email]mitchell@4GuysFromRolla.com[/email]
> [url]http://www.4GuysFromRolla.com/ScottMitchell[/url]
Nathan Sokalski Guest
-
Pipo #4
Re: File in use error
If you right click on the access DB and choose for properties is the
checkbox 'read-only' checked?
If so uncheck it.
"Nathan Sokalski" <njsokalski@hotmail.com> wrote in message
news:Oo6v46KvFHA.2948@TK2MSFTNGP15.phx.gbl...is> I did not have Access (or any other programs that use Access or any Access
> DBs) open at the time. I even tried restarting my computer to make sure
> nothing was running in the background, but it did not help.
> --
> Nathan Sokalski
> [email]njsokalski@hotmail.com[/email]
> [url]http://www.nathansokalski.com/[/url]
>
> "Scott Mitchell [MVP]" <mitchell@4guysfromrolla.com> wrote in message
> news:UNmXe.92$9E2.31@newssvr11.news.prodigy.com...> > Make sure your Access database file is NOT open in Windows. I.e., make
> > sure you are closed out of it. I don't know if that's the cause of YOUR
> > error, but I do know that things can get 'funky' if you have Access
> > opened, inspecting/modifying your database, and you try to work with it
> > via an ASP.NET page...
> >
> > hth
> >
> >
> >
> > Nathan Sokalski wrote:> >> I am recieving an error about not being able to use a file because itbut> >> already in use. Based on the error, I think it is referring to my DB,------->> >> I don't know how to avoid the error or why it is happening. Here is the
> >> error:
> >> Server Error in '/LVBEP' Application.>> -------------------------------------------------------------------------the> >>
> >> Could not use ''; file already in use.
> >> Description: An unhandled exception occurred during the execution ofOleDb.OleDbDataAdapter("SELECT> >> current web request. Please review the stack trace for more information
> >> about the error and where it originated in the code.
> >>
> >> Exception Details: System.Data.OleDb.OleDbException: Could not use '';
> >> file already in use.
> >>
> >> Source Error:
> >>
> >> Line 41: Dim memberadapter As New------->> >> * FROM members ORDER BY name", "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA
> >> SOURCE=" & Server.MapPath("LVBEP.mdb"))
> >> Line 42:
> >> Line 43: memberadapter.Fill(members)
> >> Line 44: datEditMembers.DataSource = members
> >> Line 45: datEditMembers.DataBind()
> >>
> >> Source File: C:\Inetpub\wwwroot\LVBEP\memberadmin.aspx.vb Line: 43
> >>
> >> Stack Trace:
> >>
> >> [OleDbException (0x80004005): Could not use ''; file already in use.]
> >> System.Data.OleDb.OleDbConnection.ProcessResults(I nt32 hr) +20
> >> System.Data.OleDb.OleDbConnection.InitializeProvid er() +57
> >> System.Data.OleDb.OleDbConnection.Open() +203
> >> System.Data.Common.DbDataAdapter.QuietOpen(IDbConn ection connection,
> >> ConnectionState& originalState) +44
> >> System.Data.Common.DbDataAdapter.FillFromCommand(O bject data, Int32
> >> startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
> >> CommandBehavior behavior) +304
> >> System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32
> >> startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
> >> CommandBehavior behavior) +77
> >> System.Data.Common.DbDataAdapter.Fill(DataSet dataSet) +38
> >> LVBEP.memberadmin.RefreshMembers() in
> >> C:\Inetpub\wwwroot\LVBEP\memberadmin.aspx.vb:43
> >> LVBEP.memberadmin.Page_Init(Object sender, EventArgs e) in
> >> C:\Inetpub\wwwroot\LVBEP\memberadmin.aspx.vb:27
> >> System.Web.UI.Control.OnInit(EventArgs e) +67
> >> System.Web.UI.Control.InitRecursive(Control namingContainer) +241
> >> System.Web.UI.Page.ProcessRequestMain() +197
> >>
> >>
> >>>> ------------------------------------------------------------------------->> >> >> Version Information: Microsoft .NET Framework Version:1.1.4322.2032;
> >> ASP.NET Version:1.1.4322.2032
> >
> > --
> >
> > Scott Mitchell [ASP.NET MVP]
> > [email]mitchell@4GuysFromRolla.com[/email]
> > [url]http://www.4GuysFromRolla.com/ScottMitchell[/url]
>
Pipo Guest
-
Bob #5
Re: File in use error
Nathan:
Make sure your closing your connection after you access your data in your
code.
Look for a file LVBEP..ldb on the server in the same dir as the LVBEP.mdb
file. If it it's there, delete it.
If you have access to the IIS Administrator, open the IIS Admin.
Right click the site and click properties. Click the "home Directory" tab
and click the "Unload" button then delete the LVBEP.ldb file.
Then try your connection again. As I said, make extra sure your closing the
connection in your code.
MyOLEDBConnection.Open()
Fill your dataAdapters
MyOLEDBConnection.Close()
By chance, your not developing against a DB that is also in production are
you?
Make sure your Access file is not in the root. Put it in a sub dir of the
root and don't give the "Everyone" account read permissions.
Be sure not to load data directly into a session object. Use sessions
sparingly.
HTH
Bob
Bob Guest
-
Nathan Sokalski #6
Re: File in use error
ReadOnly was not checked.
--
Nathan Sokalski
[email]njsokalski@hotmail.com[/email]
[url]http://www.nathansokalski.com/[/url]
"Pipo" <NoSpam@me.com> wrote in message
news:OSRh%23$OvFHA.3792@TK2MSFTNGP10.phx.gbl...> If you right click on the access DB and choose for properties is the
> checkbox 'read-only' checked?
> If so uncheck it.
>
>
> "Nathan Sokalski" <njsokalski@hotmail.com> wrote in message
> news:Oo6v46KvFHA.2948@TK2MSFTNGP15.phx.gbl...> is>> I did not have Access (or any other programs that use Access or any
>> Access
>> DBs) open at the time. I even tried restarting my computer to make sure
>> nothing was running in the background, but it did not help.
>> --
>> Nathan Sokalski
>> [email]njsokalski@hotmail.com[/email]
>> [url]http://www.nathansokalski.com/[/url]
>>
>> "Scott Mitchell [MVP]" <mitchell@4guysfromrolla.com> wrote in message
>> news:UNmXe.92$9E2.31@newssvr11.news.prodigy.com...>> > Make sure your Access database file is NOT open in Windows. I.e., make
>> > sure you are closed out of it. I don't know if that's the cause of
>> > YOUR
>> > error, but I do know that things can get 'funky' if you have Access
>> > opened, inspecting/modifying your database, and you try to work with it
>> > via an ASP.NET page...
>> >
>> > hth
>> >
>> >
>> >
>> > Nathan Sokalski wrote:
>> >> I am recieving an error about not being able to use a file because it> but>> >> already in use. Based on the error, I think it is referring to my DB,> ------->>>> >> I don't know how to avoid the error or why it is happening. Here is
>> >> the
>> >> error:
>> >> Server Error in '/LVBEP' Application.>>> -------------------------------------------------------------------------> the>> >>
>> >> Could not use ''; file already in use.
>> >> Description: An unhandled exception occurred during the execution of> OleDb.OleDbDataAdapter("SELECT>> >> current web request. Please review the stack trace for more
>> >> information
>> >> about the error and where it originated in the code.
>> >>
>> >> Exception Details: System.Data.OleDb.OleDbException: Could not use '';
>> >> file already in use.
>> >>
>> >> Source Error:
>> >>
>> >> Line 41: Dim memberadapter As New> ------->>>> >> * FROM members ORDER BY name", "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA
>> >> SOURCE=" & Server.MapPath("LVBEP.mdb"))
>> >> Line 42:
>> >> Line 43: memberadapter.Fill(members)
>> >> Line 44: datEditMembers.DataSource = members
>> >> Line 45: datEditMembers.DataBind()
>> >>
>> >> Source File: C:\Inetpub\wwwroot\LVBEP\memberadmin.aspx.vb Line: 43
>> >>
>> >> Stack Trace:
>> >>
>> >> [OleDbException (0x80004005): Could not use ''; file already in use.]
>> >> System.Data.OleDb.OleDbConnection.ProcessResults(I nt32 hr) +20
>> >> System.Data.OleDb.OleDbConnection.InitializeProvid er() +57
>> >> System.Data.OleDb.OleDbConnection.Open() +203
>> >> System.Data.Common.DbDataAdapter.QuietOpen(IDbConn ection
>> >> connection,
>> >> ConnectionState& originalState) +44
>> >> System.Data.Common.DbDataAdapter.FillFromCommand(O bject data, Int32
>> >> startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
>> >> CommandBehavior behavior) +304
>> >> System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32
>> >> startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
>> >> CommandBehavior behavior) +77
>> >> System.Data.Common.DbDataAdapter.Fill(DataSet dataSet) +38
>> >> LVBEP.memberadmin.RefreshMembers() in
>> >> C:\Inetpub\wwwroot\LVBEP\memberadmin.aspx.vb:43
>> >> LVBEP.memberadmin.Page_Init(Object sender, EventArgs e) in
>> >> C:\Inetpub\wwwroot\LVBEP\memberadmin.aspx.vb:27
>> >> System.Web.UI.Control.OnInit(EventArgs e) +67
>> >> System.Web.UI.Control.InitRecursive(Control namingContainer) +241
>> >> System.Web.UI.Page.ProcessRequestMain() +197
>> >>
>> >>
>> >>>>> ------------------------------------------------------------------------->>>>> >> Version Information: Microsoft .NET Framework Version:1.1.4322.2032;
>> >> ASP.NET Version:1.1.4322.2032
>> >
>> >
>> > --
>> >
>> > Scott Mitchell [ASP.NET MVP]
>> > [email]mitchell@4GuysFromRolla.com[/email]
>> > [url]http://www.4GuysFromRolla.com/ScottMitchell[/url]
>>
>
Nathan Sokalski Guest



Reply With Quote

