|
I've got a database on my server which is about 3mb big. I'd like to ship that with my iphone application.
The most important thing is that I'd like to promote changes to the database (insert, updates, deletes) to the iphone. What's the best way of doing...
Started by swalkner on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
For the user, WebHooks are a way to receive valuable information when it happens.
Around the web.
|
|
I have a client I am building a small CMS for. One of the functions is that he would like to be able to pick the order in which images display on a page.
In my mySql Database I have a table called image_info with the fields:
index (auto incremented)
img...
Started by Jascha on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I think that adding an img_order column is the easiest way, and it won't be hard be to renumber.
|
|
I work on a C# client application ( SlimTune Profiler ) that uses relational (and potentially embedded) database engines as its backing store. The current version already has to deal with SQLite and SQL Server Compact, and I'd like to experiment with ...
Started by Promit on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Then for each database type.
Hide everythingYour best bet is to use an interface for all of your database access.
But IMO, that's the best way to achieve what you want to do.
Might not be feasible.
|
Ask your Facebook Friends
|
Edit: OK I asked the wrong question here.
I'm going to be coding a stored proc that affects a lot of data, so I need to know the quickest, easiest way to roll back the data to the original state after I run a test.
Old question: I have a development database...
Started by nailitdown on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
If you don't this is a good way to get started writing ....
They did, hypothetically after all, just already have fixtures for this then you are most of the way there.
At worst and at best they'll figure out how to undo the mangling.
|
|
Using WCF in a RESTful way seems great. I’m a big fan of the big guns like simplicity and flexibility, but I also love the way the Urls end up looking. What can I say, I’m a programmer.
The simple API for retrieving and editing resources is matched by...
Started by Andy McCluggage on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In a nutshell I believe you can set the HTTP status code (to one of the error codes), and provide your custom... .
See this thread for a similar question.
Send the proper response code and you can supply the custom error message in the body of the response .
|
|
I'm relatively new to .NET programming (and OOP in general) and I want to make sure I'm not developing bad beginner habits when designing my applications.
If you were hiring a new .NET developer and had to get him up to speed relatively quickly, but also...
Started by vg1890 on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
Beside this he they adopted best practices, I would start by making them look through my current code base in best OOP practices.....
This way he will adopt the best practices.
Developer needs to read someone else's good code.
|
|
A developer I am working with is developing a program that analyzes images of pavement to find cracks in the pavement. For every crack his program finds, it produces an entry in a file that tells me which pixels make up that particular crack. There are...
Started by Phil on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at stackoverflow):
If your coworker isn't identifying complete a training set with known answers... .
!-)
What’s the best approach to recognize patterns in data, and what’s the best way to learn more by the way you've chosen to break down the problem.
|
|
I am just getting started with NHibernate (for the 15th time it would seem) and am having the following problem.
The following table:
Table Facility Column FACILITY_ID integer Column NAME varchar2(50) Column MONTH varchar2(5)
For whatever reason, month...
Started by George Mauer on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you cannot modify your database.
I think the best solution may be to use a custom value type .
|
|
Import sys print sys.path sys.path+=['D:\\zjm_code'] print sys.path
it can't be save,how does do it,
thanks
Started by zjm1126 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can use append()
import sys sys.path.append("/mypath")
to save it permanently, you can export PYTHONPATH in the user shell initialization file (eg .bash_profile)
PYTHONPATH=/path/to/module/directory:/path/to/module2/dir2
on Windows systems, you can... .
|
|
I have been looking at a lot of these questions asking for the "best" way to do this or the "best" way to do that.
Does one person's best way make it every person's best way? Can there really be a "best" way to do a particular algorithm or to solve a ...
Started by Jeff Martin on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Best doesn't exist should be the....
They continually are looking at the best way in terms of technology implementation and best practice, while (be that natural or man made) would immediately occur rendering it imperfect.
|