PC Review


Reply
Thread Tools Rate Thread

DBase and .NET

 
 
info@it-design.biz
Guest
Posts: n/a
 
      8th Jun 2005
Hi!

Are there any possibilities to open and process an DBase / Visual
FoxPro Table ?

 
Reply With Quote
 
 
 
 
Steiner Hubert
Guest
Posts: n/a
 
      8th Jun 2005
Hi,
>Visual FoxPro Table ?

yes
-> www.codebase.com


 
Reply With Quote
 
Jamie Macleod
Guest
Posts: n/a
 
      8th Jun 2005
http://www.grafxsoft.com/

Vulcan.Net is a hot new xBase language compiler targeting .NET Framework.
Offering high compatibility with Visual Objects, Vulcan.NET offers an ideal
way to migrate existing VO applications to the .NET platform. VulcanDB is a
data provider, written in .NET managed code, supports data access while
using a minimal amount of resources, even on limited compact devices. The
data provider is compatible with the DBF/CDX feature set. For more
information on VulcanDB click here . VulcanDB, available separately, end of
summer 2005. Vulcan.Net is targeted to ship by the end of 2005, however for
those who want to get started early, Vulcan.Net is available through a
Platinum Subscription VOPS. Click here for more information on VOPS To Join
our Vulcan.Net mail list click here.

<(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi!
>
> Are there any possibilities to open and process an DBase / Visual
> FoxPro Table ?
>



 
Reply With Quote
 
Earl
Guest
Posts: n/a
 
      8th Jun 2005
You can do it with an ODBC connection:

Dim conn As New Odbc.OdbcConnection
conn.ConnectionString = "PWD=;SourceType=DBF;DSN=Visual FoxPro Tables;" & _
"Collate=Machine;BackgroundFetch=Yes;Exclusive=No;" & _
"SourceDB=" & DbSource & ";" & _
"UID="

Dim strSelect As String = "Select * FROM " & "[" & DbName & "]"
Dim cmd As New OdbcCommand(strSelect, conn)
Dim dr As OdbcDataReader
conn.Open()
dr = cmd.ExecuteReader()

While (dr.Read())
cmbTo.Items.Add(dr.GetString(0))
End While
dr.Close()
conn.Close()

<(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi!
>
> Are there any possibilities to open and process an DBase / Visual
> FoxPro Table ?
>



 
Reply With Quote
 
Earl
Guest
Posts: n/a
 
      9th Jun 2005
Errrrr ... did not notice I was in the CF forum -- there is no ODBC
namespace for CF.

"Earl" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> You can do it with an ODBC connection:
>
> Dim conn As New Odbc.OdbcConnection
> conn.ConnectionString = "PWD=;SourceType=DBF;DSN=Visual FoxPro Tables;" &
> _
> "Collate=Machine;BackgroundFetch=Yes;Exclusive=No;" & _
> "SourceDB=" & DbSource & ";" & _
> "UID="
>
> Dim strSelect As String = "Select * FROM " & "[" & DbName & "]"
> Dim cmd As New OdbcCommand(strSelect, conn)
> Dim dr As OdbcDataReader
> conn.Open()
> dr = cmd.ExecuteReader()
>
> While (dr.Read())
> cmbTo.Items.Add(dr.GetString(0))
> End While
> dr.Close()
> conn.Close()
>
> <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Hi!
>>
>> Are there any possibilities to open and process an DBase / Visual
>> FoxPro Table ?
>>

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
DBase =?Utf-8?B?SkFDRUs=?= Microsoft Word Document Management 3 5th Nov 2007 01:36 PM
How to run DOS dBASE III+ under Win XP =?Utf-8?B?Y2Nib2JiaQ==?= Windows XP General 6 24th Apr 2006 10:10 PM
Dbase BertP Windows XP General 9 15th Dec 2005 04:26 AM
dbase Mauricio Microsoft Excel Programming 1 19th Feb 2004 11:25 PM
dbase in .net Jared Microsoft Dot NET Framework 1 20th Aug 2003 05:36 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:02 AM.