connecting sql server from windows ce application through Activesync without being on network

后端 未结 4 1184
别跟我提以往
别跟我提以往 2020-12-22 05:34

I\'ve connected my Motorola MC3090R having Windows CE 5 through cradle (Windows Mobile Device Center) with my laptop having Windows 7 (there is no network), my question is t

相关标签:
4条回答
  • private void form1Load(Object sender, EventArgs e)
            {
                String strConnection =
                    "Data Source=your_ip;Initial Catalog=your_database;Integrated Security=True; User ID=your_db_user;Password=your_db_password;";
    
            try
            {
                conn = new SqlConnection(strConnection);
                conn.Open();
                MessageBox.Show("You Success!!");
            }
            catch (SqlException ex)
            {
                MessageBox.Show("You failed!" + ex.Message);
                conn.Close();
            }
        }
    
    0 讨论(0)
  • 2020-12-22 05:53

    When you say "connected through cradle" I assume you are using Active Sync on the device. If that is the case, you will have a dynamic IP address assigned to your connection, in answers to this question you will find how to retrieve this address so that you can use it to build the connection string.

    0 讨论(0)
  • 2020-12-22 06:00

    If I understand your setup

    PDA -> PC ->Sql Server(Remote).

    If that's the setup you can configure via the Windows Mobile Device Center.

    1. Connect the device to your PC
    2. Open Windows Mobile Device Center
    3. Click on Mobile Device Settings
    4. Connection Settings.
    5. Select 'The Internet' on the combo 'This computer is connected to:'
    0 讨论(0)
  • 2020-12-22 06:06

    I solved it with this connection string.

    m_Desktopconn = New SqlConnection(
      "Data Source=192.168.55.100,1433;Initial Catalog=Testing;Persist Security Info=True;User ID=sa;Password=sa;")
    

    I had two instances MYPC\SQL2005 & MYPC\SQL2008, and then installed SQL 2005 Express on MYPC (Without instance)

    0 讨论(0)
提交回复
热议问题