I know that it is a databases in Palm OS, as the development is shift to webOS. Is there any third party javascript library to do the work? or it needs to write manually?
I'm running the following statement to see what queries are executing in sql server:
select *
from sys.dm_exec_requests r
cross apply sys.dm_exec_sql_text(r.sql_handle)
where r.database_id = DB_ID('<dbname>')
The sql text that comes back is parameterized:
(@Parm0 int) select * from foo where foo_id = @Parm0
Is there any way to get the…
php code works with this url but the rubyCAS-Client gem's `validate_service_ticket()'
seems to call an SSL Validation on this url which returns an error message.
'OpenSSL::SSL::SSLError in CassersController#index' ||'SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed'
---enviroment.rb---
…
I am a frequent Windows Mobile application developer in need of a new development laptop.
I am considering a MacBook or Macbook Pro running either Fusion from VMWare or Parallels Desktop. This will give me the option to port my applications to the iPhone depending on what MS does with WM 6.5 and 7.
Has anybody tried doing Windows…
Moving on in my attempt to learn Android I just read the following:
Question: Does the user have a choice to kill the application
unless we put a menu option in to kill it? If no such option exists,
how does the user terminate the application?
Answert (Romain Guy): The user doesn't, the system handles this automatically. That's…
I am trying to measure latency to a server that I don't control. This is in a colocated environment, so the latency is on the order of 500 us (.5 ms).
I understand that Cisco gear frequently deprioritizes ICMP traffic, making ping times unreliable. Is there a way for me to tell if this is the case on the gear I am traversing?
…
A software I need to install on my Ubuntu Hardy has a MAKE file which includes the command cp -n.
However, I get an error stating the -n is an invalid option.
The command will work on a Mac terminal but I need it to work on Ubuntu.
Does anyone know the equivalent command for Ubuntu?
Thanks.
I'm trying to change the color of the pixels (lighten or darken) without changing the value of the alpha channel using CGDataProviderCopyData. I leave every 4th databyte untouched. It work fine of the iphone simulator, however on the real thing the alpha goes white as I increase the values of the other pixels. I've tried changing…
I have written a simple jQuery.ajax function which loads a user control from the server on click of a button. The first time I click the button, it goes to the server and gets me the user control. But each subsequent click of the same button does not goes to the server to fetch me the user control.
Since my user control fetches…
There are several questions out there that ask the same question. However the answers they received I cannot understand, so here goes:
Similar questions:
http://stackoverflow.com/questions/1874277/dynamically-load-assembly-and-manually-force-path-to-get-referenced-assemblies ;…
The following post indicates how to make a simple get http request with Erlang's inets.
exploring erlang's http client
Sometimes, URLs have GET parameters:
http://example.net/item?parameter1=12¶meter2=1431¶meter3=8765
Besides including the parameters in the…
I have a grid (slickgrid) which creates and destroys rows on the fly.
I know jstree uses .jstree-draggable to find the external drag targets, but applying them to the grid rows doesn't work - such that I've thought of using the grid drag, and on finish of the grid drag I want…
I have a ScrollView containing a client that is a vertical LinearLayout. The client, in turn, contains custom views that change height dynamically as a background thread does some work. The problem I'm having is that the ScrollView's vertical scroll bar is not updating…
I have two physically-separate MySQL databases on which I have to run a single query.
The query has a section of SQL that looks like this:
and foo_table.bar_column like concat('%', rules.pattern, '%') COLLATE utf8_general_ci
It runs fine on database A but on…
I have a list-type UserControl (like a ListBox). The items inside the control are another complex UserControl containing a few other controls (ComboBox, TextBox, etc). I'm wondering what the preferred or best method would be to override to draw/layout the…
What is the best erlang library for processing http requests and responses from within an erlang application? I have taken a look at inets but as a standalone application, it seems more like a replacement for curl.
I would like to access external APIs…
I'm experitmenting with the Twitter API (OAuth). I have a test bed that can tweet from my dev box, but fails in production. I get a status code of 424 returned when trying to tweet.
I can't spot the difference between my live environment and my dev…
I am trying to create some dynamic html out of some data from db. My data returned from db is:
ApplicationName URL
AppName1 URL1
AppName2 URL1
AppName2 URL2
AppName1 URL2
I want that all…
There are several questions out there that ask the same question. However the answers they received I cannot understand, so here goes:
Similar questions:…
I am trying to use jQuery AJAX. What my requirement is, i wish to load user names from DB in dataset, convert it to JSON format and store it in memory or…
The new documentation on ProGuard for Android says to add a line to the default.properties file in the project home directory. However, on opening this…