using System;
using System.Data;
using System.Data.OleDb;
public class Prepare {
public static void Main () {
String connect = "Provider=Microsoft.JET.OLEDB.4.0;data source=.\\Employee.mdb";
OleDbConnection con = new OleDbConnection(connect);
con.Open();
Console.WriteLine("Made the connection to the database");
OleDbCommand cmd2 = con.CreateCommand();
cmd2.CommandText = "SELECT First_name FROM Employee "
+ "WHERE ID > ?";
OleDbParameter p3 = new OleDbParameter();
cmd2.Parameters.Add(p3);
p3.Value = new Decimal(0.0);
OleDbDataReader reader = cmd2.ExecuteReader();
while(reader.Read())
Console.WriteLine("{0}", reader.GetString(0));
reader.Close();
con.Close();
}
}
|