User Elie - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T18:04:57Z http://stackoverflow.com/feeds/user/23249 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1904834/php-abstract-method-resolution 0 PHP Abstract Method Resolution Elie 2009-12-15T02:16:50Z 2009-12-15T02:42:09Z <p>I have an abstract class defined as follows:</p> <pre><code>abstract class Abstract Parent extends Zend_Db_Table_Abstract { abstract function funcA($post); abstract function funcB(); public function newEntry($post) { $t1 = $this-&gt;funcA($post); $t2 = $this-&gt;funcB(); } } </code></pre> <p>The child class defines the two abstract methods, as follows:</p> <pre><code>require_once 'atablemodel.php'; class Child extends AbstractParent { public function funcB() { return 'Some Value'; } public function funcA($post) { $data = array( 'v1' =&gt; htmlentities($post['v1']) ); return $data; } } </code></pre> <p>However, when I try this, I get an error:</p> <pre><code>Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /var/www/.../abstractparent.php on line 27 </code></pre> <p>which is the line where the abstract parent is calling one of the abstract methods. What I want to have happen is that this line should call the child method, which is defined.</p> <p>Now, I assume that there is a way to do this, and since I'm a beginner to PHP, I'm doing something fundamentally wrong. Any suggestions as to what I might do to resolve this? If I were to define the two abstract methods as having implementations, and then overriding those methods in all children (that is, not deal with abstract classes at all), how would I ensure that the parent calling one of those methods would call the appropriate child method at execution time?</p> <p><strong>EDIT</strong></p> <p>In light of the various comments about the issue of combining the static and abstract, I redefined the classes as above, with a new error, also shown above.</p> http://stackoverflow.com/questions/1898860/using-abstract-classes-with-php 0 Using Abstract classes with PHP Elie 2009-12-14T04:09:01Z 2009-12-14T04:14:27Z <p>I'm new to PHP, and was trying to create an Abstract class with a mix of abstract and non-abstract methods, and then extend the class to implement the abstract methods. The following is portions of my two class files:</p> <pre><code>&lt;?php require_once 'Zend/Db/Table/Abstract.php'; abstract class ATableModel extends Zend_Db_Table_Abstract { abstract static function mapValues($post); abstract static function getTableName(); public static function newEntry($post) { $db = Zend_Db_Table_Abstract::getDefaultAdapter(); $data = mapValues($post, true); $db-&gt;insert(getTableName(), $data); $id = $db-&gt;lastInsertId(); return $id; } public static function getEntry($id){ $db = Zend_Db_Table_Abstract::getDefaultAdapter(); $db-&gt;setFetchMode(Zend_Db::FETCH_OBJ); return $db-&gt;fetchRow(" SELECT * FROM ".getTableName()." WHERE ID = '".(int)$id."' " ); } public static function editEntry($id,$post) { $db = Zend_Db_Table_Abstract::getDefaultAdapter(); $data = mapValues($post); $db-&gt;update(getTableName(), $data, " ID = '".(int)$id."' "); } public static function deleteEntry($id) { $db = Zend_Db_Table_Abstract::getDefaultAdapter(); $db-&gt;delete(getTableName()," ID = '".(int)$id."' "); } } ?&gt; </code></pre> <p>The child class looks as follows:</p> <pre><code>&lt;?php require_once 'Zend/Db/Table/Abstract.php'; class Testing extends ATableModel { public static function getTableName() { return 'TESTING'; } public static function mapValues($post) { $data = array ( 'test_description' =&gt; htmlentities($post['testDescription']) ); return $data; } } ?&gt; </code></pre> <p>Both files are located in the same directory relative to one another. However, when I try to run my application, I get the following error: </p> <pre><code>Fatal error: Class 'ATableModel' not found in /var/www/testApp/application/models/testing.php on line 20 </code></pre> <p>My guess is that there's something wrong with either the order that I'm loading the files, or with where these files are located, relative to one another. However, I'm not sure how to proceed from here. Suggestions?</p> http://stackoverflow.com/questions/348690/comparing-dates-in-lingo 0 Comparing dates in Lingo Elie 2008-12-08T05:03:00Z 2009-12-03T10:26:55Z <p>How do I compare two dates in Lingo? To be specific, I want to know if today's date is after some fixed date. I know I can create the fixed date by using:</p> <pre><code>date("20090101") </code></pre> <p>and I can get the current date using:</p> <pre><code>_system.date() </code></pre> <p>but I can't seem to directly compare the two. Do I have to parse the _system.date() to determine if it's after my fixed date? I tried:</p> <pre><code>if(_system.date() &gt; date("20090101") then --do something end if </code></pre> <p>but that doesn't seem to work. Any ideas?</p> http://stackoverflow.com/questions/1814392/foreign-keys-and-mysql-errors 1 Foreign Keys and MySQL Errors Elie 2009-11-29T02:00:09Z 2009-11-29T22:33:58Z <p>I have the following script to create a table in MySQL version 5.1 which is to refer to 3 other tables. All 3 tables have been created using InnoDB, and all 3 tables have the ID column defined as INT.</p> <p>I have created other tables successfully which reference ACCOUNT and PERSON, however, this is the first table which references ADDRESS, so I've included the definition for that table, as run, below as well.</p> <p>The error which I'm getting is ERROR 1005 (HY000) with errno 150, which I understand to be relating to foreign key creation. </p> <p>The script which fails is (extra columns removed for simplicity):</p> <pre><code>CREATE TABLE WORK_ORDER ( ID INT NOT NULL AUTO_INCREMENT PRIMARY KEY, ACCOUNT_ID INT NOT NULL, CUSTOMER_ID INT NOT NULL, SALES_ID INT, TRADES_ID INT, LOCATION_ID INT NOT NULL, INDEX CUST_INDEX(CUSTOMER_ID), INDEX SALES_INDEX(SALES_ID), INDEX TRADES_INDEX(TRADES_ID), INDEX ACCOUNT_INDEX(ACCOUNT_ID), INDEX LOCATION_INDEX(LOCATION_ID), FOREIGN KEY (CUSTOMER_ID) REFERENCES PERSON(ID) ON DELETE CASCADE, FOREIGN KEY (SALES_ID) REFERENCES PERSON(ID) ON DELETE SET NULL, FOREIGN KEY (TRADES_ID) REFERENCES PERSON(ID) ON DELETE SET NULL, FOREIGN KEY (ACCOUNT_ID) REFERENCES ACCOUNT(ID) ON DELETE CASCADE, FOREIGN KEY (LOCATION_ID) REFERENCES ADDRESS(ID) ON DELETE SET NULL ) ENGINE=InnoDB; </code></pre> <p>The SQL statement used to create the ADDRESS table is below (extra columns removed for simplicity).</p> <pre><code>CREATE TABLE ADDRESS ( ID INT NOT NULL AUTO_INCREMENT PRIMARY KEY, PERSON_ID INT NOT NULL, ACCOUNT_ID INT NOT NULL, ADDRESS_L1 VARCHAR(50), ADDRESS_L2 VARCHAR(50), CITY VARCHAR(25), PROVINCE VARCHAR(20), POSTAL_CODE VARCHAR(6), COUNTRY VARCHAR(25), INDEX CUST_INDEX(PERSON_ID), INDEX ACCOUNT_INDEX(ACCOUNT_ID), FOREIGN KEY (ACCOUNT_ID) REFERENCES ACCOUNT(ID) ON DELETE CASCADE, FOREIGN KEY (PERSON_ID) REFERENCES PERSON(ID) ON DELETE CASCADE ) ENGINE=InnoDB; </code></pre> <p>I've browsed through several questions here dealing with similar issues, but most seem to be duplicate definitions and non-matching field types, as well as some not using InnoDB for one or the other of the tables. However, none of these seem to be the problem. Any ideas?</p> http://stackoverflow.com/questions/1794986/switching-databases-in-php 0 Switching databases in PHP Elie 2009-11-25T06:12:58Z 2009-11-25T06:27:06Z <p>I'm new to PHP, so this question might best be answered by a brief explanation of fundamentals of PHP rather than addressing what I'm trying to do (although that would be useful too).</p> <p>I want to set up multiple databases for my application, based on user. When the user logs in, it would authenticate them against DB-1, and retrieve from there which database is to be used for everything else.</p> <p>I define my login.php file as follows:</p> <pre><code>&lt;?php $db_hostname = 'localhost'; $db_database = 'testing'; $db_username = 'someuser'; $db_password = 'somepass'; ?&gt; </code></pre> <p>and then I have another PHP file defined as follows:</p> <pre><code>&lt;%php require_once 'login.php'; $db_server = mysql_connect($db_hostname, $db_username, $db_password); if (!$db_server) die ("Unable to connect to MySQL: " . mysql_error()); mysql_select_db($db_database) or die ("Unable to select database: " . mysql_error()); function check_login($user, $password) { $user = mysql_entities_fix_string($user); $password = mysql_entities_fix_string($password); $password = secure_password($password); $query = "SELECT DB_NAME, DB_USER FROM USERS WHERE USER_NAME='$user' AND PASSWORD='$password'"; $result = mysql_query($query); if (!$result) 0; //no access to the database elseif (mysql_num_rows($result)) { $row = mysql_fetch_row($result); $db_database = $row[0]; $db_username = $row[1]; $db_password = $password; return 1; //login succeeded } else { return 2; //login failure } } ?&gt; </code></pre> <p>What I am wondering is about the end of the function check_login(). Assume that the USERS table would return the name of the database (e.g. 'db123522') and the username for that database (e.g. 'jsmith'), and the password would be the same as their salted and hashed password. That is, each user would have their own database, with a generated user name and a password matching their salted+hashed password.</p> <p>In this case, if my second PHP file had another function to access the database, how would I go about ensuring that it would use the new database definition, and not the database definition from login.php? </p> <p>What is retained in memory between one call to the functions in this PHP file and the next call, and can this differentiate between users? If I have to put some of this information into the session so that I can load the appropriate database on the next call, what would be the minimal amount of information to let me do this, without compromising the security of the application (that is, I obviously don't want to put a password into the session)?</p> <p>Is there a better way to do this (I'm sure there is, but can someone explain it to me or point me in the right direction)?</p> http://stackoverflow.com/questions/1781149/how-to-create-an-audio-cd-using-c-or-java 0 How to create an Audio CD using C# or Java Elie 2009-11-23T04:49:11Z 2009-11-23T04:58:10Z <p>I'm looking for an API that would allow me to create an audio CD from within a C# application. The CDs are to be created and closed in the same session (no rewrite required). Basically, my application locates files on behalf of a user, and, if a blank CD is present in the drive, creates an audio CD for the user. If no CD is present, it checks to see if there's a USB drive attached and copies the files there (this part I already know how to do).</p> <p>I would prefer to write this application in either C# or Java, as I'm most comfortable with those, but I don't know how hard it would be to create CDs using either language.</p> <p>There are several other questions here that deal with regular CDs, but I didn't see any discussing audio CDs.</p> http://stackoverflow.com/questions/1753345/align-a-div-using-css 0 Align a div using CSS Elie 2009-11-18T02:53:30Z 2009-11-18T04:16:41Z <p>I have the following defined in my css file:</p> <pre><code>body { text-align: center; float: right; position: fixed; } .twoColFixRtHdr #container { width: 780px; margin: 0 auto; border: 1px solid #000000; text-align: left; } </code></pre> <p>and I have my HTML defined as follows:</p> <pre><code>&lt;body class="twoColFixRtHdr"&gt; &lt;div id="container"&gt; &lt;div id="header"&gt; </code></pre> <p>The problem is, in IE (all versions I've been able to check) center the content of the page, but in Firefox, it's left-aligned. I know that text-align:center will center the content of the element, but not the element itself, so you have to nest your content, which is what the extra div is for. But I must be missing something about the differences between IE and Firefox in terms of how it renders this tag. </p> <p>Any ideas? You can look at the site: <a href="http://www.solar-fit.ca" rel="nofollow">http://www.solar-fit.ca</a></p> http://stackoverflow.com/questions/494250/director-11-and-flash-with-as-2-communication 0 Director 11 and Flash with AS 2 communication Elie 2009-01-30T02:02:51Z 2009-11-10T18:25:20Z <p>I have a Director project with 3 scripts (2 behaviors and 1 movie script). I have the following code in my movie script:</p> <pre><code>on startRecording () --do stuff _movie.script["script2"].passGrade(75, 3, 4) end </code></pre> <p>and in one of my behavior scripts, I have the following:</p> <pre><code>on passGrade (acc, dur, tim) member("Assessment", "Assessment").displayGrade(acc, dur, tim) end passGrade </code></pre> <p>where the name of the second behavior script is <code>script2</code>and there is a Flash object on the stage called <code>Assessment</code> which has an ActionScript method called <code>displayGrade</code> which takes 3 numbers as input.</p> <p>I have 2 questions. First, the call <code>-movie.script["script2"].passGrade(75, 3, 4)</code> does not work, and I can't figure out why. Am I not allowed to call from a movie script to a behavior? Or am I not doing this correctly? The second question is how do I call the ActionScript method? The script is defined as a behavior for the Flash object, which is called <code>Assessment</code>, but Director doesn't seem to be able to locate the method.</p> <p>I am using Director 11 with HotFix 3, and the Flash object was compiled for ActionScript 2.</p> http://stackoverflow.com/questions/546487/tools-to-identify-code-duplications/546510#546510 0 Answer by Elie for Tools to identify code duplications Elie 2009-02-13T16:06:35Z 2009-11-09T19:01:19Z <p>For Java, there is <a href="http://www.parasoft.com/jsp/products/home.jsp?product=Jtest" rel="nofollow">JTest</a> which can do code duplication detection.</p> http://stackoverflow.com/questions/404498/add-rows-programmatically-to-a-datagridtable 1 Add rows programmatically to a DataGridTable Elie 2009-01-01T03:55:18Z 2009-10-29T22:10:34Z <p>How do I add rows programmatically to a DataGridTable in C#? When the user selects an option, I want to repopulate a DataGridTable with fresh data, which I am acquiring as shown below:</p> <pre><code> connect.Open(); MySqlCommand comm = connect.CreateCommand(); comm.CommandText = getCustomerInvoices + customerID + "\'"; MySqlDataReader r = comm.ExecuteReader(); while (r.Read()) { DataGridViewRow d = new DataGridViewRow(); String[] parameters = new String[5]; parameters[0] = r.GetValue(0).ToString(); parameters[1] = r.GetValue(1).ToString(); parameters[2] = r.GetValue(2).ToString(); parameters[3] = r.GetValue(3).ToString(); parameters[4] = r.GetValue(4).ToString(); d.SetValues(parameters); invoiceTable.Rows.Add(d); } connect.Close(); </code></pre> <p>What seems to happen is that I get a new row added to the table, but the old rows are still there, and the new row does not appear to have any values in it (a bunch of blank textboxes, and I know that this query is returning one result in my test case).</p> <p>Can someone explain to me what I have to do?</p> http://stackoverflow.com/questions/404299/c-mysql-connection-problems 1 C# MySQL Connection problems Elie 2009-01-01T00:01:18Z 2009-10-07T11:00:08Z <p>I'm now using Visual Studio 2008 Pro Edition. I installed <a href="http://dev.mysql.com/downloads/connector/net/5.2.html" rel="nofollow">Connector/Net 5.2</a> with Visual Studio integration. I restarted Visual Studio, and MySQL database now appears in the list of data providers. I entered my database information, and clicked "Test Connection" and it succeeds, but when I try to close the Add Connection dialog, I get an error:</p> <pre><code>Unable to find the requested .NET Framework Data Provider. It may not be installed. </code></pre> <p>Have I missed a step in setting this up? </p> http://stackoverflow.com/questions/875892/itextsharp-verticle-spacing-question 0 iTextSharp Verticle Spacing Question Elie 2009-05-18T01:07:58Z 2009-09-11T15:00:01Z <p>Hi,</p> <p>I'm using iTextSharp to generate some PDF files. I have two tables which have content, and I want to put some space between the two tables, say the equivalent of 1 line of text (using the same font as the tables around the space).</p> <p>Below is the code I'm using to add the two tables. What I cannot figure out is how to place a vertical space between the two tables.</p> <pre><code>Table upperTable = new Table(1); upperTable.Border = Rectangle.NO_BORDER; upperTable.DefaultCell.Border = Rectangle.NO_BORDER; upperTable.DefaultCell.HorizontalAlignment = Element.ALIGN_CENTER; upperTable.AddCell(new Phrase("some text", font3)); d.Add(upperTable); Table lowerTable= new Table(1); lowerTable.Border = Rectangle.NO_BORDER; lowerTable.DefaultCell.Border = Rectangle.NO_BORDER; lowerTable.DefaultCell.HorizontalAlignment = Element.ALIGN_CENTER; lowerTable.AddCell(new Phrase("some other text", font3)); d.Add(lowerTable); </code></pre> <p>Can someone tell me how I can add the vertical space between the two tables?</p> <p>Thanks!</p> http://stackoverflow.com/questions/899350/how-to-copy-the-contents-of-a-string-to-clipboard-in-c 5 How to copy the contents of a String to clipboard in C# Elie 2009-05-22T18:39:36Z 2009-09-11T07:56:18Z <p>If I have some text in a String, how can I copy that to the clipboard so that the user can paste it into another window (e.g. from my application to Notepad)?</p> http://stackoverflow.com/questions/774058/xg-midi-file-format 1 XG MIDI File Format Elie 2009-04-21T18:52:46Z 2009-09-01T14:16:09Z <p>I have a Yamaha MIDI guitar, that, when I play a MIDI file encoded using the XG MIDI standard, causes certain lights on the guitar to turn on and off. I am trying to determine the MIDI event that causes this so that I can programmatically send the same event without the use of a MIDI file (the same way I can send a Note On (144) or Note Off (128) command). </p> <p>However, while I have been able to locate a copy of the MIDI protocol, I have not been able to locate the XG MIDI protocol. Is there a way, beyond trying to send all possible commands to the device until I locate the appropriate command, to determine what the MIDI event is that is causing the lights to change state? Or is there somewhere that I can get a copy of the XG MIDI protocol?</p> http://stackoverflow.com/questions/1116952/views-in-mysql-based-on-multiple-computed-values 1 Views in MySQL based on multiple computed values Elie 2009-07-12T21:20:29Z 2009-07-12T23:09:47Z <p>In a follow-up to a previous question, let's say I have 3 tables, A, B, and C. Table A has an ID which is used as a foreign key on tables B and C, each of which has some value as an attribute. For each ID in table A, I want to get the difference in value between tables B and C, which can be done as follows:</p> <pre><code>CREATE VIEW T1 AS SELECT B.A_ID AS ID, SUM(B.VALUE) AS VAL FROM B GROUP BY B.A_ID; CREATE VIEW T2 AS SELECT C.A_ID AS ID, SUM(C.VALUE) AS VAL FROM C GROUP BY C.A_ID; SELECT T1.ID, T1.VAL, T2.VAL FROM T1, T2 WHERE T1.ID = T2.ID; </code></pre> <p>The problem is, what if table B has some values for a particular ID, but table C does not, or vice versa. In that case, my select statement will not return that row. Is there a way for me to create a single view, which essentially looks like the following:</p> <pre><code>CREATE VIEW T3 AS SELECT B.A_ID AS ID, SUM(B.VALUE) AS VAL1, SUB(C.VAL) AS VAL2 FROM B, C WHERE B.A_ID = C.A_ID GROUP BY B.A_ID; </code></pre> <p>An example of the creation script for such a view would be appreciated.</p> http://stackoverflow.com/questions/1115296/mysql-column-definition 0 MySQL column definition Elie 2009-07-12T04:15:49Z 2009-07-12T04:35:05Z <p>Is there a way, using MySQL 5.0, to define a column in a table that is to be calculated whenever a select is executed on that particular row? For example say I have two tables, A and B:</p> <pre><code>A: ID COMPUTED_FIELD = SUM(SELECT B.SOME_VALUE FROM B WHERE B.A_ID = ID) B: ID A_ID SOME_VALUE </code></pre> <p>In the example, when I run a select on A for a particular ID, I want it to return the sum of all values in Table B for that particular value of A.ID. I know how to do this using multiple separate queries and doing a group by A_ID, but I'm trying to streamline the process a little.</p> http://stackoverflow.com/questions/146498/jtable-column-spanning 2 JTable column spanning Elie 2008-09-28T19:00:05Z 2009-07-11T15:46:45Z <p>I am trying to make a JTable that has column spans available. Specifically, I am looking to nest a JTable inside another JTable, and when the user clicks to view the nested table, it should expand to push down the rows below and fill the empty space. This is similar to what you see in MS Access where you can nest tables, and clicking the expand button on a row will show you the corresponding entries in the nested table. </p> <p>If someone knows of a way to perform a column span with JTable, can you please point me in the right direction? Or if you know of an alternative way to do this, I am open to suggestions. The application is being built with Swing. Elements in the table, both high level and low level, have to be editable in any solution. Using nested JTables this won't be a problem, and any other solution would have to take this into consideration as well.</p> http://stackoverflow.com/questions/1018315/white-papers-and-books-on-programming-for-performance-in-java 3 White papers and books on programming for performance in Java Elie 2009-06-19T14:38:44Z 2009-06-19T22:40:52Z <p>I'm looking for a white paper or online book/tutorial about coding efficiently in Java. I've read the white paper from Sun on Performance Tuning (which was mostly about JVM settings) and the one about Garbage Collection management. I'm looking for a paper that focuses more at the code level - which types of constructs are more efficient than others, what code patterns are more efficient than others, and so on.</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/936162/program-director-file-with-actionscript/936181#936181 0 Answer by Elie for Program Director file with actionscript? Elie 2009-06-01T18:52:08Z 2009-06-01T18:52:08Z <p>You can make calls to and from AS3 and Lingo, although they are asynchronous calls, so you have to be careful not to rely on the calls being executed immediately. You can insert an .SWF file into a Director file, but you cannot modify the .SWF file directly in Director. Working between the two can be fairly tedious, and I would not recommend it unless you have a good reason.</p> <p>If you are taking a course on Director, I would recommend that you learn Director and Lingo. There is limited expertise available on those, and it can make you more employable if you know how to work with them.</p> http://stackoverflow.com/questions/936164/include-and-reference-resource-file-from-c-class 0 Include and Reference Resource File from C# class Elie 2009-06-01T18:47:03Z 2009-06-01T18:49:51Z <p>I have an image that is used in some PDF files that my C# application generates. I know how to reference the image file when it is located in my workspace, but when I compile the program, I don't see the image anywhere in the compiled directory.</p> <p>Can someone tell me what happened to that file, or do I have to manually package the file along with my program when I send the program to the users? I added the image to the workspace by drag-drop to the resource directory of one of my namespaces.</p> http://stackoverflow.com/questions/875892/itextsharp-verticle-spacing-question/880795#880795 0 Answer by Elie for iTextSharp Verticle Spacing Question Elie 2009-05-19T03:10:47Z 2009-05-19T03:10:47Z <p>I found a solution that sort of works... add the new lines as part of either the preceding string, or the following string to the space that I want to create. For example:</p> <pre><code>Table upperTable = new Table(1); upperTable.Border = Rectangle.NO_BORDER; upperTable.DefaultCell.Border = Rectangle.NO_BORDER; upperTable.DefaultCell.HorizontalAlignment = Element.ALIGN_CENTER; upperTable.AddCell(new Phrase("some text" + '\n', font3)); d.Add(upperTable); Table lowerTable= new Table(1); lowerTable.Border = Rectangle.NO_BORDER; lowerTable.DefaultCell.Border = Rectangle.NO_BORDER; lowerTable.DefaultCell.HorizontalAlignment = Element.ALIGN_CENTER; lowerTable.AddCell(new Phrase('\n' + "some other text", font3)); d.Add(lowerTable); </code></pre> <p>would cause 2 lines whose height is defined by <code>font3</code> to be added between the <code>"some text"</code> and <code>"some other text"</code></p> http://stackoverflow.com/questions/877728/what-algorithm-to-use-to-determine-minimum-number-of-actions-required-to-get-the/877779#877779 0 Answer by Elie for What algorithm to use to determine minimum number of actions required to get the system to "Zero" state? Elie 2009-05-18T13:37:42Z 2009-05-18T13:37:42Z <p>You should be able to solve this in O(n) by first determining how much each person owes and is owed. Transfer the debts of anyone who owes less than he is owed to his debtors (thus turning that person into an end point). Repeat until you can't transfer any more debts.</p> http://stackoverflow.com/questions/876118/are-the-donald-knuth-books-worth-buying/876165#876165 1 Answer by Elie for Are the Donald Knuth books worth buying Elie 2009-05-18T03:37:45Z 2009-05-18T07:37:24Z <p>The books deliver the theory quite nicely, which is good if (and only if) you actually need to understand the theory of those algorithms. If you are planning on using the algorithms via library methods, but not construct your own, then Knuth's books are likely going to be way more information than you need. The basics of the various algorithms can be found online or in a variety of textbooks, which will provide you with sufficient information for selecting the most appropriate algorithm for your situation.</p> http://stackoverflow.com/questions/875897/hibernate-swing/875901#875901 1 Answer by Elie for Hibernate + Swing Elie 2009-05-18T01:12:31Z 2009-05-18T01:12:31Z <p>When closing the session, be aware that this causes your objects to become detached, and will involve some additional overhead to reattach the objects to the session in order to save or update them with the database.</p> <p>That being said, I agree with you that lugging a session around doesn't make much sense, and you should be releasing the session at the end of each transaction. I would lead toward having a pool of sessions from which each thread can access a session as it needs it, and release it back to the pool when it is done. You can use Spring to help you manage the sessions for this.</p> http://stackoverflow.com/questions/848708/how-does-one-handle-send-links-to-examples-of-work-in-job-posting/848720#848720 0 Answer by Elie for How does one handle "send links to examples of work" in job posting? Elie 2009-05-11T15:44:21Z 2009-05-11T15:44:21Z <p>If the site is no longer available, you can use the Internet Archive (<a href="http://www.archive.org" rel="nofollow">http://www.archive.org</a>) to send them information.</p> <p>Other than that, you can provide code snapshots if you have them, or references to people whom they can contact. Even if the company no longer exists, there should be someone from the company who can vouch for your work.</p> http://stackoverflow.com/questions/822252/perform-task-in-jsp-using-a-hashmap-lookup 0 Perform task in JSP using a Hashmap lookup Elie 2009-05-04T21:51:23Z 2009-05-08T17:35:32Z <p>I have a Hashmap and a set of keys. For each key, I want to perform a task depending on whether or not it is present in the hashmap. Can someone show be a way to do this? I'm using Struts and JSPs in my application</p> http://stackoverflow.com/questions/832916/c-mysql-parameterized-query-problem 0 C# MySQL Parameterized Query Problem Elie 2009-05-07T04:42:11Z 2009-05-07T04:55:25Z <p>I have the following method which is used to populate a DAO from the database. It performs 3 reads - one for the primary object, and 2 for some translations.</p> <pre><code>public bool read(string id, MySqlConnection c) { MySqlCommand m = new MySqlCommand(readCommand); m.Parameters.Add(new MySqlParameter("@param1", id)); m.Connection = c; MySqlDataReader r = m.ExecuteReader(); r.Read(); accountID = Convert.ToInt32(r.GetValue(0).ToString()); ... comment = r.GetValue(8).ToString(); r.Close(); m = new MySqlCommand(getAccountName); m.Parameters.Add(new MySqlParameter("@param1", accountID)); m.Connection = c; r = m.ExecuteReader(); r.Read(); account1Name = r.GetValue(0).ToString(); r.Close(); m = new MySqlCommand(getAccountName); m.Parameters.Add(new MySqlParameter("@param1", secondAccountID)); m.Connection = c; r = m.ExecuteReader(); r.Read(); account2Name = r.GetValue(0).ToString(); r.Close(); return true; } </code></pre> <p>On the line <code>account2Name = r.GetValue(0).ToString();</code> I get the following error:</p> <pre><code>Invalid attempt to access a field before calling Read() </code></pre> <p>I don't understand what the problem is - the previous line calls read!</p> http://stackoverflow.com/questions/812903/where-do-you-look-for-team-members/812927#812927 3 Answer by Elie for Where do you look for team members? Elie 2009-05-01T19:45:14Z 2009-05-01T19:45:14Z <p>Try Craig's List. Put up a job posting, you should be able to find someone that way. Or try elance or another job bidding site.</p> http://stackoverflow.com/questions/811632/simple-mvc-question-for-j2ee-web-applications/811668#811668 3 Answer by Elie for Simple MVC question for J2EE Web Applications? Elie 2009-05-01T14:41:42Z 2009-05-01T14:41:42Z <p>If it's logic that is only concerned with the view (in your example, making the data look "pretty"), then I would put it in the View. If, however, you would be later saving the modified data, then it should be in the business layer. In general, though, I tend to keep a layer between the View and the Control (your Manager class) that is only concerned with display issues and high level validation of input, but not complex business rules (ensure that very bad data never reaches the business tier).</p> http://stackoverflow.com/questions/783294/executing-an-sql-statement-in-c/783302#783302 0 Answer by Elie for Executing an SQL statement in C#? Elie 2009-04-23T20:02:22Z 2009-04-23T20:02:22Z <p>Try this (and you should try running the SQL from outside your application):</p> <pre><code>string sSQL = "INSERT INTO WordDef (Word, Good, Bad, Remove) VALUES ('" + WordArray[WordCount] + "', " + Good + ", " + Bad + ", " + Remove + ");"; </code></pre> http://stackoverflow.com/questions/1904834/php-abstract-method-resolution Comment by Elie on PHP Abstract Method Resolution Elie 2009-12-15T02:53:19Z 2009-12-15T02:53:19Z Oops... forgot the $ which resulted in the latest error. I was feeling stupid before, now it's worse! Thanks for your help everyone! http://stackoverflow.com/questions/1904834/php-abstract-method-resolution/1904858#1904858 Comment by Elie on PHP Abstract Method Resolution Elie 2009-12-15T02:44:24Z 2009-12-15T02:44:24Z I removed all static references for the time being, resulting in the error shown above. http://stackoverflow.com/questions/1904834/php-abstract-method-resolution/1904859#1904859 Comment by Elie on PHP Abstract Method Resolution Elie 2009-12-15T02:43:35Z 2009-12-15T02:43:35Z I tried using self:: and got an error regarding using this in abstractparent.php, and using this-&gt; resulted in the error shown above. http://stackoverflow.com/questions/1904834/php-abstract-method-resolution/1904836#1904836 Comment by Elie on PHP Abstract Method Resolution Elie 2009-12-15T02:28:57Z 2009-12-15T02:28:57Z But I can't call that from the parent, can I? Because then it'll resolve to the parent implementation, which is abstract... http://stackoverflow.com/questions/1904834/php-abstract-method-resolution Comment by Elie on PHP Abstract Method Resolution Elie 2009-12-15T02:27:01Z 2009-12-15T02:27:01Z Except it is - the method is static within the context of the implementing class. The value is always the same, and does not depend on the state of the class. Unless this isn't valid from a compiler point of view.... http://stackoverflow.com/questions/1904834/php-abstract-method-resolution/1904836#1904836 Comment by Elie on PHP Abstract Method Resolution Elie 2009-12-15T02:20:10Z 2009-12-15T02:20:10Z But then I get the error: &quot;Fatal error: Using $this when not in object context in /var/www/.../abstractparent.php on line 27&quot; http://stackoverflow.com/questions/1898860/using-abstract-classes-with-php/1898878#1898878 Comment by Elie on Using Abstract classes with PHP Elie 2009-12-14T04:15:47Z 2009-12-14T04:15:47Z Thanks, I knew it would be something simple to anyone with more experience than I have in this area! http://stackoverflow.com/questions/404299/c-mysql-connection-problems Comment by Elie on C# MySQL Connection problems Elie 2009-12-06T01:51:54Z 2009-12-06T01:51:54Z Not really, just bypassed the error by not using the visual DB tools for integration, and then switched to the C# Express Edition, which doesn't support this at all. http://stackoverflow.com/questions/1814392/foreign-keys-and-mysql-errors/1817013#1817013 Comment by Elie on Foreign Keys and MySQL Errors Elie 2009-11-30T13:51:59Z 2009-11-30T13:51:59Z Cool, learn something new every day (I guess that means I'm off the hook for learning for the rest of the day). http://stackoverflow.com/questions/1814392/foreign-keys-and-mysql-errors Comment by Elie on Foreign Keys and MySQL Errors Elie 2009-11-29T02:33:00Z 2009-11-29T02:33:00Z Thanks, that worked! Post it as an answer, and I'll mark it correct. http://stackoverflow.com/questions/1794986/switching-databases-in-php/1794999#1794999 Comment by Elie on Switching databases in PHP Elie 2009-11-25T06:27:11Z 2009-11-25T06:27:11Z Would that information be retained between multiple calls to this PHP file? Or would I have to pass this data in each time in order to distinguish between users? http://stackoverflow.com/questions/1794986/switching-databases-in-php Comment by Elie on Switching databases in PHP Elie 2009-11-25T06:25:42Z 2009-11-25T06:25:42Z @bumperbox if I encrypt it, I would have to decrypt it in order to use it. Using a decent encryption algorithm would make it painful to encrypt and decrypt on every request, thereby impacting the overall performance of the application. http://stackoverflow.com/questions/1794986/switching-databases-in-php Comment by Elie on Switching databases in PHP Elie 2009-11-25T06:23:53Z 2009-11-25T06:23:53Z Not really duplicates, by the way. They are dealing with the same issue, but one is about performance, not execution, and the other is about the pros and cons of using the multiple-db design, but again, not about execution. http://stackoverflow.com/questions/1794986/switching-databases-in-php Comment by Elie on Switching databases in PHP Elie 2009-11-25T06:21:13Z 2009-11-25T06:21:13Z Multiple reasons that have to do with data organization in the application, to keep each user's data isolated, to allow expansion based on volume, scalability, etc. http://stackoverflow.com/questions/1781149/how-to-create-an-audio-cd-using-c-or-java/1781171#1781171 Comment by Elie on How to create an Audio CD using C# or Java Elie 2009-11-23T05:08:21Z 2009-11-23T05:08:21Z I think that's basically what I was looking for. Now I just have one more piece of the puzzle - how to convert from MP3 to WAV (which is what that article was written for and assumes you have).