User dta - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T14:30:38Zhttp://stackoverflow.com/feeds/user/49560http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/764899/mysql-max-query1Mysql Max querydta2009-04-19T05:40:45Z2009-12-02T01:00:01Z
<p>I have two tables : </p>
<pre><code>teachers (teacher_id,teacher_name)
courses (teacher_id,course_id)
</code></pre>
<p>And I need to display names of the teachers, teaching maximum number of courses : </p>
<p>mysql> select teachers.teacher_name,tmp1.teacher_id,tmp1.cnt from (select max(tm
p.cnt) as tmpMax from (select teacher_id,count(teacher_id) as cnt from courses g
roup by teacher_id) as tmp) as tmp2,(select teacher_id,count(teacher_id) as cnt
from courses group by teacher_id) as tmp1,teachers where tmp1.cnt = tmp2.tmpMax
and teachers.teacher_id = tmp1.teacher_id;</p>
<p>I came up with the above query. Is there a simpler query for this problem?</p>
http://stackoverflow.com/questions/1239553/flex-cross-resolution-applications1Flex : Cross resolution applicationsdta2009-08-06T15:10:10Z2009-11-20T17:04:13Z
<pre>
What is the best way to create applications in Flex/AIR,
which look and feel the same irrespective of the screen
resolution?
</pre>
http://stackoverflow.com/questions/974559/html-form-enctype3html form enctypedta2009-06-10T09:28:03Z2009-11-11T03:06:25Z
<p>In HTML forms containg file uploads, enctype="multipart/form-data" attribute has to
be set. This much I know. But why? What exactly does it change?
How does it differ from application/x-www-form-urlencoded?</p>
http://stackoverflow.com/questions/1222809/adobe-air-with-php-mysql-or-sqllite0Adobe AIR with PHP/MySql or sqllitedta2009-08-03T14:56:24Z2009-11-09T05:52:28Z
<p>What would be a better choice for making a database driven
Adobe AIR(Desktop) application?</p>
<ol>
<li>Using PHP+MySql with AIR<br>
OR</li>
<li>Using SQLite</li>
</ol>
<p>If I choose SQLite, then I cannot reuse my code for
an online application.</p>
<p>If I choose 1, I have to block few port numbers on User's machine.
Also, I am using XAMPP for providing the user with PHP and MySql, so
XAMPP opens up a command window as long as it's running. And, users
get confused about what's that window for? It makes the end user
experience slightly confusing.</p>
http://stackoverflow.com/questions/1099738/visual-basic-6-0-passing-by-value-reference-difference0Visual Basic 6.0 Passing by Value Reference differencedta2009-07-08T18:16:14Z2009-11-06T02:10:27Z
<p>In the following code, I get a compile time error because <code>i</code> is treated as a variant. The error is: <em>"ByRef Argument type mismatch.".</em> </p>
<p>But if I pass the parameters <code>ByVal</code>, there is no error why?</p>
<pre><code>Private Sub Command2_Click()
Dim i, j As Integer
i = 5
j = 7
Call Swap(i, j)
End Sub
Public Sub Swap(ByRef X As Integer, ByRef Y As Integer)
Dim tmp As Integer
tmp = X
X = Y
Y = tmp
End Sub
</code></pre>
http://stackoverflow.com/questions/1195555/flex-forcing-extension-on-a-file-name0Flex : forcing extension on a file namedta2009-07-28T17:32:36Z2009-10-10T19:00:02Z
<pre>
In flex when I allow user to download a file using :
dwFile = new FileReference();
dwFile.download(downloadURL, dwFileName);
Is there a way to ensure that the downloaded file always ends up with the extension .tar or any other extension for that matter? By default I give it a name like xyz.tar,
but as of now the user can tamper with filename, including its extension. Can
I prevent him from doing so?
</pre>
http://stackoverflow.com/questions/1028653/flex-applications-for-iphone1Flex applications for iPhonedta2009-06-22T18:09:50Z2009-10-08T07:24:04Z
<p>Is it possible to make applications for iPhone using Adobe Flex/AIR?
Any tutorials, pointers?</p>
http://stackoverflow.com/questions/932430/online-resources-for-finite-automata-theory0Online resources for Finite Automata Theorydta2009-05-31T16:47:08Z2009-09-23T01:00:00Z
<p>Could someone point me to some good online material for finite automata theory?
Wikipedia articles are very concise.</p>
http://stackoverflow.com/questions/763825/question-about-3rd-normal-form0Question about 3rd Normal Formdta2009-04-18T17:45:12Z2009-09-06T13:57:25Z
<p>The following table : </p>
<pre><code>EmpId State Zip
1 FL 342008
2 CA 342001
</code></pre>
<p>is not in 3rd normal form because
State is dependent on the primary
key(EmpId) transitively.</p>
<p>So, if I break it like this :
(EmpId,State) (State,PIN)</p>
<p>it's in 3NF.</p>
<p>I could also break it like :
(EmpId,State) (EmpId,PIN)
and it will again be in 3NF.</p>
<p>But in the second case,
there is redundancy of information, for
e.g.</p>
<pre><code>1 FL
2 FL
1 342008
2 342008
</code></pre>
<p>Which property does the second decomposition violate?</p>
http://stackoverflow.com/questions/406067/accessing-cd-dvd-drive-for-backup-from-adobe-air-application2Accessing CD/DVD drive for backup from Adobe AIR applicationdta2009-01-02T05:03:44Z2009-08-31T22:00:01Z
<p>Hi,
Is it possible to burn a CD/DVD from an Adobe AIR app?
How?
I want my application to take some backup on the CD/DVD.
Any other options?</p>
http://stackoverflow.com/questions/1083619/using-google-transliteration-in-flex0Using google transliteration in Flexdta2009-07-05T07:25:48Z2009-08-28T08:54:34Z
<p>Attached code is an example of how to use Google transliteration
feature in certain html textboxes. I need to enable the same
transliteration feature for a flex application. Is there a way
I could do it?</p>
<pre><code> <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript" src="http://www.google.com/jsapi">
</script>
<script type="text/javascript">
// Load the Google Transliteration API
google.load("elements", "1", {
packages: "transliteration"
});
function onLoad() {
var options = {
sourceLanguage: 'en',
destinationLanguage: ['hi','kn','ml','ta','te'],
shortcutKey: 'ctrl+g',
transliterationEnabled: true
};
// Create an instance on TransliterationControl with the required
// options.
var control =
new google.elements.transliteration.TransliterationControl(options);
// Enable transliteration in the textfields with the given ids.
var ids = [ "transl1", "transl2" ];
control.makeTransliteratable(ids);
// Show the transliteration control which can be used to toggle between
// English and Hindi and also choose other destination language.
control.showControl('translControl');
}
google.setOnLoadCallback(onLoad);
</script>
</head>
<body>
<center>Type in Indian languages (Press Ctrl+g to toggle between English and Hindi)</center>
<div id='translControl'></div>
<br>Title : <input type='textbox' id="transl1"/>
<br>Body<br><textarea id="transl2" style="width:600px;height:200px"></textarea>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/870218/b-trees-b-trees-difference3B- trees, B+ trees differencedta2009-05-15T18:42:14Z2009-08-27T08:09:58Z
<p>In a B- tree you can store both keys and data in the internal/leaf nodes.
But in a B+ tree you have to store the data in the leaf nodes only.
Is there any advantage of doing the above in a B+ tree?
Why not use B- trees instead of B+ trees everywhere?
As intuitively they seem much faster. I mean why do you need
to replicate the key(data) in a B+ tree?</p>
http://stackoverflow.com/questions/450006/highlighting-the-selected-button-in-a-buttonbarflex0highlighting the selected button in a buttonbar(flex)dta2009-01-16T10:24:51Z2009-08-19T06:27:18Z
<p>how to do it?</p>
http://stackoverflow.com/questions/1246087/using-math-functions-in-sql-with-ms-access0Using math functions in Sql with MS Accessdta2009-08-07T17:43:57Z2009-08-10T11:03:33Z
<p>I designed a query in SQL View using MS Access:</p>
<pre><code>select floor(num1) from t1;
</code></pre>
<p>When I run it, I get "undefined function floor".</p>
<p>I get similar errors for <code>Ceil</code>, <code>Mod</code>,<code>Power</code>, <code>Sign</code>, <code>Sqrt</code>, <code>Trunc</code>, and <code>initcap</code> functions.</p>
<p>Does the Access database engine's SQL syntax have equivalent functions?</p>
http://stackoverflow.com/questions/1239469/flex-assignment-in-conditionals1Flex : Assignment in Conditionalsdta2009-08-06T14:58:13Z2009-08-06T15:29:28Z
<pre>
If I use an Assignment within conditional, for e.g.
if(userType='admin')
Flex throws a warning,unlike Java, which throws an error.
Why should Flex be doing this, despite being one of the newest languages?
1100: Assignment within conditional. Did you mean == instead of =?
</pre>
http://stackoverflow.com/questions/454940/protecting-adobe-air-apps3protecting adobe air appsdta2009-01-18T10:36:18Z2009-08-05T06:03:41Z
<p>Hi,
I am about to deliver an Adobe AIR app to a customer.
But it's my first delivery of any sort, i.e. I have
no experience whatsoever with licensing etc.</p>
<p>Users of this app may or may not be online, so
can't count on that. In fact it's 99% sure that
they will be offline.</p>
<p>Nor do I expect them to very tech-savvy, who will
spend enough time scouting for ways to "crack" it.</p>
<p>So, is there an okeish type of way to protect this
app. That is, I don't want people to simply copy
the installation folder, take it to another machine
and run it. It should be slightly harder than this.</p>
<p>Oh, and I am also using PHP and MySql, with which
this AIR app communicates. So anything you guys could
help me with is very very welcome.</p>
http://stackoverflow.com/questions/1228532/flex-datagrid-different-fonts-for-column-header-and-the-text-in-the-corresponding1Flex datagrid different fonts for column header and the text in the corresponding celldta2009-08-04T16:26:57Z2009-08-04T16:45:45Z
<pre>
For a flex datagrid :
How do I have different fonts for a column header
and the text in the corresponding cells?
</pre>
http://stackoverflow.com/questions/1228532/flex-datagrid-different-fonts-for-column-header-and-the-text-in-the-corresponding/1228627#12286270Answer by dta for Flex datagrid different fonts for column header and the text in the corresponding celldta2009-08-04T16:45:45Z2009-08-04T16:45:45Z<pre><code>Here is one workaround :
<mx:DataGridColumn headerText="colHeader" dataField="marHD" width="100" editable="false" fontFamily="Arial" rendererIsEditor="true" editorDataField="text">
<mx:itemRenderer>
<mx:Component>
<mx:Text fontFamily="myfontfamily"/>
</mx:Component>
</mx:itemRenderer>
</mx:DataGridColumn>
</code></pre>
http://stackoverflow.com/questions/400241/accessing-mysql-from-adobe-flex-air2Accessing mysql from Adobe flex/AIRdta2008-12-30T13:25:01Z2009-08-03T22:17:31Z
<p>Is it possible to directly access MySql databases through an Adobe AIR/Flex
application?<br/>
If not, what is the next best alternative?<br/></p>
http://stackoverflow.com/questions/1222765/flex-scrolling-the-canvas-to-its-top1Flex scrolling the canvas to its topdta2009-08-03T14:48:39Z2009-08-03T16:19:47Z
<p>Is there a way to programmatically scroll the canvas to its topmost position? </p>
http://stackoverflow.com/questions/1216015/bundling-php-mysql-with-flex-to-be-given-to-a-client0Bundling PHP MySql with Flex to be given to a clientdta2009-08-01T06:56:30Z2009-08-02T00:04:10Z
<pre>
I made an application using Flex,php,mysql. Now to give it
to a client, I am bundling this flex application with
xampp. There are few problems with this approach :
1. Whenever the flex application runs, an xampp window
also opens up.
2. The Apache port number, which I am giving to the client
is fixed. Same for mysql port number.
What could be a better alternative to overcome these?
</pre>
http://stackoverflow.com/questions/1028644/flex-unable-to-open-locale-enus1Flex : Unable to open 'locale/en_US'dta2009-06-22T18:06:44Z2009-07-28T06:06:11Z
<p>Using Flex Builder :<br/>
I have created a new Actionscript Project.
I want to use mx.controls.Button class in it,
so I did the following : </p>
<ol>
<li>Added '-locale=en_US -source-path=locale/{locale}' to the Actionscript compiler arguments</li>
<li>Added 'framework.swc' to the library path</li>
</ol>
<p>But now I get this error:
<strong>unable to open 'locale/en_US'</strong>
I looked up and I do have the following directory inside my Flex Builder 3 installation:
<br/>
./sdks/3.0.0/frameworks/locale/en_US</p>
<p>How to fix it?</p>
http://stackoverflow.com/questions/1189342/flex-disabled-canvas-look-and-feel0Flex : Disabled canvas look and feeldta2009-07-27T16:55:17Z2009-07-27T16:55:17Z
<pre>
Is there a way in Flex by which a disabled canvas looks exactly the same
as an enabled canvas? I haven't been able to make sense of disabledOverLayAlpha
and disabledColor properties for a Canvas component.
</pre>
http://stackoverflow.com/questions/1188991/flex-layout-changes-made-to-a-single-state0Flex layout : Changes made to a single statedta2009-07-27T15:55:45Z2009-07-27T16:05:31Z
<p>I was modifying the layout of a Flex application in Flex Builder. What I didn't realize was that the changes I made, were made for a particular state. There are around 6-7 states in my application. Now, I need those changes to be made to all of those states. How do I do it? As of now there are multiple lines like this in one state :</p>
<pre><code> <mx:SetProperty target="{accno}" name="x" value="116"/>
<mx:SetProperty target="{accno}" name="y" value="826"/>
<mx:SetProperty target="{phone}" name="x" value="116"/>
<mx:SetProperty target="{phone}" name="y" value="866"/>
</code></pre>
http://stackoverflow.com/questions/743456/displaying-rows-with-count-0-with-mysql-group-by1Displaying rows with count 0 with mysql group bydta2009-04-13T09:37:57Z2009-07-23T15:34:53Z
<p>I have two tables in MySql
Company : (cname,city)
works : (ename,cname,salary)</p>
<p>I want to display number of employees working for every company,
even if that number is zero.</p>
<p>for e.g.
for </p>
<pre><code>Company :
Microsoft Bangalore
IBM NY
works :
emp1 Microsoft 10000
emp2 Microsoft 90000
</code></pre>
<p>output should be : </p>
<pre><code>Microsoft 2
IBM 0
</code></pre>
<p>But the following query and other similar queries print only
those companies which have at least one employee :</p>
<pre><code>Select count(*) from works natural join company group by company.cname
</code></pre>
<p>If I use outer join, then the companies with zero employees will still show
up in one row, so that option is out as well.</p>
<p>How to do it?</p>
http://stackoverflow.com/questions/1166862/flex-changing-the-appearance-of-a-disabled-checkbox1Flex : Changing the appearance of a disabled checkboxdta2009-07-22T17:22:49Z2009-07-22T17:36:12Z
<p>A disabled checkbox in flex looks very "light" colored, almost invisible.
Is it possible to make it look like an enabled checkbox which does not
do anything on a click event?</p>
http://stackoverflow.com/questions/1166862/flex-changing-the-appearance-of-a-disabled-checkbox/1166947#11669471Answer by dta for Flex : Changing the appearance of a disabled checkboxdta2009-07-22T17:36:12Z2009-07-22T17:36:12Z<p>disabledIconColor="0x000000" does a pretty good job.</p>
http://stackoverflow.com/questions/1115665/drupal-mysql-database-design-question0Drupal MySql database design questiondta2009-07-12T09:49:32Z2009-07-20T14:52:44Z
<pre>
I was just looking at the MySql database created by drupal after I installed it.
All the tables are in MyISAM.
With a complex software like drupal, wouldn't it make more sense to
use foreign keys and hence InnoDB tables to enforce referential integrity?
Without foreign keys all the constraint checking will happen at the
PHP end.
</pre>
http://stackoverflow.com/questions/1113830/c-malloc-inexplicable-memory-usage2C malloc : inexplicable memory usagedta2009-07-11T14:34:15Z2009-07-14T10:38:48Z
<p>When I compile and run the following code :(using gcc on cygwin) </p>
<pre><code>int *a = malloc(1024*1024*100*sizeof(int));
while(1)
;
</code></pre>
<p>The task manager in Windows XP shows
memory usage by this process as 2232K,
which according to me should have been around 400000K.</p>
<p>When I compile and run the following code :(using gcc on cygwin) </p>
<pre><code>int *a = malloc(1024*1024*400*sizeof(int));
while(1)
;
</code></pre>
<p>the memory usage goes down to 1388K;</p>
<p>So, rather than showing an increase, it actually
shows a decline.</p>
<p>What could explain this?</p>
http://stackoverflow.com/questions/1028664/papervision-3d-with-flex0Papervision 3D with Flexdta2009-06-22T18:13:03Z2009-07-14T07:00:02Z
<p>I am a newbie to Papervision. I want to design a sphere with 8 holes around one
of its diameters. How do I do it? How do I draw anything on a sphere in Papervision?</p>
http://stackoverflow.com/questions/1216015/bundling-php-mysql-with-flex-to-be-given-to-a-client/1217822#1217822Comment by dta on Bundling PHP MySql with Flex to be given to a clientdta2009-08-03T06:50:10Z2009-08-03T06:50:10ZBut there is one problem with using sqllite. A promise of Flex, that the code written in Flex is easily usable across an offline or an online application, is broken.http://stackoverflow.com/questions/1195555/flex-forcing-extension-on-a-file-name/1195929#1195929Comment by dta on Flex : forcing extension on a file namedta2009-07-29T05:46:10Z2009-07-29T05:46:10Ztried this. doesn't make any difference at all. In the download dialog box, filename is still shown as xyz.tar, and I can still tamper with the extension.http://stackoverflow.com/questions/1028644/flex-unable-to-open-locale-enus/1191743#1191743Comment by dta on Flex : Unable to open 'locale/en_US'dta2009-07-28T04:32:02Z2009-07-28T04:32:02ZYou should have added a comment, rather than adding an answer.http://stackoverflow.com/questions/1188991/flex-layout-changes-made-to-a-single-state/1189047#1189047Comment by dta on Flex layout : Changes made to a single statedta2009-07-27T16:08:25Z2009-07-27T16:08:25Zaccno and phone are just two of the list, there are around 27 such itemshttp://stackoverflow.com/questions/1113830/c-malloc-inexplicable-memory-usage/1113854#1113854Comment by dta on C malloc : inexplicable memory usagedta2009-07-12T07:16:15Z2009-07-12T07:16:15ZValue of a is a valid number(integer).http://stackoverflow.com/questions/1113830/c-malloc-inexplicable-memory-usage/1114208#1114208Comment by dta on C malloc : inexplicable memory usagedta2009-07-11T17:30:18Z2009-07-11T17:30:18ZNothing changes by making the declaration volatile.http://stackoverflow.com/questions/1113964/c-array-pointer-question/1114001#1114001Comment by dta on C array pointer questiondta2009-07-11T16:07:53Z2009-07-11T16:07:53Zusing gcc on cygwin.http://stackoverflow.com/questions/1113964/c-array-pointer-question/1113973#1113973Comment by dta on C array pointer questiondta2009-07-11T15:48:08Z2009-07-11T15:48:08ZBut how? I am passing (&a) and doing *(&a) = malloc() which is same as 'a' = malloc(), so 'a' should have changed instead of a[0]?http://stackoverflow.com/questions/1113830/c-malloc-inexplicable-memory-usageComment by dta on C malloc : inexplicable memory usagedta2009-07-11T15:39:05Z2009-07-11T15:39:05ZMemory usage is 2232K, which is roughly 2MB? And it should have been
400,000K which is 400MB(I had written 4000K earlier which I have edited now).http://stackoverflow.com/questions/1113830/c-malloc-inexplicable-memory-usageComment by dta on C malloc : inexplicable memory usagedta2009-07-11T14:42:47Z2009-07-11T14:42:47ZIt's the field named "Mem Usage" under the "Processes" tab
of the task manager.http://stackoverflow.com/questions/1113810/another-c-pointer-question/1113831#1113831Comment by dta on Another C pointer Questiondta2009-07-11T14:36:05Z2009-07-11T14:36:05ZI explicitly wrote that I know why it fails...
My question was why would the second snippet not compile?http://stackoverflow.com/questions/1109847/c-pointers-question/1109872#1109872Comment by dta on C pointers Questiondta2009-07-10T16:00:25Z2009-07-10T16:00:25ZThis helps me a lot.(alongwith sharptooth's answer)
<a href="http://stackoverflow.com/questions/991075/does-a-pointer-also-have-any-address-or-memory-allocation/991152#991152" rel="nofollow" title="does a pointer also have any address or memory allocation">stackoverflow.com/questions/991075/…</a>
http://stackoverflow.com/questions/1109847/c-pointers-question/1109872#1109872Comment by dta on C pointers Questiondta2009-07-10T14:39:33Z2009-07-10T14:39:33ZEven if I don't write &a, there must be some place where a is actually stored?http://stackoverflow.com/questions/1081759/flex-embedding-hindi-fonts-problem/1082234#1082234Comment by dta on Flex Embedding Hindi Fonts Problemdta2009-07-05T05:33:25Z2009-07-05T05:33:25ZIndeed. Viewing through a font manager program, the name given was NormalA.http://stackoverflow.com/questions/1081759/flex-embedding-hindi-fonts-problem/1082755#1082755Comment by dta on Flex Embedding Hindi Fonts Problemdta2009-07-05T05:32:55Z2009-07-05T05:32:55ZWhen I list the fonts in the Windows Fonts folder, it's named : "Kundli Hindi Normal". When I view this font through a font management program, the subfamilies shown for this font are :
"NormalA".
Your solution works perfectly nonetheless.
Thanks !