User jake - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T14:08:36Zhttp://stackoverflow.com/feeds/user/389http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/901049/how-do-i-connect-to-mysql-5-1-in-visual-studio-20102How do I connect to MySQL 5.1 in Visual Studio 2010?jake2009-05-23T07:07:30Z2009-11-19T20:53:03Z
<p>Does any one know how to connect to <a href="http://en.wikipedia.org/wiki/MySQL" rel="nofollow">MySQL</a> 5.1 with <a href="http://en.wikipedia.org/wiki/Microsoft%5FVisual%5FStudio#Visual%5FStudio%5F2010" rel="nofollow">Visual Studio 2010</a>? </p>
<p>I have already tried the <a href="http://dev.mysql.com/downloads/connector/odbc/5.1.html" rel="nofollow">MySQL Connector/ODBC</a> route and it got me really nasty results. The table rows were all listed as a view in the views section and nothing at all was listed in the tables or procedures folder.</p>
http://stackoverflow.com/questions/1755754/how-do-i-go-about-matching-three-fields-from-two-tables-in-order-to-update-the-sa0How do i go about matching three fields from two tables in order to update the same tables in case of matchjake2009-11-18T12:49:57Z2009-11-18T14:29:05Z
<p>Given two tables A and B in a MySQL Database, how can one update a field in a row of table A if and only if certain fields in the fore-mentioned row in table A exactly match fields in a distinct row of table B. The rows in table B must be used once and only once for each comparison. As such, a row in Table B that has fields matching a row in Table A can not be used a gain to match any other row in Table A.</p>
<p>I have tried</p>
<pre><code>UPDATE
Table A,
Table B
SET
Table A.Status = 'MATCHED',
Table B.Status = 'USED'
WHERE
Table B.Status IS NULL
AND
Table A.Field1 = Table B.Field1
AND
Table A.Field2 = Table B.Field2
</code></pre>
<p>Unfortunately, this does not give my desired results since different rows from Table A tend to get matched with the same row in Table B.</p>
<p>For example: Table A</p>
<pre><code>ID Date Ref Amount Status
1 2009-10-20 773 300000
2 2009-10-20 773 10000 MATCHED
3 2009-10-20 773 150000
4 2009-10-20 773 20000 MATCHED
5 2009-10-20 773 140000 MATCHED
</code></pre>
<p>Table B</p>
<pre><code> Ref Amount Date ID
870 50000 2009-11-01 1
871 50000 2009-11-01 2
871 80000 2009-11-01 3
871 20000 2009-11-01 4
871 20000 2009-11-01 5
871 20000 2009-11-01 6
872 300000 2009-11-01 7
</code></pre>
<p>To match using Ref, Amount and Date.</p>
http://stackoverflow.com/questions/669051/how-can-i-get-enterprise-manager-for-oracle-11g-r1-to-install0How can i get Enterprise Manager for Oracle 11g R1 to install?jake2009-03-21T09:47:38Z2009-10-08T05:33:34Z
<p>I am running a windows xp sp3 machine with 22gb free space, 1.5ghz Intel Pentium M and 768MB of RAM. Every time i try to install oracle 11g, the installation goes okay except for running the emca script.</p>
<blockquote>
<p>Enterprise manager failed due to the
following error- error starting
database control</p>
</blockquote>
<p>caused by OracleDBConsoleorcl not being able to start</p>
<blockquote>
<p>Could not start the
OracleDBConsoleorcl on local computer.
Error 1053: The service did not
respond to the start or control
request in timely fashion.</p>
</blockquote>
<p>the event logs show</p>
<blockquote>
<p>The OracleDBConsoleorcl service
terminiated with service-specific
error 2(0x2)</p>
</blockquote>
<p>I have tried everything from editing the host file, setting a static ip to configuring the loopback adapter. None of this seems to be working. Is there something i am doing wrong?</p>
http://stackoverflow.com/questions/781186/subsonic-simple-query/785293#7852930Answer by jake for Subsonic - Simple Queryjake2009-04-24T10:19:53Z2009-04-24T10:19:53Z<p>was in same situation recently and came up with this:</p>
<pre><code>TableCollection tablecollection = new TableCollection;
Comparison comp = Comparison.Equals;
tablecollection.Where(Table.Columns.Val1, comp, Table.Columns.Val2);
tablecollection.Load();
</code></pre>
<p>i found this better because i don't like inline queries. and it gives
more flexibility if you wish to allow for adhoc querying in you app.</p>
http://stackoverflow.com/questions/669051/how-can-i-get-enterprise-manager-for-oracle-11g-r1-to-install/671443#6714430Answer by jake for How can i get Enterprise Manager for Oracle 11g R1 to install?jake2009-03-22T18:56:59Z2009-03-23T18:56:03Z<p>After what has been a looooong weekend of surfing, trial and error, i have the problem licked.</p>
<ul>
<li>first, do a normal install and ignore the </li>
</ul>
<blockquote>
<p>Enterprise manager failed due to the
following error- error starting
database control</p>
</blockquote>
<p>error</p>
<ul>
<li>setup up static IP, preferably on a loopback adapter if you are using a laptop, and make sure it is listed in host file as first IP i reccomend using <a href="http://www.funkytoad.com/index.php?option=com%5Fcontent&task=view&id=13" rel="nofollow">HostExpert</a> from funkytoad for this</li>
<li>run the following at a command prompt (cmd as opposed to the run/open)</li>
</ul>
<blockquote>
<ul>
<li><code>set oracle_sid=orcl</code></li>
<li><code>emca -repos recreate</code></li>
<li><code>emca start dbconole</code></li>
</ul>
</blockquote>
<p>and bob's your uncle. in my case enterprise manager is on port 1158 as opposed to 5500 so YMMV. </p>
http://stackoverflow.com/questions/457565/how-do-i-update-a-change-using-subsonic-and-mysql/460234#4602341Answer by jake for How do I update a change using SubSonic and MySQLjake2009-01-20T05:52:53Z2009-01-20T05:52:53Z<p>apparently the solution was, following Robs excellent advice above, to</p>
<pre><code>User u = User.FetchByID(2);
u.Ulevel = ulevel;
u.save();
</code></pre>
<p>i was not too sure that the snippet above would work for updates until you specify
the record you wish to update.</p>
<p>my question to Rob however is, why does "u.Update(2, "jmarcus",..." give the error
above?</p>
http://stackoverflow.com/questions/457565/how-do-i-update-a-change-using-subsonic-and-mysql0How do I update a change using SubSonic and MySQLjake2009-01-19T13:21:43Z2009-01-20T05:52:53Z
<p>I was trying to <a href="http://en.wikipedia.org/wiki/Test-driven_development" rel="nofollow">TDD</a> using SubSonic 2.1, MySQL and C# and when I got to testing updating an existing record using the code below,</p>
<pre><code>public void Test2()
{
User.Insert("jmarcus1", "jmarcus1", "jackass", "marcus", 3, false);
User users = new User();
int ulevel = 1;
User.Update(2, "jmarcus1", "jmarcus1", "jackass", "marcus", ulevel, false);
Assert.AreEqual(1, users.Ulevel);
}
</code></pre>
<p>with the following</p>
<pre><code>------ Test started: Assembly: SalMan.dll ------
Starting the MbUnit Test Execution
Exploring SalMan, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
MbUnit 2.4.2.130 Addin
Found 3 tests
[success] TestFixture1.Test
[success] TestFixture1.Test1
[failure] TestFixture1.Test2
TestCase 'TestFixture1.Test2'
failed: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE `userid` = 1; SELECT 1 AS id' at line 1
MySql.Data.MySqlClient.MySqlException
Message: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE `userid` = 1; SELECT 1 AS id' at line 1
Source: MySql.Data
StackTrace:
at MySql.Data.MySqlClient.MySqlStream.OpenPacket()
at MySql.Data.MySqlClient.NativeDriver.ReadResult(UInt64& affectedRows, Int64& lastInsertId)
at MySql.Data.MySqlClient.MySqlDataReader.GetResultSet()
at MySql.Data.MySqlClient.MySqlDataReader.NextResult()
at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
at MySql.Data.MySqlClient.MySqlCommand.ExecuteScalar()
C:\svn\subsonicproject\trunk\SubSonic\DataProviders\MySqlDataProvider.cs(280,0): at SubSonic.MySqlDataProvider.ExecuteScalar(QueryCommand qry)
C:\svn\subsonicproject\trunk\SubSonic\DataProviders\DataService.cs(533,0): at SubSonic.DataService.ExecuteScalar(QueryCommand cmd)
C:\svn\subsonicproject\trunk\SubSonic\ActiveRecord\ActiveRecord.cs(182,0): at SubSonic.ActiveRecord`1.Save(String userName)
D:\My Documents\Visual Studio 2008\Projects\SalMan\SalMan\Generated\User.cs(352,0): at Salman.User.Update(Int32 varUserid, String varUsername, String varPassword, String varFname, String varLname, Int32 varUlevel, Boolean varStatus)
D:\My Documents\Visual Studio 2008\Projects\SalMan\SalMan\Tests\TestFixture1.cs(40,0): at salman.TestFixture1.Test2()
[reports] generating HTML report
TestResults: file:///C:/Documents%20and%20Settings/*****************/Application%20Data/MbUnit/Reports/SalMan.Tests.html
2 passed, 1 failed, 0 skipped, took 7.66 seconds.
</code></pre>
<p>Does anyone have a workaround for this?</p>
http://stackoverflow.com/questions/4371/how-do-i-retrieve-my-mysql-username-and-password/4403#44033Answer by jake for How do I retrieve my MySQL username and password?jake2008-08-07T04:54:27Z2008-11-13T09:13:26Z<p>unfortunately your user password is irretrievable. it has been hashed with a one way hash which if you don't know is irreversible. i recommend go with Xenph Yan above and just create an new one.</p>
<p>You can also use the following procedure from <a href="http://dev.mysql.com/doc/refman/5.0/en/resetting-permissions.html" rel="nofollow">the manual</a> for resetting the password for any MySQL <em>root</em> accounts on Windows:
1. Log on to your system as Administrator.
2. Stop the MySQL server if it is
running. For a server that is
running as a Windows service, go to
the Services manager: </p>
<pre><code>> Start Menu -> Control Panel -> Administrative Tools -> Services
Then find the MySQL service in the
list, and stop it. If your server is
not running as a service, you may
need to use the Task Manager to
force it to stop.
</code></pre>
<ol>
<li><p>Create a text file and place the following statements in it. Replace the password with the password that you want to use.</p>
<p>UPDATE mysql.user SET Password=PASSWORD('MyNewPass') WHERE User='root';
FLUSH PRIVILEGES;</p>
<p>The <em>UPDATE</em> and <em>FLUSH</em> statements each must be written on a single line. The <em>UPDATE</em> statement resets the password for all existing root accounts, and the <em>FLUSH</em> statement tells the server to reload the grant tables into memory.</p></li>
<li>
Save the file. For this example, the file will be named <em>C:\mysql-init.txt.</em></li>
<li><p>Open a console window to get to the command prompt: </p>
<blockquote>
<p>Start Menu -> Run -> cmd</p>
</blockquote></li>
<li><p>Start the MySQL server with the special <em>--init-file</em> option:</p>
<blockquote>
<p>C:> C:\mysql\bin\mysqld-nt --init-file = C:\mysql-init.txt</p>
</blockquote>
<p>If you installed MySQL to a location other than <em>C:\mysql</em>, adjust the command accordingly.</p>
<p>The server executes the contents of the file named by the <em>--init-file</em> option at startup, changing each <em>root</em> account password.</p>
<p>You can also add the <em>--console</em> option to the command if you want server output to appear in the console window rather than in a log file.</p>
<p>If you installed MySQL using the MySQL Installation Wizard, you may need to specify a <em>--defaults-file</em> option:</p>
<blockquote>
<pre><code> C:\> "C:\Program Files\MySQL\MySQL Server 5.0\bin\mysqld-nt.exe" --defaults-file="C:\Program Files\MySQL\MySQL Server 5.0\my.ini" --init-file=C:\mysql-init.txt
</code></pre>
</blockquote>
<p>The appropriate <em>--defaults-file</em> setting can be found using the Services Manager:</p>
<blockquote>
<p>Start Menu -> Control Panel -> Administrative Tools -> Services</p>
</blockquote>
<p>Find the MySQL service in the list, right-click on it, and choose the Properties option. The Path to executable field contains the <em>--defaults-file</em> setting.</p></li>
<li>
After the server has started successfully, delete <em>C:\mysql-init.txt</em>.</li>
<li>
Stop the MySQL server, then restart it in normal mode again. If you run the server as a service, start it from the Windows Services window. If you start the server manually, use whatever command you normally use.</li>
</ol>
<p>You should now be able to connect to MySQL as root using the new password. </p>
http://stackoverflow.com/questions/220601/what-is-some-good-software-for-designing-mysql-databases/236817#2368171Answer by jake for What is some good software for designing MySQL databases?jake2008-10-25T18:31:39Z2008-10-25T18:31:39Z<p>I have used quite a number and reviewed and <a href="http://stackoverflow.com/questions/40902/looking-for-mysql-ide#41381">linked</a> them. Now though i am a <a href="http://stackoverflow.com/questions/36551/mysql-shell-on-windows#37457">Sqlyog</a> fan through and through, i am going to have to agree with <a href="http://stackoverflow.com/questions/220601/what-is-some-good-software-for-designing-mysql-databases#220604">Shabbyrobe</a> above and say <a href="http://dev.mysql.com/workbench/" rel="nofollow">Mysql Workbench</a> it gives a nice clear easy to use graphical user interface that allows you to do both your ERM and sql script at the same time.
It does have the same short coming as Sqlyog in that for the really fun stuff, you need to pay.</p>
http://stackoverflow.com/questions/133556/best-programming-novel-to-take-on-holiday/137904#1379041Answer by jake for Best programming novel to take on holidayjake2008-09-26T05:27:02Z2008-09-26T05:27:02Z<p>i can't believe that no one has mentioned <a href="http://www.jasonkchapman.com" rel="nofollow"><strong>Jason K Chapman</strong></a>'s <a href="http://happyhacker.org/heretic/" rel="nofollow"><strong>The Heretic</strong></a> i must be getting old or something</p>
http://stackoverflow.com/questions/131085/whats-the-quickest-way-to-dump-load-a-mysql-innodb-database-using-mysqldump/133141#1331411Answer by jake for What's the quickest way to dump & load a MySQL InnoDB database using mysqldump?jake2008-09-25T12:53:05Z2008-09-25T12:53:05Z<p>hi josh, i think it will be a lot faster and save you disk space if you tried <a href="http://stackoverflow.com/questions/46545/how-do-i-do-backups-in-mysql#86079">database replication</a> as opposed to using mysqldump. personally i use <a href="http://www.webyog.com/en/downloads.php" rel="nofollow">sqlyog enterprise</a> for my really heavy lifting but there also a number of <a href="http://stackoverflow.com/questions/40902/looking-for-mysql-ide#41381">other tools</a> that can provide the same services. unless of course you would like to use only mysqldump.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/83288#8328811Answer by jake for Computer Language puns and jokesjake2008-09-17T13:36:43Z2008-09-21T19:50:53Z<blockquote>
<p><strong>The 12 most common statements you are likely to hear from a Klingon
programmer</strong> </p>
<ul>
<li>“Specifications are for the weak and
timid!”</li>
<li>“This machine is a piece of GAGH! I
need dual Pentium processors if I am
to do battle with this code!”</li>
<li>“You cannot begin to appreciate
Dilbert unless you have read it in
the original Klingon!”</li>
<li>“Indentation?! I will show you how
to indent when I indent your skull!”</li>
<li>“What is this talk of ‘release’?
Klingons do not ‘release’ software.
We uncage our software, letting it
leave a bloody trail of designers
and quality assurance people in its
wake.”</li>
<li>“Klingon function calls do not have
‘parameters.’ They have ‘arguments’
. . . and they ALWAYS WIN THEM!”</li>
<li>“Debugging? Klingons do not debug.
Our software does not coddle the
weak.”</li>
<li>“I have challenged the entire
quality assurance team to a Bat-Leth
contest. They will not trouble us
again.”</li>
<li>“A TRUE Klingon programmer does not
comment his code!”</li>
<li>“By filing this PTR you have
challenged the honor of my family.
Prepare to die!”</li>
<li>“You question the worthiness of my
code? I should kill you where you
stand!”</li>
<li>“Our users will know fear and cower
before our software! Ship it! Ship
it and let them flee like the dogs
they are!”</li>
</ul>
</blockquote>
<p>anon</p>
http://stackoverflow.com/questions/46545/how-do-i-do-backups-in-mysql/86079#860790Answer by jake for How do I do backups in MySQL? jake2008-09-17T18:18:44Z2008-09-17T18:28:03Z<p>@<a href="#46686" rel="nofollow">Daniel</a>,</p>
<p>in case you are still interested, there is a newish (new to me) solution shared by <a href="http://capttofu.livejournal.com/" rel="nofollow">Paul Galbraith</a>, a tool that allows for online backup of innodb tables called <a href="http://www.innodb.com/hot-backup/" rel="nofollow">ibbackup</a> from oracle which to quote Paul,</p>
<blockquote>
<p>when used in conjunction with
<a href="http://www.innodb.com/support/documentation/innodb-hot-backup-manual/#innobackup" rel="nofollow">innobackup</a>, has worked great in
creating a nightly backup, with no
downtime during the backup</p>
</blockquote>
<p>more detail can be found on <a href="http://capttofu.livejournal.com/12455.html" rel="nofollow">Paul's blog</a></p>
http://stackoverflow.com/questions/46545/how-do-i-do-backups-in-mysql/46670#466704Answer by jake for How do I do backups in MySQL? jake2008-09-05T19:24:43Z2008-09-05T19:24:43Z<p>now i am beginning to sound like a marketeer for this product. i answered a question with it <a href="http://beta.stackoverflow.com/questions/36551/mysql-shell-on-windows" rel="nofollow">here</a>, then i answered another with it again <a href="http://beta.stackoverflow.com/questions/40902/looking-for-mysql-ide#41381" rel="nofollow">here</a>.</p>
<p>in a nutshell, try sqlyog (enterprise in your case) from <a href="http://www.webyog.com/en" rel="nofollow">webyog</a> for all your mysql requirements. it not only <a href="http://www.webyog.com/faq/category/24/backup_restore.html" rel="nofollow">schedules backups</a>, but also <a href="http://www.webyog.com/faq/category/25/sqlyog-job-agent-sja.html" rel="nofollow">schedules synchronization</a> so you can actually replicate your database to a remote server.</p>
<p>it has a free community edition as well as an enterprise edition. i recommend the later to you though i also reccomend you start with the comm edition and first <a href="http://www.webyog.com/en/sqlyog_feature_matrix.php" rel="nofollow">see how you like it</a>.</p>
http://stackoverflow.com/questions/40902/looking-for-mysql-ide/41381#413812Answer by jake for Looking for MySQL IDE?jake2008-09-03T09:51:36Z2008-09-03T09:58:17Z<p>well, there are many many ides out there ranging from free to darn right take-the-shirt-off-your-back expensive. let me give you my hit list in order of preference</p>
<ol>
<li><a href="http://www.webyog.com/en/downloads.php" rel="nofollow">Sqlyog</a> i did some writeup on this one <a href="http://beta.stackoverflow.com/questions/36551/mysql-shell-on-windows#37457" rel="nofollow">here</a>. </li>
<li><a href="http://www.mysql.com/products/tools/query-browser/" rel="nofollow">mysql query browser</a>. </li>
<li><a href="http://dev.mysql.com/workbench/" rel="nofollow">mysql workbench</a>. </li>
<li><a href="http://www.toadsoft.com/toadmysql/Overview.htm" rel="nofollow">toad</a> for mysql (with <a href="http://www.quest.com/toad-for-mysql/" rel="nofollow">knowledge expert</a>). </li>
<li><a href="http://www.embarcadero.com/products/rapidsql/index.html" rel="nofollow">embarcadero rapidsql</a>. </li>
<li><a href="http://www.sqlmanager.net/en/products/studio/mysql" rel="nofollow">sqlmanager for mysql</a>. </li>
<li><a href="http://www.navicat.com/" rel="nofollow">navicat for mysql</a> </li>
<li><a href="http://www.altova.com/" rel="nofollow">Altova</a> <a href="http://www.altova.com/products/databasespy/database_tool.html" rel="nofollow">Databasespy</a>.</li>
</ol>
<p>this is just a list for those i have either used or still currently use due to specific features they offer.</p>
<p>at the end of the day, after using all the above, not only did i narrow down to sqlyog, but i also paid for the enterprise version because i feel it does everything i would like a gui to do in mysql.</p>
http://stackoverflow.com/questions/225/how-can-i-use-an-old-pata-hard-disk-drive-on-my-newer-sata-only-computer/3089#30891Answer by jake for How can I use an old PATA hard disk drive on my newer SATA-only computer?jake2008-08-06T05:01:53Z2008-08-06T05:01:53Z<p>i'm somewhat surprised no one has suggested an ide to sata connector. the usb to pata way is rather tricky due to the huge difference in speeds.
of course this method may mean that you sacrifice the use of your dvd drive while the copying takes place. this is a real hassle too because it involves opening the case and unplugiing stuff.</p>http://stackoverflow.com/questions/2260/what-is-test-driven-development-tdd/2341#23411Answer by jake for What is Test Driven Development (TDD)?jake2008-08-05T14:04:35Z2008-08-05T14:07:55Z<p>TDD stands for test driven development. this is where by the whole development process is targeted toward passing tests setup beforehand. someone put it better saying you follow the following three rules:</p>
<ol>
<li>You are not allowed to write any production code unless it is to make a failing unit test pass.</li>
<li>You are not allowed to write any more of a unit test than is sufficient to fail; and compilation failures are failures.</li>
<li>You are not allowed to write any more production code than is sufficient to pass the one failing unit test.</li>
</ol>
<p>sorry i can't recall who wrote the above but they sum up the whole spirit of TDD imho</p>http://stackoverflow.com/questions/559/what-books-would-you-recommend-for-a-beginning-software-developer/2188#21881Answer by jake for What books would you recommend for a beginning Software Developer?jake2008-08-05T12:37:01Z2008-08-05T12:58:25Z<p>because i tend to like indepth tomes and good reading, i would go with Dr Timothy Lethbridge's Object-Oriented Software Engineering: Practical Software Development using UML and Java for grounding, Theory and Practice of Relational Databases by Stefan Stanczyk, Bob Champion, and Richard Leyton for introduction to databases and then The Mythical Man-Month: Essays on Software Engineering by fred brooks for software projects.</p>
<p>the timothy lethbridge book has got lecture videos as well for those who enjoy a good movie</p>
<p>oh yes ofcourse dont forget codinghorror.com by jeff atwood. however the true value of this site is only seen if you start reading from the very begining of the posts in the archives</p>http://stackoverflow.com/questions/1329/what-is-a-better-file-copy-alternative-than-the-windows-default/2118#21181Answer by jake for What is a better file copy alternative than the Windows default?jake2008-08-05T11:44:29Z2008-08-05T11:44:29Z<p>i built myself a pc with 4gb ram, dual core 1.8ghz 40gb pata drive primary, and 250gb sata drive secondary and installed vista business edition. when i had to copy 120gb of data from my old pata disk, vista failed miserably and kept crashing. i definately recommend teracopy free edition.</p>http://stackoverflow.com/questions/1755754/how-do-i-go-about-matching-three-fields-from-two-tables-in-order-to-update-the-saComment by jake on How do i go about matching three fields from two tables in order to update the same tables in case of matchjake2009-11-18T14:29:33Z2009-11-18T14:29:33ZDone. now please sign NDA :)http://stackoverflow.com/questions/1755754/how-do-i-go-about-matching-three-fields-from-two-tables-in-order-to-update-the-sa/1755950#1755950Comment by jake on How do i go about matching three fields from two tables in order to update the same tables in case of matchjake2009-11-18T13:34:07Z2009-11-18T13:34:07Zcan you suggest the extra conditions please?http://stackoverflow.com/questions/901049/how-do-i-connect-to-mysql-5-1-in-visual-studio-2010/901173#901173Comment by jake on How do I connect to MySQL 5.1 in Visual Studio 2010?jake2009-05-23T13:38:00Z2009-05-23T13:38:00Zi'm lazy. i was hoping to do this through the server explorer addin. i have tried the .net connector and visual studio 2010 doesn't seem to pick it up. there is something wrong with the installation methinks.http://stackoverflow.com/questions/467591/how-to-get-into-subsonic/496954#496954Comment by jake on How to get into SubSonic?jake2009-04-24T10:51:23Z2009-04-24T10:51:23ZRob, you are writing the docs. what is the new url? i was on the site but forgot to bookmark it. it was a very good begining. someone check twitter.com/robconery amongst the old tweets there must be a link.http://stackoverflow.com/questions/467591/how-to-get-into-subsonic/467693#467693Comment by jake on How to get into SubSonic?jake2009-04-24T10:48:51Z2009-04-24T10:48:51Zi quite agree. using it extensively and then either googling or putting questions on SO is definately the way to go. after six months with subsonic, i'm more confortable with it than other prods except maybe mygeneration and nhibernate.
it is the easiest to learn though :)http://stackoverflow.com/questions/781186/subsonic-simple-query/785293#785293Comment by jake on Subsonic - Simple Queryjake2009-04-24T10:20:50Z2009-04-24T10:20:50Zi'm using ss 2.0.5http://stackoverflow.com/questions/669051/how-can-i-get-enterprise-manager-for-oracle-11g-r1-to-install/671443#671443Comment by jake on How can i get Enterprise Manager for Oracle 11g R1 to install?jake2009-03-22T18:58:36Z2009-03-22T18:58:36Znow to figure out why nmesrvc is going to town with my cpu cycles.!!!http://stackoverflow.com/questions/669051/how-can-i-get-enterprise-manager-for-oracle-11g-r1-to-install/669078#669078Comment by jake on How can i get Enterprise Manager for Oracle 11g R1 to install?jake2009-03-21T10:23:55Z2009-03-21T10:23:55Zmore questions? would it be too much to ask if you brought the answer here instead of pointing me at a search i have already done? also, loopback is not a problem since my windows 7 pc doesn't have it but oracle 11g is runing fine with enterprise manager. thanks all the samehttp://stackoverflow.com/questions/457565/how-do-i-update-a-change-using-subsonic-and-mysql/458774#458774Comment by jake on How do I update a change using SubSonic and MySQLjake2009-01-20T04:50:44Z2009-01-20T04:50:44Zthat insert is the second record in the db. what i was trying to do is change the ulevel from 3 to 1 via the update method. it looks like you are suggesting that i re-insert?http://stackoverflow.com/questions/457565/how-do-i-update-a-change-using-subsonic-and-mysql/458774#458774Comment by jake on How do I update a change using SubSonic and MySQLjake2009-01-20T04:47:44Z2009-01-20T04:47:44Zthanks for pointing out that error. it was only during transferring the code to web that i made that typo. i was trying to update.http://stackoverflow.com/questions/200257/how-do-you-know-how-to-design-a-mysql-database-when-creating-an-advanced-php-appl/200262#200262Comment by jake on how do you know how to design a mysql database when creating an advanced php application?jake2008-10-25T18:43:32Z2008-10-25T18:43:32Zexcellent answer dudehttp://stackoverflow.com/questions/200257/how-do-you-know-how-to-design-a-mysql-database-when-creating-an-advanced-php-appl/225619#225619Comment by jake on how do you know how to design a mysql database when creating an advanced php application?jake2008-10-25T18:43:01Z2008-10-25T18:43:01Zmake a comment instead dudehttp://stackoverflow.com/questions/172380/programming-texts-and-reference-material-for-my-kindle-dx-creating-the-ultimate/172419#172419Comment by jake on Programming texts and reference material for my Kindle DX, creating the ultimate reference device?jake2008-10-17T11:54:35Z2008-10-17T11:54:35Zi loved Bruce Eckel's "Thinking in..." serieshttp://stackoverflow.com/questions/172380/programming-texts-and-reference-material-for-my-kindle-dx-creating-the-ultimate/172400#172400Comment by jake on Programming texts and reference material for my Kindle DX, creating the ultimate reference device?jake2008-10-17T11:53:35Z2008-10-17T11:53:35Zwith the lecture videos also available at <a href="http://groups.csail.mit.edu/mac/classes/6.001/abelson-sussman-lectures/" rel="nofollow">groups.csail.mit.edu/mac/classes/…</a>http://stackoverflow.com/questions/194812/list-of-freely-available-programming-books/211768#211768Comment by jake on List of freely available programming booksjake2008-10-17T11:52:23Z2008-10-17T11:52:23Zthe lecture videos are available for this too man find them at <a href="http://groups.csail.mit.edu/mac/classes/6.001/abelson-sussman-lectures/" rel="nofollow">groups.csail.mit.edu/mac/classes/…</a>