Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
C

charoldson

@charoldson
About
Posts
1
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Connecting to .DBF file????
    C charoldson

    Here's how we do it using an OleDB provider for VFP:

    using System.Data.OleDB; private void FillDataSet() { OleDbConnection foxConn = new OleDbConnection( "Provider=VFPOLEDB.1;Data Source=C:\\DataDirectory"); OleDbCommand foxCommand = new OleDbCommand(); OleDbDataAdapter foxDA = new OleDbDataAdapter(); DataSet foxData = new DataSet(); foxCommand.Connection = foxConn; foxCommand.CommandType = CommandType.Text; foxCommand.CommandText = "SELECT * FROM myTable"; foxDA.SelectCommand = foxCommand; foxDA.Fill(foxData, "MyTable"); }

    Database csharp database tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups