让Windows Mobile 6.5设备连接到2012 mssql服务器

时间:2017-06-26 17:40:30

标签: c# sql-server visual-studio windows-mobile-6.5

我试图让条形码扫描仪连接到MSSQL服务器。从我所能看到的,似乎只有VS2008与该设备兼容。但Windows 2008无法连接到msSQL 2012服务器。

我正在寻找能够将Visual Studios 2008连接到2012 MySQL服务器的解决方案或者使Windows 6.5移动设备与其他任何东西兼容的方法(来自Visual Studio 2015)

当我尝试通过2008连接时,它给我一个SQL客户端错误,当我使用VS2015版本时,它给出了关于Windows.forums的错误。即使我确保将其作为参考。

我尝试更改.net兼容性并将其更改为c#3.0但似乎没有任何效果。

编辑:此代码无法连接到VS 2008中的MSSQL 2012服务器。

using System;
using System.Linq;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace lasttestytesty
{
public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {

        string connetionString = null;
        SqlConnection connection;
        SqlCommand command;
        string sql = null;

        connetionString = //deleted// 
        sql = "update CUSTOMERS set SALARY =" + updater + " where age= 27;";

        connection = new SqlConnection(connetionString);
        try
        {
            connection.Open();
            command = new SqlCommand(sql, connection);
            command.ExecuteNonQuery();
            command.Dispose();
            connection.Close();
            MessageBox.Show(" ExecuteNonQuery in SqlCommand executed !!");
        }

0 个答案:

没有答案