<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[ADO Remote Database Connection]]></title><description><![CDATA[<p>Hi<br />
I have a MS Access database on remote server and I have a remote ODBC DSN (Data Source Name) on the server.<br />
I want to connect to my database by ADO connection component, but i cant.<br />
Please tell me, how i can do it.<br />
Thank you</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/169186/ado-remote-database-connection</link><generator>RSS for Node</generator><lastBuildDate>Thu, 13 Aug 2026 15:37:56 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/169186.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 03 Jan 2007 00:10:14 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to ADO Remote Database Connection on Wed, 03 Jan 2007 00:10:14 GMT]]></title><description><![CDATA[<p>Hi<br />
I have a MS Access database on remote server and I have a remote ODBC DSN (Data Source Name) on the server.<br />
I want to connect to my database by ADO connection component, but i cant.<br />
Please tell me, how i can do it.<br />
Thank you</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1201529</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1201529</guid><dc:creator><![CDATA[zHugeCode7]]></dc:creator><pubDate>Wed, 03 Jan 2007 00:10:14 GMT</pubDate></item><item><title><![CDATA[Reply to ADO Remote Database Connection on Wed, 03 Jan 2007 10:42:57 GMT]]></title><description><![CDATA[<p>Hi,</p>
<p>why cant you connect it? do you need the source code, or what do you need?<br />
Please explain your problem.</p>
<p>Greatings<br />
MWJK</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1201704</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1201704</guid><dc:creator><![CDATA[MWJK]]></dc:creator><pubDate>Wed, 03 Jan 2007 10:42:57 GMT</pubDate></item><item><title><![CDATA[Reply to ADO Remote Database Connection on Wed, 03 Jan 2007 11:20:56 GMT]]></title><description><![CDATA[<p>Hi,<br />
I make a MS Access database and a ODBC DSN on server (for example: <a href="http://www.myserver.com" rel="nofollow">www.myserver.com</a>) by my site control panel,<br />
now i want to connect to my remote database by ADO connection component (TADOConnection) using BCB or Delphi.<br />
I think that, i need a proper OLE DB Provider for remoting connection by ADO but in my OLE DB Provider list does not exist any proper provider.<br />
I think that Microsoft OLE DB Remoting Provider is a proper provider but i dont have it.<br />
Maybe, i need a source code example!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1201745</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1201745</guid><dc:creator><![CDATA[zHugeCode7]]></dc:creator><pubDate>Wed, 03 Jan 2007 11:20:56 GMT</pubDate></item><item><title><![CDATA[Reply to ADO Remote Database Connection on Wed, 03 Jan 2007 11:30:59 GMT]]></title><description><![CDATA[<p>Hi,</p>
<pre><code class="language-cpp">void __fastcall TForm1::DataSource1DataChange(TObject *Sender,
      TField *Field)
{
   Edit1-&gt;Text=ADOTable1-&gt;FieldByName(&quot;Name&quot;)-&gt;AsString;
   Edit2-&gt;Text=ADOTable1-&gt;FieldByName(&quot;Surname&quot;)-&gt;AsString;
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button1Click(TObject *Sender)
{
   ADOTable1-&gt;Next();
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button2Click(TObject *Sender)
{
   ADOTable1-&gt;Prior();
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button3Click(TObject *Sender)
{
   ADOTable1-&gt;First();
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button4Click(TObject *Sender)
{
   ADOTable1-&gt;Last();
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button5Click(TObject *Sender)
{
   ADOTable1-&gt;Insert();
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button6Click(TObject *Sender)
{
   ADOTable1-&gt;Delete();
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button7Click(TObject *Sender)
{
   ADOTable1-&gt;Edit();
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button8Click(TObject *Sender)
{
   ADOTable1-&gt;FieldByName(&quot;Name&quot;)-&gt;AsString = Edit1-&gt;Text;
   ADOTable1-&gt;Post();
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button9Click(TObject *Sender)
{
   Edit1-&gt;Text = ADOTable1-&gt;FieldByName(&quot;Name&quot;)-&gt;AsString;
   Edit2-&gt;Text = ADOTable1-&gt;FieldByName(&quot;Surname&quot;)-&gt;AsString;
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button10Click(TObject *Sender)
{
   ADOTable1-&gt;FieldByName(&quot;Surname&quot;)-&gt;AsString = Edit2-&gt;Text;
   ADOTable1-&gt;Post();
}
//---------------------------------------------------------------------------
</code></pre>
<p>This is a source code example to work with a MS Access Database connected to a BCB project - but both (the database and the programm) are saved on the same PC in the same Folder.</p>
<p>I hope that can help you!</p>
<p>Greatings<br />
MWJK</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1201752</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1201752</guid><dc:creator><![CDATA[MWJK]]></dc:creator><pubDate>Wed, 03 Jan 2007 11:30:59 GMT</pubDate></item><item><title><![CDATA[Reply to ADO Remote Database Connection on Wed, 03 Jan 2007 19:21:35 GMT]]></title><description><![CDATA[<p>Hi,<br />
Thank you very much, really.<br />
Your source code example is about Data Entry and is Stand-alone not Client-Server.<br />
May you introduce a good BCB or Delphi forum in english language?<br />
Thanks</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1202193</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1202193</guid><dc:creator><![CDATA[zHugeCode7]]></dc:creator><pubDate>Wed, 03 Jan 2007 19:21:35 GMT</pubDate></item><item><title><![CDATA[Reply to ADO Remote Database Connection on Wed, 03 Jan 2007 19:32:01 GMT]]></title><description><![CDATA[<p><a href="http://newsgroups.borland.com/cgi-bin/dnewsweb?cmd=listall&amp;group=borland.public" rel="nofollow">http://newsgroups.borland.com/cgi-bin/dnewsweb?cmd=listall&amp;group=borland.public</a>.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1202200</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1202200</guid><dc:creator><![CDATA[Jansen]]></dc:creator><pubDate>Wed, 03 Jan 2007 19:32:01 GMT</pubDate></item><item><title><![CDATA[Reply to ADO Remote Database Connection on Wed, 03 Jan 2007 19:49:29 GMT]]></title><description><![CDATA[<p>Thank you</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1202213</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1202213</guid><dc:creator><![CDATA[zHugeCode7]]></dc:creator><pubDate>Wed, 03 Jan 2007 19:49:29 GMT</pubDate></item></channel></rss>