I have a db with addresses I need to display on a google map that would then add a marker to the map after the user has used the search form to search for the desired address. I have looked everywhere
I am developing application that uses shared preferences and content provider. But everytime I enter my application my shared preferences and db data are not there.
I have made an web application with some tables. Now, I want to search in these tables. Currently I have successfully made a class that encapsulates queries for each table such as getAllPersonsByFirst
I am currently responsible for migrating data for our application, for upgrading to new version.I am trying to migrate from HSQL to HSQL, later we will move on to other combina开发者_开发知识库tions.
I have an array of posts called @posts. Post model has_many :feelings :through => :feelingships. How do I take the array of posts and narrow them it down to only the posts with a specific feeling?
I get this error when setting up a server in Django. It is sqlite3 which means it should create the .db file but it doesn\'t seem to be doing so. I\'ve stipulated SQLite as the backend and an absolute
The PostgreSQL manual page on the Serializable Isolation Level states: [Like] the Repeatable Read level, applications using this level must be prepared to retry transactions due to serialization fai
I am trying to improve the fields name to be more obvious what it means..is the fields name ok? or what can be changed to make it more obvious?
I\'m designing a simple database for a rental listings website, sort of like classified ads but only for home/room rentals.This is what I\'ve come up with thus far:
ASP.net MVC3 Razor EF When I开发者_如何学Python do this it works: public ViewResult Index() { return View(db.Songs.Include(\"Artist\").ToList());