User dta - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T14:30:38Z http://stackoverflow.com/feeds/user/49560 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/764899/mysql-max-query 1 Mysql Max query dta 2009-04-19T05:40:45Z 2009-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-applications 1 Flex : Cross resolution applications dta 2009-08-06T15:10:10Z 2009-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-enctype 3 html form enctype dta 2009-06-10T09:28:03Z 2009-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-sqllite 0 Adobe AIR with PHP/MySql or sqllite dta 2009-08-03T14:56:24Z 2009-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-difference 0 Visual Basic 6.0 Passing by Value Reference difference dta 2009-07-08T18:16:14Z 2009-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-name 0 Flex : forcing extension on a file name dta 2009-07-28T17:32:36Z 2009-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-iphone 1 Flex applications for iPhone dta 2009-06-22T18:09:50Z 2009-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-theory 0 Online resources for Finite Automata Theory dta 2009-05-31T16:47:08Z 2009-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-form 0 Question about 3rd Normal Form dta 2009-04-18T17:45:12Z 2009-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-application 2 Accessing CD/DVD drive for backup from Adobe AIR application dta 2009-01-02T05:03:44Z 2009-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-flex 0 Using google transliteration in Flex dta 2009-07-05T07:25:48Z 2009-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> &lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8"/&gt; &lt;script type="text/javascript" src="http://www.google.com/jsapi"&gt; &lt;/script&gt; &lt;script type="text/javascript"&gt; // 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); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;center&gt;Type in Indian languages (Press Ctrl+g to toggle between English and Hindi)&lt;/center&gt; &lt;div id='translControl'&gt;&lt;/div&gt; &lt;br&gt;Title : &lt;input type='textbox' id="transl1"/&gt; &lt;br&gt;Body&lt;br&gt;&lt;textarea id="transl2" style="width:600px;height:200px"&gt;&lt;/textarea&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/870218/b-trees-b-trees-difference 3 B- trees, B+ trees difference dta 2009-05-15T18:42:14Z 2009-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-buttonbarflex 0 highlighting the selected button in a buttonbar(flex) dta 2009-01-16T10:24:51Z 2009-08-19T06:27:18Z <p>how to do it?</p> http://stackoverflow.com/questions/1246087/using-math-functions-in-sql-with-ms-access 0 Using math functions in Sql with MS Access dta 2009-08-07T17:43:57Z 2009-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-conditionals 1 Flex : Assignment in Conditionals dta 2009-08-06T14:58:13Z 2009-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-apps 3 protecting adobe air apps dta 2009-01-18T10:36:18Z 2009-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-corresponding 1 Flex datagrid different fonts for column header and the text in the corresponding cell dta 2009-08-04T16:26:57Z 2009-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#1228627 0 Answer by dta for Flex datagrid different fonts for column header and the text in the corresponding cell dta 2009-08-04T16:45:45Z 2009-08-04T16:45:45Z <pre><code>Here is one workaround : &lt;mx:DataGridColumn headerText="colHeader" dataField="marHD" width="100" editable="false" fontFamily="Arial" rendererIsEditor="true" editorDataField="text"&gt; &lt;mx:itemRenderer&gt; &lt;mx:Component&gt; &lt;mx:Text fontFamily="myfontfamily"/&gt; &lt;/mx:Component&gt; &lt;/mx:itemRenderer&gt; &lt;/mx:DataGridColumn&gt; </code></pre> http://stackoverflow.com/questions/400241/accessing-mysql-from-adobe-flex-air 2 Accessing mysql from Adobe flex/AIR dta 2008-12-30T13:25:01Z 2009-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-top 1 Flex scrolling the canvas to its top dta 2009-08-03T14:48:39Z 2009-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-client 0 Bundling PHP MySql with Flex to be given to a client dta 2009-08-01T06:56:30Z 2009-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-enus 1 Flex : Unable to open 'locale/en_US' dta 2009-06-22T18:06:44Z 2009-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-feel 0 Flex : Disabled canvas look and feel dta 2009-07-27T16:55:17Z 2009-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-state 0 Flex layout : Changes made to a single state dta 2009-07-27T15:55:45Z 2009-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> &lt;mx:SetProperty target="{accno}" name="x" value="116"/&gt; &lt;mx:SetProperty target="{accno}" name="y" value="826"/&gt; &lt;mx:SetProperty target="{phone}" name="x" value="116"/&gt; &lt;mx:SetProperty target="{phone}" name="y" value="866"/&gt; </code></pre> http://stackoverflow.com/questions/743456/displaying-rows-with-count-0-with-mysql-group-by 1 Displaying rows with count 0 with mysql group by dta 2009-04-13T09:37:57Z 2009-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-checkbox 1 Flex : Changing the appearance of a disabled checkbox dta 2009-07-22T17:22:49Z 2009-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#1166947 1 Answer by dta for Flex : Changing the appearance of a disabled checkbox dta 2009-07-22T17:36:12Z 2009-07-22T17:36:12Z <p>disabledIconColor="0x000000" does a pretty good job.</p> http://stackoverflow.com/questions/1115665/drupal-mysql-database-design-question 0 Drupal MySql database design question dta 2009-07-12T09:49:32Z 2009-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-usage 2 C malloc : inexplicable memory usage dta 2009-07-11T14:34:15Z 2009-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-flex 0 Papervision 3D with Flex dta 2009-06-22T18:13:03Z 2009-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#1217822 Comment by dta on Bundling PHP MySql with Flex to be given to a client dta 2009-08-03T06:50:10Z 2009-08-03T06:50:10Z But 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#1195929 Comment by dta on Flex : forcing extension on a file name dta 2009-07-29T05:46:10Z 2009-07-29T05:46:10Z tried 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#1191743 Comment by dta on Flex : Unable to open 'locale/en_US' dta 2009-07-28T04:32:02Z 2009-07-28T04:32:02Z You should have added a comment, rather than adding an answer. http://stackoverflow.com/questions/1188991/flex-layout-changes-made-to-a-single-state/1189047#1189047 Comment by dta on Flex layout : Changes made to a single state dta 2009-07-27T16:08:25Z 2009-07-27T16:08:25Z accno and phone are just two of the list, there are around 27 such items http://stackoverflow.com/questions/1113830/c-malloc-inexplicable-memory-usage/1113854#1113854 Comment by dta on C malloc : inexplicable memory usage dta 2009-07-12T07:16:15Z 2009-07-12T07:16:15Z Value of a is a valid number(integer). http://stackoverflow.com/questions/1113830/c-malloc-inexplicable-memory-usage/1114208#1114208 Comment by dta on C malloc : inexplicable memory usage dta 2009-07-11T17:30:18Z 2009-07-11T17:30:18Z Nothing changes by making the declaration volatile. http://stackoverflow.com/questions/1113964/c-array-pointer-question/1114001#1114001 Comment by dta on C array pointer question dta 2009-07-11T16:07:53Z 2009-07-11T16:07:53Z using gcc on cygwin. http://stackoverflow.com/questions/1113964/c-array-pointer-question/1113973#1113973 Comment by dta on C array pointer question dta 2009-07-11T15:48:08Z 2009-07-11T15:48:08Z But how? I am passing (&amp;a) and doing *(&amp;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-usage Comment by dta on C malloc : inexplicable memory usage dta 2009-07-11T15:39:05Z 2009-07-11T15:39:05Z Memory 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-usage Comment by dta on C malloc : inexplicable memory usage dta 2009-07-11T14:42:47Z 2009-07-11T14:42:47Z It's the field named &quot;Mem Usage&quot; under the &quot;Processes&quot; tab of the task manager. http://stackoverflow.com/questions/1113810/another-c-pointer-question/1113831#1113831 Comment by dta on Another C pointer Question dta 2009-07-11T14:36:05Z 2009-07-11T14:36:05Z I 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#1109872 Comment by dta on C pointers Question dta 2009-07-10T16:00:25Z 2009-07-10T16:00:25Z This 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/&hellip;</a> http://stackoverflow.com/questions/1109847/c-pointers-question/1109872#1109872 Comment by dta on C pointers Question dta 2009-07-10T14:39:33Z 2009-07-10T14:39:33Z Even if I don't write &amp;a, there must be some place where a is actually stored? http://stackoverflow.com/questions/1081759/flex-embedding-hindi-fonts-problem/1082234#1082234 Comment by dta on Flex Embedding Hindi Fonts Problem dta 2009-07-05T05:33:25Z 2009-07-05T05:33:25Z Indeed. Viewing through a font manager program, the name given was NormalA. http://stackoverflow.com/questions/1081759/flex-embedding-hindi-fonts-problem/1082755#1082755 Comment by dta on Flex Embedding Hindi Fonts Problem dta 2009-07-05T05:32:55Z 2009-07-05T05:32:55Z When I list the fonts in the Windows Fonts folder, it's named : &quot;Kundli Hindi Normal&quot;. When I view this font through a font management program, the subfamilies shown for this font are : &quot;NormalA&quot;. Your solution works perfectly nonetheless. Thanks !