using System
using System.Collections.Generic
using System.Linq
using System.Text
using System.Data.SqlClient
using System.Data
using System.Windows.Forms
namespace DataInput
{
public class DataInputClass
{
private string instrName=""
private string ConStr = "server=.database=SerialDatauid=sapwd=880906"
//数据库对象
SqlConnection conn = null
SqlCommand cmd = new SqlCommand()
char separator = '^'
string[] myResult = new string[10]
public DataInputClass(string myInstrName)
{
instrName = myInstrName
}
public string InstrName
{
get
{
return instrName
}
}
public string myDataInput(string myInstrCode)
{
//打开数据库
try
{
conn = new SqlConnection(ConStr)
conn.Open()
if (!(conn.State == ConnectionState.Open))
{
MessageBox.Show("数据库打开失败!")
}
}
catch(Exception e)
{
MessageBox.Show("数据库打开异常!"+ e.Message)
return ""
}
//数据入库
try
{
myResult = myInstrCode.Split(separator)
cmd.Connection = conn
cmd.CommandType = CommandType.Text
cmd.CommandText = "insert into SerialResult values(" + "\'" + myResult[0] + "\',\'" + myResult[1] + "\',\'" + myResult[2] + "\')"
cmd.ExecuteNonQuery()
cmd.Dispose()
return ""
}
catch(Exception e)
{
MessageBox.Show("数据插入失败异常!" + cmd.CommandText+"|"+e.Message)
return ""
}
}
}
}
如果你本机端有oracle客户端1、首先确保本机(win7)可以ping通虚拟机(xp) 使用ping命令
2、将xp中的oracle10g启动,并启动监听。 使用lsnrctl 命令
3、确定监听的11521端口没有问题 使用telnet ip 1521
4、在win7打开oracle客户端访问xp的sid就可以
如果你本机没有oracle客户端,你可以直接用远程桌面或者直接用虚拟机使用oracle.
虚拟机的网络用桥接,并在虚拟机里配置ip地址,ip地址与主机的ip一定要在同一个网段,保证与主机可以互相 ping 通 。
关闭虚拟机里的防火墙
在虚拟机里配置oracle监听。
可以了。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)