Skip to content Skip to sidebar Skip to footer

Phonegap Sqlite Returned: Error Code = 14, Msg = Cannot Open File At Line 27206 Of [42537b6056]

Getting error: error code = 14, msg = cannot open file at line 27206 of [42537b6056] when i run my phonegap app on my htc my js looks like this: var db; function onLoad() {

Solution 1:

You can safely ignore this error:

"sqlite returned: error code = 14, msg = cannot open file at source line 27206"

It Will not produce any issues for you.

UPDATE: Try this code

<!DOCTYPE htmlPUBLIC"-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>Example</title><!-- Adding Phonegap scripts --><scripttype="text/javascript"charset="utf-8"src="cordova/cordova-1.5.0.js"></script><scripttype="text/javascript">functiononDeviceReady() {

}
functionshowAlert() {
    alert("Not yet implemented");
}

document.addEventListener("deviceready", onDeviceReady, false);
</script></head><body><div>
  Username: <inputtype="text"id="user"name="user"style="width:140px"></div><div>
  Password: <inputtype="password"id="pass"name="pass"style=
  "width:140px"></div><spanid="loginbutton"data-role="button"data-icon="check"data-inline="true"data-theme="b"onclick="showAlert()">Login</span></body></html>

Post a Comment for "Phonegap Sqlite Returned: Error Code = 14, Msg = Cannot Open File At Line 27206 Of [42537b6056]"