using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace WindowsFormsApplication3
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
......................
阅读全部
|
天下向上
贴于 2012年12月27日 16:20
hide
bbsi
现在大部分C#连接数据库都会是sql server 。但对一些旧的数据库文件的连接和操作就不太熟了。
今天就有这个问题,要对FOXPRO生成的DBF文件数据库进行操作。
我在CSDN上查了很久,大部分有问题都没很好地回复到这些操作上的问题。
经过我的实验,用ODBC来连接它就可以了。
下面是所用的代码。
都很简单,就是格式上要注意。和用开的查询语句会有很大不同。
protected void Page_Load(object sender, EventArgs e)
{
System.Data.Odbc.OdbcConnection conn = new System.Data.Odbc.OdbcConnection();
string table = @"D:\aaa\code.dbf";
string connStr=@"Driver={Microsoft Visual FoxPro Driver};SourceType=DBF;SourceDB=" + table + ";Exclusive=No;NULL=NO;Collate=Machine;BACKGROUNDFETCH=NO;DELETED=NO";
......................
阅读全部
|
wp231957
贴于 2012年12月12日 10:26
hide
bbsi
double k = 0;
IMap pMap = axMapControl1.Map;
IActiveView pActiveview = pMap as IActiveView;
IPoint pPoint = pActiveview.ScreenDisplay.DisplayTransformation.ToMapPoint(e.x, e.y);
ITopologicalOperator pTopolog = pPoint as ITopologicalOperator;
IGeometry pGeo = pPoint as IGeometry;
k = Convert.ToDouble(textBox8.Text);
pGeo = pTopolog.Buffer(k);
IRgbColor pRgb = new RgbColorClass();
pRgb.RGB = 255;
IColor pColor = pRgb;
ISimpleFillSymbol pSimfillsym = new SimpleFillSymbolClass();
......................
阅读全部
|
xc398013967
贴于 2012年12月11日 16:00
hide
bbsi
知道这个意思,比如
if(new FileInfo(file).LastWriteTime.AddHours(24) > System.DateTime.Now)
{
读出file
}
为什么要有这样一个判断,这个判断目的是为了什么?
阅读全部
|
zhuwj
贴于 2012年9月5日 15:00
hide
bbsi
Private Sub Command3_Click()
Dim sql As String, mlink As String, mpath As String, mzy As String
mpath = App.Path
If Right(mpath, 1) <> "\" Then App.Path = mpath + "\"
mzy = InputBox$("请输入房号", "查找窗")
sql = "Select * from 散客帐务查询 where 房号='" & mzy & "'"
mlink = "Provider=Microsoft.Jet.OLEDB.3.51;"
mlink = mlink + "Persist Security Info=False;"
mlink = mlink + "Data Source=" + App.Path + "客人情况登记.mdb"
Adodc1.ConnectionString = mlink
Adodc1.CommandType = adCmdUnknown
Adodc1.RecordSource = sql
......................
阅读全部
|
manman1992
贴于 2012年4月18日 13:35
hide
bbsi
定义一个集合类nSet,该类包含一下数据成员
Int[] array; //存放集合元素
Int num; //集合中元素个数
包含以下成员函数
nSet(); //无参构造函数
nSet(int MaxLenth int N); //带参构造函数
bool add(int a); //向集合中添加元素
int del(int a);//删除集合中的元素a
bool equ(nSet s); //判断两个集合是否相等
int getLenth();//返回集合中的元素个数
void display();//显示集合中的所有元素
nSet intersection(nSet s) //两个集合的交运算
......................
阅读全部
|
zdc1201
贴于 2012年3月14日 23:51
hide
bbsi