Note that there are some explanatory texts on larger screens.

plurals
  1. POandroid.app.serviceconnectionleaked while connecting with mysql
    text
    copied!<p>I'm connecting with mysql database directly without help of any servers. When i try to connect with mysql using emulator it works fine. but when i use my mobile phone it throws some exception. I don't know what is the problem. please help me with this.</p> <p>Here is my code : </p> <pre><code>Connection con; PreparedStatement ps; Statement st; ResultSet rs; String val = ""; Context cont = this; View menuItemView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Thread on=new Thread(){ @Override public void run(){ Log.i("Thread","Running"); try { Class.forName("com.mysql.jdbc.Driver"); Log.i("Connection","connected with jdbc"); con = DriverManager.getConnection("jdbc:mysql://192.168.1.2:3306/outsidelaundry", "vino" , "vino"); Log.i("Connection","connected with database"); runOnUiThread(new Runnable() { @Override public void run() { Toast.makeText(getApplicationContext(), "connected", Toast.LENGTH_LONG).show(); } }); } catch (Exception e) { e.printStackTrace(); } } }; on.start(); } </code></pre> <p>logcat error says : </p> <pre><code>09-26 14:46:05.474: E/StrictMode(809): android.app.ServiceConnectionLeaked: Service com.android.exchange.ExchangeService has leaked ServiceConnection com.android.emailcommon.service.ServiceProxy$ProxyConnection@40cec370 that was originally bound here 09-26 14:46:05.474: E/StrictMode(809): at android.app.LoadedApk$ServiceDispatcher.&lt;init&gt;(LoadedApk.java:969) 09-26 14:46:05.474: E/StrictMode(809): at android.app.LoadedApk.getServiceDispatcher(LoadedApk.java:863) 09-26 14:46:05.474: E/StrictMode(809): at android.app.ContextImpl.bindService(ContextImpl.java:1418) 09-26 14:46:05.474: E/StrictMode(809): at android.app.ContextImpl.bindService(ContextImpl.java:1407) 09-26 14:46:05.474: E/StrictMode(809): at android.content.ContextWrapper.bindService(ContextWrapper.java:473) 09-26 14:46:05.474: E/StrictMode(809): at com.android.emailcommon.service.ServiceProxy.setTask(ServiceProxy.java:157) 09-26 14:46:05.474: E/StrictMode(809): at com.android.emailcommon.service.ServiceProxy.setTask(ServiceProxy.java:145) 09-26 14:46:05.474: E/StrictMode(809): at com.android.emailcommon.service.ServiceProxy.test(ServiceProxy.java:191) 09-26 14:46:05.474: E/StrictMode(809): at com.android.exchange.ExchangeService$7.run(ExchangeService.java:1850) 09-26 14:46:05.474: E/StrictMode(809): at com.android.emailcommon.utility.Utility$2.doInBackground(Utility.java:551) 09-26 14:46:05.474: E/StrictMode(809): at com.android.emailcommon.utility.Utility$2.doInBackground(Utility.java:549) 09-26 14:46:05.474: E/StrictMode(809): at android.os.AsyncTask$2.call(AsyncTask.java:287) 09-26 14:46:05.474: E/StrictMode(809): at java.util.concurrent.FutureTask.run(FutureTask.java:234) 09-26 14:46:05.474: E/StrictMode(809): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1080) 09-26 14:46:05.474: E/StrictMode(809): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:573) 09-26 14:46:05.474: E/StrictMode(809): at java.lang.Thread.run(Thread.java:856) 09-26 14:46:05.484: W/ActivityManager(339): Unbind failed: could not find connection for android.os.BinderProxy@4102be08 </code></pre> <p><strong>Solution</strong> : I found the solution to this problem. In order to connect your mobile device with mysql database directly to send/receive data you should on your wifi first and not only that but also enable the background data and Auto sync in your device. Background data is the one which allows to travel datas within the devices.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload