<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Database.Save and eFileInternalErr in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/database-save-and-efileinternalerr/m-p/2140856#M76052</link>
    <description>Tim - The reason I cited for why you can't use save()&lt;BR /&gt;
is the reason why save() is not implemented &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2008&lt;BR /&gt;
Supporting AutoCAD 2000 through 2008&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;T.WILLEY&gt; wrote in message news:5804951@discussion.autodesk.com...&lt;BR /&gt;
Wow! &lt;BR /&gt;
&lt;BR /&gt;
Now I see another reason why it wouldn't work.  Thanks Luis.&lt;/T.WILLEY&gt;</description>
    <pubDate>Wed, 19 Dec 2007 19:28:24 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2007-12-19T19:28:24Z</dc:date>
    <item>
      <title>Database.Save and eFileInternalErr</title>
      <link>https://forums.autodesk.com/t5/net-forum/database-save-and-efileinternalerr/m-p/2140848#M76044</link>
      <description>Hi, I'm calling this method from AutoCAD 2008 and managed objectarx:&lt;BR /&gt;
&lt;BR /&gt;
Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Database.Save()&lt;BR /&gt;
&lt;BR /&gt;
and I get this exception "eFileInternalErr" and dwg doesn't saves.&lt;BR /&gt;
&lt;BR /&gt;
How can I solve this? I cannot call "_qsave" command because I want to save immediately and continue only if save is successfull.&lt;BR /&gt;
Thanks</description>
      <pubDate>Tue, 18 Dec 2007 12:55:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/database-save-and-efileinternalerr/m-p/2140848#M76044</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-12-18T12:55:28Z</dc:date>
    </item>
    <item>
      <title>Re: Database.Save and eFileInternalErr</title>
      <link>https://forums.autodesk.com/t5/net-forum/database-save-and-efileinternalerr/m-p/2140849#M76045</link>
      <description>I know nothing about ObjectArx, but in other languages you have to use the SaveAs method, and not the Save method.  It is a bug in the their code as far as I know.</description>
      <pubDate>Tue, 18 Dec 2007 15:54:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/database-save-and-efileinternalerr/m-p/2140849#M76045</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-12-18T15:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: Database.Save and eFileInternalErr</title>
      <link>https://forums.autodesk.com/t5/net-forum/database-save-and-efileinternalerr/m-p/2140850#M76046</link>
      <description>/*&lt;BR /&gt;
T.Willey&lt;BR /&gt;
I know nothing about ObjectArx, but in other languages you have to use the &lt;BR /&gt;
SaveAs method, and not the Save method.  It is a bug in the their code as &lt;BR /&gt;
far as I know.&lt;BR /&gt;
*/&lt;BR /&gt;
&lt;BR /&gt;
Yes, I also never have been able to directly call db.Save();&lt;BR /&gt;
&lt;BR /&gt;
But, if you call the command SAVE, it works.</description>
      <pubDate>Tue, 18 Dec 2007 16:39:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/database-save-and-efileinternalerr/m-p/2140850#M76046</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-12-18T16:39:21Z</dc:date>
    </item>
    <item>
      <title>Re: Database.Save and eFileInternalErr</title>
      <link>https://forums.autodesk.com/t5/net-forum/database-save-and-efileinternalerr/m-p/2140851#M76047</link>
      <description>It works!&lt;BR /&gt;
&lt;BR /&gt;
Thanks to all,&lt;BR /&gt;
Stefano&lt;BR /&gt;
&lt;BR /&gt;
Website: http://www.be-st.it&lt;BR /&gt;
Blog: http://blog.be-st.it</description>
      <pubDate>Tue, 18 Dec 2007 21:24:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/database-save-and-efileinternalerr/m-p/2140851#M76047</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-12-18T21:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: Database.Save and eFileInternalErr</title>
      <link>https://forums.autodesk.com/t5/net-forum/database-save-and-efileinternalerr/m-p/2140852#M76048</link>
      <description>Tim - It's not a bug. &lt;BR /&gt;
