<?xml version='1.0' encoding="utf-8"?>
      <rss version='2.0'>
      <channel>
      <title>Форум на Исходниках.RU</title>
      <link>https://forum.sources.ru</link>
      <description>Форум на Исходниках.RU</description>
      <generator>Форум на Исходниках.RU</generator>
  	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=252354&amp;view=findpost&amp;p=2087068</guid>
        <pubDate>Fri, 10 Oct 2008 08:54:13 +0000</pubDate>
        <title>Ошибка конекта к FireBird 2.1.1</title>
        <link>https://forum.sources.ru/index.php?showtopic=252354&amp;view=findpost&amp;p=2087068</link>
        <description><![CDATA[Vladonn: Снос FireBird 2.1.1 и замена его на FireBird 2.0.4 проблемму решила.]]></description>
        <author>Vladonn</author>
        <category>Java</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=252354&amp;view=findpost&amp;p=2086998</guid>
        <pubDate>Fri, 10 Oct 2008 07:45:36 +0000</pubDate>
        <title>Ошибка конекта к FireBird 2.1.1</title>
        <link>https://forum.sources.ru/index.php?showtopic=252354&amp;view=findpost&amp;p=2086998</link>
        <description><![CDATA[Vladonn: CLASSPATH вроде нормальный,<br>.;C:&#092;jdbc&#092;jaybird-full-2.1.5.jar;C:&#092;jdbc&#092;jaybird-2.1.5.jar;C:&#092;jdbc&#092;lib&#092;mini-j2ee.jar;C:&#092;jdbc&#092;lib&#092;log4j-core.jar;C:&#092;jdbc&#092;lib&#092;jaas.jar]]></description>
        <author>Vladonn</author>
        <category>Java</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=252354&amp;view=findpost&amp;p=2086536</guid>
        <pubDate>Thu, 09 Oct 2008 14:33:53 +0000</pubDate>
        <title>Ошибка конекта к FireBird 2.1.1</title>
        <link>https://forum.sources.ru/index.php?showtopic=252354&amp;view=findpost&amp;p=2086536</link>
        <description><![CDATA[Vladonn: Это понятно, порблема в том, что всё должно работать ... версия установленого FireBird 2.1.1, jaybird-2.1.5 в документации сказано, что они совместимы, другие FB до того на комп не ставились... база которую пытаюсь загрузить идем в коплекте к FireBird 2.1.1, из утилиты ISQL база читается..]]></description>
        <author>Vladonn</author>
        <category>Java</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=252354&amp;view=findpost&amp;p=2086459</guid>
        <pubDate>Thu, 09 Oct 2008 13:52:45 +0000</pubDate>
        <title>Ошибка конекта к FireBird 2.1.1</title>
        <link>https://forum.sources.ru/index.php?showtopic=252354&amp;view=findpost&amp;p=2086459</link>
        <description><![CDATA[artalex: <strong class='tag-b'>Vladonn</strong><br>
Засада в том, что БД не может понять формат файла employee.fdb, разве в сообщении об ощибке об этом ЯВНО не сказано? Или что по вашему означает &quot;unsupported on-disk structure&quot; ?]]></description>
        <author>artalex</author>
        <category>Java</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=252354&amp;view=findpost&amp;p=2086398</guid>
        <pubDate>Thu, 09 Oct 2008 12:40:53 +0000</pubDate>
        <title>Ошибка конекта к FireBird 2.1.1</title>
        <link>https://forum.sources.ru/index.php?showtopic=252354&amp;view=findpost&amp;p=2086398</link>
        <description><![CDATA[Vladonn: Поставил FireBird , прикрутил дрова<br>
<div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">public class Main {</div><div class="code_line">&nbsp;</div><div class="code_line">&nbsp;&nbsp; &nbsp;/**</div><div class="code_line">&nbsp;&nbsp; &nbsp; * @param args the command line arguments</div><div class="code_line">&nbsp;&nbsp; &nbsp; */</div><div class="code_line">&nbsp;&nbsp; &nbsp;public static void main(String[] args) throws SQLException {</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;</div><div class="code_line">&nbsp;&nbsp; &nbsp;///прикрутили драйвер</div><div class="code_line">&nbsp;&nbsp; &nbsp;try {</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp;Class.forName(&quot;org.firebirdsql.jdbc.FBDriver&quot;);</div><div class="code_line">&nbsp;&nbsp; &nbsp;} catch (ClassNotFoundException e) {</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;System.out.println(&quot;driver_error &quot;+e);</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp;throw new RuntimeException(e);</div><div class="code_line">&nbsp;&nbsp; &nbsp;}</div><div class="code_line">&nbsp;&nbsp; </div><div class="code_line">&nbsp;&nbsp; &nbsp;</div><div class="code_line">&nbsp;&nbsp; &nbsp;/// настроили свойства &nbsp; &nbsp;</div><div class="code_line">&nbsp;&nbsp; &nbsp;final Properties prop = new Properties();</div><div class="code_line">&nbsp;&nbsp; &nbsp;prop.put(&quot;user&quot;, &quot;SYSDBA&quot;);</div><div class="code_line">&nbsp;&nbsp; &nbsp;prop.put(&quot;password&quot;, &quot;masterkey&quot;);</div><div class="code_line">&nbsp;&nbsp; &nbsp;prop.put(&quot;charSet&quot;, &quot;Cp1251&quot;);</div><div class="code_line">&nbsp;&nbsp; &nbsp;prop.put(&quot;lc_ctype&quot;, &quot;WIN1251&quot;);</div><div class="code_line">&nbsp;&nbsp; &nbsp;prop.put(&quot;TRANSACTION_SERIALIZABLE&quot;, &quot;concurrency,nowait,no_auto_undo&quot;);</div><div class="code_line">&nbsp;&nbsp; &nbsp;prop.put(&quot;TRANSACTION_REPEATABLE_READ&quot;, &quot;consistency,wait,no_auto_undo&quot;);</div><div class="code_line">&nbsp;&nbsp; &nbsp;prop.put(&quot;TRANSACTION_READ_COMMITTED&quot;, &quot;read_committed,rec_version,wait,no_auto_undo&quot;);</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</div><div class="code_line">&nbsp;&nbsp; &nbsp;</div><div class="code_line">&nbsp;&nbsp; &nbsp;//пытаемя законектится</div><div class="code_line">&nbsp;&nbsp; &nbsp;</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;try{</div><div class="code_line">&nbsp;&nbsp; &nbsp;Connection Conn = DriverManager.getConnection(</div><div class="code_line">&nbsp;&nbsp; &nbsp;&quot;jdbc:firebirdsql:localhost/3050:C:\Program Files\Firebird\Firebird_2_1\examples\empbuild\EMPLOYEE.FDB&quot;,prop);</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;} catch (Exception e){</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;System.out.println(&quot;connection_error! &quot;+e);</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp;}</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; </div><div class="code_line">&nbsp;&nbsp; &nbsp;}</div></ol></div></div></div></div><script>preloadCodeButtons('1');</script><br>
Получаю: connection_error&#33; org.firebirdsql.jdbc.FBSQLException: GDS Exception. 335544379. unsupported on-disk structure for file C:&#092;Program Files&#092;Firebird&#092;Firebird_2_1&#092;examples&#092;empbuild&#092;EMPLOYEE.FDB; found 32779.10, support .<br>
Reason: unsupported on-disk structure for file C:&#092;Program Files&#092;Firebird&#092;Firebird_2_1&#092;examples&#092;empbuild&#092;EMPLOYEE.FDB; found 32779.10, support.<br>
<br>
Не могу понять в чем засада]]></description>
        <author>Vladonn</author>
        <category>Java</category>
      </item>
	
      </channel>
      </rss>
	