PDA连接SqlServer有关问题

PDA连接SqlServer问题
我想在PDA上直接连接到SQL2008数据库。代码如下
192.168.208.117是我电脑的IP
try
  {
  string connDBStr = @"Data Source=192.168.208.117;Initial Catalog = EAM4.0;User ID=sa;PWD=123";
  SqlConnection conn = new SqlConnection(connDBStr);
  Cursor.Current = Cursors.WaitCursor;
  Cursor.Show();
  conn.Open();
  SqlCommand cmd = new SqlCommand("Select * From ASM_A1 ", conn);
  SqlDataReader dr = cmd.ExecuteReader();
  if (dr.Read())
  {
  MessageBox.Show("读取数据成功 ");
  }
  else
  {
  MessageBox.Show("未找到数据 ");
  }

  }
  catch (Exception ex)
  {
  MessageBox.Show(ex.Message);
  }
  finally
  {
  Cursor.Current = Cursors.Default;
  }
一直报SqlException。请高手帮忙解决下

------解决方案--------------------
PDA连接SQL SERVER数据库,我是在公网部署WEB SERVICE,PDA使用GPRS通过webservice访问SQL SERVER数据库。