&lt;BR /&gt;
You can't save a database to the same file it was read from, because it may not have been completely read in initially, so saving to the same file poses the risk of concurrently reading/writing to the same file.&lt;BR /&gt;
&lt;BR /&gt;
The SAVE command uses saveAs() to save to a different (e.g., temporary) file and then either deletes or renames the original to *.bak, and then renames the saved file to the original filename.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2008&lt;BR /&gt;
Supporting AutoCAD 2000 through 2008&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;T.WILLEY&gt; wrote in message news:5803866@discussion.autodesk.com...&lt;BR /&gt;
I know nothing about ObjectArx, but in other languages you have to use the SaveAs method, and not the Save method.  It is a bug in the their code as far as I know.&lt;/T.WILLEY&gt;</description>
      <pubDate>Tue, 18 Dec 2007 21:27:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/database-save-and-efileinternalerr/m-p/2140852#M76048</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-12-18T21:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: Database.Save and eFileInternalErr</title>
      <link>https://forums.autodesk.com/t5/net-forum/database-save-and-efileinternalerr/m-p/2140853#M76049</link>
      <description>Thanks Tony.  That makes sense.</description>
      <pubDate>Tue, 18 Dec 2007 21:51:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/database-save-and-efileinternalerr/m-p/2140853#M76049</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-12-18T21:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: Database.Save and eFileInternalErr</title>
      <link>https://forums.autodesk.com/t5/net-forum/database-save-and-efileinternalerr/m-p/2140854#M76050</link>
      <description>After reading Tony description, I went and read about AcDbDatabase Class in &lt;BR /&gt;
the ARX help - for the first time.&lt;BR /&gt;
&lt;BR /&gt;
AcDbDatabase::save Function&lt;BR /&gt;
Acad::ErrorStatus&lt;BR /&gt;
save();&lt;BR /&gt;
Currently not implemented. &amp;lt;&amp;lt;&amp;lt;=</description>
      <pubDate>Wed, 19 Dec 2007 15:21:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/database-save-and-efileinternalerr/m-p/2140854#M76050</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-12-19T15:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: Database.Save and eFileInternalErr</title>
      <link>https://forums.autodesk.com/t5/net-forum/database-save-and-efileinternalerr/m-p/2140855#M76051</link>
      <description>Wow! &lt;BR /&gt;
&lt;BR /&gt;
Now I see another reason why it wouldn't work.  Thanks Luis.</description>
      <pubDate>Wed, 19 Dec 2007 16:22:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/database-save-and-efileinternalerr/m-p/2140855#M76051</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-12-19T16:22:38Z</dc:date>
    </item>
    <item>
      <title>Re: Database.Save and eFileInternalErr</title>
      <link>https://forums.autodesk.com/t5/net-forum/database-save-and-efileinternalerr/m-p/2140856#M76052</link>
      <description>Tim - The reason I cited for why you can't use save()&lt;BR /&gt;
is the reason why save() is not implemented &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2008&lt;BR /&gt;
Supporting AutoCAD 2000 through 2008&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;T.WILLEY&gt; wrote in message news:5804951@discussion.autodesk.com...&lt;BR /&gt;
Wow! &lt;BR /&gt;
&lt;BR /&gt;
Now I see another reason why it wouldn't work.  Thanks Luis.&lt;/T.WILLEY&gt;</description>
      <pubDate>Wed, 19 Dec 2007 19:28:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/database-save-and-efileinternalerr/m-p/2140856#M76052</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-12-19T19:28:24Z</dc:date>
    </item>
    <item>
      <title>Re: Database.Save and eFileInternalErr</title>
      <link>https://forums.autodesk.com/t5/net-forum/database-save-and-efileinternalerr/m-p/2140857#M76053</link>
      <description>I'm wondering... in this case why return an error "eFileInternalErr"? Something like "eNotImplemented" or "eNotImplementedUseSaveAs" would be clearer.&lt;BR /&gt;
&lt;BR /&gt;
Anyway, thanks for your answer. It solved for me too.</description>
      <pubDate>Fri, 23 Jan 2009 15:12:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/database-save-and-efileinternalerr/m-p/2140857#M76053</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-01-23T15:12:00Z</dc:date>
    </item>
  </channel>
</rss>

