Posts

app store - regarding iphone app download count -

how can know iphone application download count of mine in itunesconnect..? for that, have login in itunesconnect.apple.com site. go "sales , trends" module. here, can find how many applications downloaded.

c# - visual studio: what is sourcesafe? -

what sourcesafe? i trying download see if work c# because told me download job, don't understand is? is built visual studio ide or what? sourcesafe poor , obsolete source control system . can store application's source code , show revision history, , allow multiple developers work on same project efficiently. it has been replaced team foundation server .

ruby - Rails not booting, nothing in the logs -

i moved working copy of rails 3 app test server staging server. i'm getting standard error screen "we're sorry, went wrong." however, development.log file has nothing added (the migration logs went in fine). i've doubled checked settings, everything's fine. if make dummy rails application works should. edit: i'm using passenger on ubuntu 10.10 i under impression "we're sorry, went wrong." used in default production environment. messages being logged production.log? as note, believe passenger launch application in production environment default (as opposed development environment).

.net - How to store audio, images, and binary files as XML? -

i'm reading book on .net, , says "xml can used store type of data including documents (the latest version of microsoft office stores documents using xml), pictures, music, binary files, , database information." huh? how can types of data stored xml? you can convert them base64 , store in xml: storing base64 data in xml?

android - Parent - child application model -

iam building system includes couple of applications, know if there way design "main" application include inside several applications, in case share same proccess thanks, ray. there 2 ways it. 1) application couple of activities . in android activity screen. 2) create different applications , main 1 launch intent . here have tutorial of how it.

java - iBATIS - Defining 'javaType' and 'jdbcType' -

while defining resultmap in ibatis, provides option set javatype , jdbctype each property column mapping. e.g. <resultmap id="employee" class="com.mycompany.employee"> <result property="firstname" column="first_name" javatype="?" jdbctype="?"/> </resultmap> wanted know when should defining javatype , jdbctype ? have seen mapping just works without defining these properties , in others have define them. edit: see selected answer below above question. also, have exhaustive list out of javatype , jdbctype should defined? edit: javatype should 1 of well-known types e.g. java.lang.string , java.util.date , jdbctype should coming out of java.sql.types thanks in advance! for jdbctype documentation (for ibatis 3) states: the jdbc type required nullable columns upon insert, update or delete. on page 33 in document list of supported jdbc types. for javatype attrib...

Asp.Net Routing - No DB access at application Start -

i have custom http-handler , vs2010 thinking switching ms routing instead. problem have route definitions in database , don't know connection string until user logs on! luckily, start page/log in page use routing 1 can access. however, examples have seen far means setting routes in application_start point in time don't have access mu route definitions. would possible create route handler when invoked first time loads routes? or have add routes @ application start?