active questions tagged default - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T18:09:34Z http://stackoverflow.com/feeds/tag/default http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1822143/null-object-pattern-recursive-class-and-forward-declarations 1 Null Object Pattern, Recursive Class, and Forward Declarations Mark 2009-11-30T20:16:16Z 2009-11-30T21:10:25Z <p>Hi folks,</p> <p>I'm interested in doing something like the following to adhere to a Null Object design pattern and to avoid prolific NULL tests:</p> <pre><code>class Node; Node* NullNode; class Node { public: Node(Node *l=NullNode, Node *r=NullNode) : left(l), right(r) {}; private: Node *left, *right; }; NullNode = new Node(); </code></pre> <p>Of course, as written, NullNode has different memory locations before and after the Node class declaration. You could do this without the forward declaration, if you didn't want to have default arguments (i.e., remove Node *r=NullNode).</p> <p>Another option would use some inheritence: make a parent class (Node) with two children (NullNode and FullNode). Then the node example above would be the code for FullNode and the NullNode in the code above would be of type NullNode inheriting from Node. I hate solving simple problems by appeals to inheritence.</p> <p>So, the question is: how do you apply Null Object patterns to recursive data structures (classes) with default arguments (which are instances of that same class!) in C++?</p> http://stackoverflow.com/questions/1822021/why-does-hash-new-hide-hash-members 5 Why does Hash.new({}) hide hash members? Mladen Jablanović 2009-11-30T19:54:05Z 2009-11-30T20:10:01Z <p>Ok, so I wanted to create a hash which has an empty hash as the default value. A bit weird, I know, but let's say that I thought it might be useful.</p> <p>So here's what I did:</p> <pre><code>&gt;&gt; a = Hash.new({}) =&gt; {} &gt;&gt; a[:a][:b] = 5 =&gt; 5 &gt;&gt; a =&gt; {} &gt;&gt; a[:a] =&gt; {:b=&gt;5} &gt;&gt; a.keys =&gt; [] &gt;&gt; a.size =&gt; 0 &gt;&gt; a[:a].size =&gt; 1 </code></pre> <p>In other words, I don't see hash member when I inspect the hash, but I can access it by its key.</p> <p>Is this expected behavior? What is going on here?</p> <p>BTW, this is Ruby 1.9.1, haven't tried earlier versions.</p> <p>Edit: simplified example as it doesn't have to be a hash of hashes of hashes...</p> http://stackoverflow.com/questions/1212168/set-default-location-of-setup 0 Set Default Location of setup sakthikannan 2009-07-31T12:02:50Z 2009-11-27T13:00:02Z <p>hi,</p> <p>I need to set a string stored in registry as the default location of a setup file how to do in vb.net (visual studio 2008) Urgent please help me...</p> http://stackoverflow.com/questions/1039062/c-net-server-path-to-default-index-page 1 C#/.NET Server Path to default/index page fodder 2009-06-24T15:20:42Z 2009-11-25T17:56:13Z <p>In my attempt to further future-proof a project I am trying to find the best way to retrieve the full path and filename of the index/default page in a web directory using C# and without knowing the web server's list of filename possibilities.</p> <p>'Server.MapPath("/test/")' gives me 'C:\www\test\'</p> <p>...so does: 'Server.MapPath(Page.ResolveUrl("/test/"))'</p> <p>...but I need 'C:\www\test\index.html'.</p> <p>Does anyone know of an existing method of retrieving the filename that the webserver will serve up when someone browses to that directory - be it default.aspx, or index.html, or whatever?</p> <p>Thanks for any help, fodder</p> http://stackoverflow.com/questions/1795176/change-mysql-data-directory 0 change mysql data directory MySQL DBA 2009-11-25T07:13:34Z 2009-11-25T07:15:30Z <p>Hi All,</p> <p>Is it possible, if I change my default mysql data directory to other. But, will I be able to access the databases from old location.</p> <p>any inputs will be a great help.</p> <p>Thanks in advance</p> <p>Regards, Manasi</p> http://stackoverflow.com/questions/1793552/set-a-default-digital-certificate 0 Set a Default Digital Certificate [closed] David M 2009-11-24T23:02:53Z 2009-11-25T05:17:24Z <p>We have a site that requires SSL digital certificates and have issued client side certificates to allow users to connect. The users are now complaining that when they browse to our site they are prompted to select our certificate from a list, even though there is only one matching certificate (the one we issued).</p> <p>How can the user tell their browser to always use a particular certificate (to avoid being prompted) ?</p> http://stackoverflow.com/questions/1793611/wpf-controltemplate-how-to-provide-a-default-value-for-templatebinding 0 WPF ControlTemplate: How to provide a default value for TemplateBinding? TomáÅ¡ Kafka 2009-11-24T23:14:54Z 2009-11-25T04:15:57Z <p>I am writing a WPF control that subclasses a Button. I then provide a default style in Themes\generic.xaml, that looks like this (simplified):</p> <pre><code>&lt;Style TargetType="{x:Type WPFControls:MyButton}"&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="{x:Type WPFControls:MyButton}"&gt; &lt;Button x:Name="PART_Button" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" /&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; </code></pre> <p>I would like the user to have the opportunity to change the control's background, but if he doesn't, I'd like to provide default value. How do I do it?</p> <p>When I do it like in the posted code, the Background and BorderBrush is null (= nonexistent) unless user explicitly specifies them (which effectively forces user to always provide some value), but the standard windows controls (like Button) provide a default look, that can still be customized by user. How to do this in my control? </p> <p>Thank you!</p> <p><strong>Solution by Michael Morton:</strong> </p> <p>You can provide defaults as setters in style:</p> <pre><code>&lt;Style TargetType="{x:Type TestTemplate:MyButton}"&gt; &lt;Setter Property="Background" Value="Red" /&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="{x:Type TestTemplate:MyButton}"&gt; &lt;Button x:Name="PART_Button" IsEnabled="{TemplateBinding IsEnabled}" Content="{TemplateBinding Content}" Background="{TemplateBinding Background}" /&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; </code></pre> <p>Usage:</p> <pre><code>&lt;StackPanel&gt; &lt;TestTemplate:MyButton Background="Blue"&gt;Explicitly blue&lt;/TestTemplate:MyButton&gt; &lt;TestTemplate:MyButton&gt;Naturally red&lt;/TestTemplate:MyButton&gt; &lt;/StackPanel&gt; </code></pre> http://stackoverflow.com/questions/1782714/declaring-a-default-constraint-when-creating-a-table 0 Declaring a default constraint when creating a table kappa 2009-11-23T12:00:04Z 2009-11-23T14:21:15Z <p>Hi, I am creating a new table in Microsoft SQL server 2000 by writing the code instead of using the GUI, I am trying to learn how to do it "the manual way".</p> <p>This is the code I am actually using, and it works fine:</p> <pre><code>CREATE TABLE "attachments" ( "attachment_id" INT NOT NULL, "load_date" SMALLDATETIME NOT NULL, "user" VARCHAR(25) NOT NULL, "file_name" VARCHAR(50) NOT NULL, CONSTRAINT "pk_attachments" PRIMARY KEY ("attachment_id"), CONSTRAINT "fk_users" FOREIGN KEY ("user") REFERENCES "users" ("user"), CONSTRAINT "ch_load_date" CHECK ("load_date" &lt; GETDATE()) ) </code></pre> <p>I have specified the primary key, foreign key and check constraints on their own because in this way I can define a name for them, otherwise declaring them inline would make SQL Server generate a random name, and I do not "like" it.</p> <p>The problem arose when I tried to declare the default value constraint: looking at the informations on the internet and how Microsoft SLQ Server Management Studio creates it, I understood that it can be created both inline and on its own:</p> <pre><code>"load_date" SMALLDATETIME NOT NULL DEFAULT GETDATE() </code></pre> <p>or</p> <pre><code>CONSTRAINT "df_load_date" DEFAULT GETDATE() FOR "load_date" </code></pre> <p>The inline method works fine, but it generates as usual a random name for the constaint, the stand alone method throws an error, saying <code>Incorrect syntax near 'FOR'.</code>.</p> <p>Also, if I create the table and then <code>ALTER</code> it, the command works:</p> <pre><code>ALTER TABLE "attachments" ADD CONSTRAINT "df_load_date" DEFAULT GETDATE() FOR "load_date" </code></pre> <p><br /> As a reference, here is the full code I am trying to execute:</p> <pre><code>CREATE TABLE "attachments" ( "attachment_id" INT NOT NULL, "load_date" SMALLDATETIME NOT NULL, "user" VARCHAR(25) NOT NULL, "file_name" VARCHAR(50) NOT NULL, CONSTRAINT "pk_attachments" PRIMARY KEY ("attachment_id"), CONSTRAINT "fk_users" FOREIGN KEY ("user") REFERENCES "users" ("user"), CONSTRAINT "ch_load_date" CHECK ("load_date" &lt; GETDATE()), CONSTRAINT "df_load_date" DEFAULT GETDATE() FOR "load_date" ) </code></pre> <p><br /> <br /> I'm totally at loss here, is what I am trying to do not possible, or I am doing something wrong?</p> <p>Thanks in advance, Andrea.</p> <p><br /> <br /> <strong>Edit:</strong></p> <p>David M showed how to add a named default constraint using the inline syntax, I am still looking to understand if the stand alone syntax is completely wrong or it is my fault.</p> http://stackoverflow.com/questions/1278668/how-to-set-default-homepage-for-subdomain-on-iis7 1 How to set default homepage for subdomain on iis7? Rich 7 2009-08-14T15:53:09Z 2009-11-23T03:00:03Z <p>I've already set default homepage for "www.mydomain.com" sucessfully. Now, I want to set default homepage for "sub.mydomain.com", but it throw 404 page if i don't type "sub.mydomain.com/default.aspx" ? The first and the second site are separate physical folders and virtual directories on iis7.</p> http://stackoverflow.com/questions/1773718/how-to-save-default-context-settings-in-c 0 How to save default context settings in c#? Jooj 2009-11-20T22:51:45Z 2009-11-21T10:15:47Z <p>Hello,</p> <p>could somebody tell me why I can not save dynamic data in <code>Settings.Default.Context</code>?</p> <p>My code:</p> <pre><code>Settings.Default.Context.Add("myKey", "myValue"); Settings.Default.Save(); MessageBox.Show(Settings.Default.Context["myKey"].ToString());&lt;-- This works </code></pre> <p>If I don't reload the appi everything works fine. But after reload application and calling only </p> <pre><code>MessageBox.Show(Settings.Default.Context["myKey"].ToString());&lt;-- error on appi reload </code></pre> <p>then I get an error like <code>Object reference not set to an instance of an object.</code>. Why I can not save the context? What's the problem?</p> <p>I'm using this way saving because of then I'm able to dynamically add new keys and values.</p> <p>Best Regards!</p> http://stackoverflow.com/questions/1773687/google-translate-set-default-language 0 Google Translate set default language tdurham 2009-11-20T22:44:34Z 2009-11-21T03:58:42Z <p>Maybe this has an obvious solution that I'm overlooking, but I can't seem to find the correct parameter to put in to make this happen. Using the Google Translate widget on a site, I need to set the default language that the user sees when entering the site, even though the site is english.</p> <p>function googleTranslateElementInit() { new google.translate.TranslateElement({ pageLanguage: 'en' }, 'google_translate_element'); }</p> <p>I've tried adding: defaultLanguage: 'fr' and tried: targetLanguage: 'fr'</p> <p>I did find some nice jQuery solutions, but didn't want to bypass this if it was an easy fix.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1759457/require-a-default-constructor-in-java 4 Require a default constructor in java? jdc0589 2009-11-18T22:05:15Z 2009-11-19T07:03:31Z <p>Is there any way to <strong>require</strong> that a class have a default (no parameter) constructor, <strong>aside</strong> from using a reflection check like the following? (the following would work, but it's hacky and reflection is slow)</p> <pre><code> boolean valid = false; for(Constructor&lt;?&gt; c : TParse.class.getConstructors()) { if(c.getParameterTypes().length == 0) { valid = true; break; } } if(!valid) throw new MissingDefaultConstructorException(...); </code></pre> http://stackoverflow.com/questions/887246/rails-migrations-undo-default-setting-for-a-column 2 Rails migrations: Undo default setting for a column wulfovitch 2009-05-20T10:42:52Z 2009-11-17T02:36:11Z <p>Hi Stack Overflow Community!</p> <p>I have the problem, that I have an migration in Rails that sets up a default setting for a column, like this example:</p> <pre><code>def self.up add_column :column_name, :bought_at, :datetime, :default =&gt; Time.now end </code></pre> <p>Suppose, I like to drop that default settings in a later migration, how do I do that with using rails migrations?</p> <p>My current workaround is the execution of a custom sql command in the rails migration, like this:</p> <pre><code>def self.up execute 'alter table column_name alter bought_at drop default' end </code></pre> <p>But I don't like this approach, because I am now dependent on how the underlying database is interpreting this command. In case of a change of the database this query perhaps might not work anymore and the migration would be broken. So, is there a way to express the undo of a default setting for a column in rails? Thanks in advance!</p> http://stackoverflow.com/questions/1731043/default-values-in-xforms-input 0 Default Values in XForms Input Josh 2009-11-13T18:33:13Z 2009-11-15T18:21:52Z <p>I have an XForm that has certain fields that may often be left blank (optional street address). Is there is technique to set a default value for that field, preferably a space (I am running into weird formatting issues with CSS). The html form way of <code>value=""</code> doesn't work, neither does setting a default value in the XML schema.</p> <p>EXAMPLE:</p> <pre><code>&lt;xforms:input ref="clientaddress/streetaddress2" model="model_inventory" &gt; &lt;xforms:label&gt;Street Address (Line 2)&lt;/xforms:label&gt; </code></pre> <p>Leaving this field blank results in <code>&lt;streetaddress2/&gt;</code> in the resulting xml document</p> <p><em>I want</em></p> <pre><code>&lt;streetaddress&gt; &lt;/streetaddress&gt; </code></pre> http://stackoverflow.com/questions/1731826/ruby-configure-irb-to-prettyinspect-by-default 3 Ruby Configure IRB to Pretty_Inspect by Default unknown (google) 2009-11-13T20:48:55Z 2009-11-13T22:38:08Z <p>Hi Guys, I'm fairly new to ruby, and am configuring IRB. I like pretty print (require 'pp'), but it seems a hassle to always type pp for it to pretty print it. What I'd like to do is make it pretty print by default, so if i have a var , say, 'myvar', and type myvar, it automatically calls pretty_inspect instead of the regular inspect. Where do I get started? Ideally, I would be able to add a method to my .irbrc file that is automatically called. Any ideas?</p> <p>Thanks! </p> http://stackoverflow.com/questions/1233466/how-to-print-tiff-files-automatically 1 how to print tiff files automatically Yaser Ahmed 2009-08-05T14:04:08Z 2009-11-12T15:06:22Z <p>hi Friends!!</p> <p>im having a folder which will contain only one tiff file at a time, so the moment i receive one i should be able to print it to the default printer, i have a small windows application which is looking for any tiff files in the particular folder i just have to print it to the default printer the moment a tiff file is received, how to do print this, does anyone have idea how to do this using c#.net</p> <p>waiting for replies..</p> http://stackoverflow.com/questions/1720420/visual-studio-why-are-line-numbers-off-by-default 1 Visual Studio - why are line numbers off by default? nailitdown 2009-11-12T07:04:07Z 2009-11-12T07:58:42Z <p>Seems totally backward to me that such an excellent IDE would hide line numbers by default. This seems like an obvious oversight, or poor default.</p> <p>Which means I'm missing something - because in the VS dev team vs Me, I know who has more experience. </p> <p>So what am I missing? Why would I -not- need to see line numbers in code?</p> http://stackoverflow.com/questions/1715186/wpf-how-do-i-default-the-visibility-of-a-databound-textblock 0 WPF - How do I default the Visibility of a databound Textblock? empo 2009-11-11T13:32:53Z 2009-11-11T15:15:44Z <p>Hi</p> <p>This Textblock, defined below, shows when the window first loads because it has no Datacontext (and hence the converter code is not run) until an item has been selected from another control e.g. TreeView.</p> <pre><code>&lt;TextBlock Name="tbkDocumentNotFound" Style="{StaticResource StandardText}" Margin="4,4,2,0" TextWrapping="Wrap" Visibility="{Binding Path=IsDownloaded, Converter={StaticResource docNotFoundVisibilityConverter}, Mode=TwoWay}" Text="The document could not be found."&gt; &lt;/TextBlock&gt; </code></pre> <p>So how do I stop the it from appearing when it has no DataContext?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1697717/cleanr-theme-navigation-default-caption-removal 0 Cleanr Theme Navigation Default Caption Removal Tony 2009-11-08T19:58:36Z 2009-11-08T19:58:36Z <p>Hi all,</p> <p>I have installed wordpress "Cleanr" Theme. I customized it and its working great but just there is a problem of "Pages Caption" in header. I want to remove that caption but probably its coming from 'wp_print_styles' not sure please anybody to help me sort out this problem would be greatly appreciated. Thanks in advance.</p> <p>Regards, Tony.</p> http://stackoverflow.com/questions/1695650/macvim-set-as-default-text-editor-how-to-set-files-to-open-in-a-new-tab-as-oppos 1 MacVim set as default text editor: How to set files to open in a new tab as opposed to a new window? Mike Ton 2009-11-08T07:21:06Z 2009-11-08T10:51:06Z <p>I've set MacVim as my default text editor, and when I double click files it opens up a new window. Is there a way to set it to open up in a new tab instead?</p> http://stackoverflow.com/questions/1687152/stl-vector-and-c-how-to-resize-without-a-default-constructor 0 stl vector and c++: how to .resize without a default constructor? conejoroy 2009-11-06T12:00:19Z 2009-11-06T13:05:27Z <p>how could I tell STL, specifically for the method resize() in vector, to initialize objects with a constructor other than default, and with which parameters?</p> <p>I mean:</p> <pre><code>class something { int a; something (int value); } std::vector&lt;something&gt; many_things; many_things.resize (20); </code></pre> <p>more generally, how could I force STL to use my costructor when it needs to create objects, and pass parameters to that constructor?</p> <p>in my case adding a default constructor is not an option, and I'd prefer not to use an array of pointers to solve the problem.</p> <p>thanks =)!</p> http://stackoverflow.com/questions/1281161/is-there-a-way-to-get-the-default-value-of-a-type-if-the-type-is-only-known-as-sy 6 is there a way to get the default value of a type if the type is only known as System.Type? Patrick Klug 2009-08-15T04:37:17Z 2009-11-06T04:50:16Z <p>If I want a method that returns the default value of a given type and the method is generic I can return a default value like so:</p> <pre><code>public static T GetDefaultValue() { return default(T); } </code></pre> <p>Can I do something similar in case I have the type only as a <code>System.Type</code> object?</p> <pre><code>public static object GetDefaultValue(Type type) { //??? } </code></pre> http://stackoverflow.com/questions/45624/how-do-i-change-the-default-author-for-accessing-a-local-svn-repository 1 How do I change the default author for accessing a local SVN repository? Michal Sznajder 2008-09-05T12:17:17Z 2009-11-04T16:52:36Z <p>I use TortoiseSVN to access file based local repo. In all my commits an author is my windows login name. Is it possible to use different name?</p> <p>I know how to change author after commit but how to change before? Installing apache/svnserver is not an option. </p> http://stackoverflow.com/questions/1673518/changing-the-default-testrunner-in-eclipse 0 Changing the default TestRunner in Eclipse. Vitalij 2009-11-04T12:35:00Z 2009-11-04T13:06:22Z <p>All tests should be run with jUnit3, if i run a non-configured Test, it tries to use the default-TestRunner (jUnit4).</p> <p>So, i have to go into the run/debug configuration, change the TestRunner to "jUnit3" and run it again.</p> <p>On EVERY Test. This just disturbs the workflow.</p> <p>So, is there an option to REMOVE jUnit4 as possible TestRunner, or even better, change the Default TestRunner to jUnit3 ?</p> <p>Thanks in Advance,</p> http://stackoverflow.com/questions/1652019/mysql-default-keyword-usage-errors 0 MySQL Default Keyword usage errors Rachel 2009-10-30T20:06:59Z 2009-10-30T20:20:56Z <p>When am trying to set default date and default sysdate am getting following errors:</p> <p><strong>MySQL Query:</strong></p> <pre><code>create table product_offer_type(object_id INT(19), snapshot_id INT(19), PRIMARY KEY(object_id,snapshot_id), enum_value VARCHAR(64) NOT NULL, external_name VARCHAR(64) NOT NULL, description VARCHAR(255), business_validation INT(1), valid_for_start_date_time DATE DEFAULT '1900-01-10', valid_for_end_date_time DATE DEFAULT '4712-01-01', mutation_date_time DATE SYSDATE, mutation_user VARCHAR(32) DEFAULT 'USER'); </code></pre> <p><strong>Error Message:</strong></p> <pre><code>ERROR 1064 (42000): 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 'SYSDATE, mutation_user VARCHAR(32) DEFAULT 'USER')' at line 1 </code></pre> <p>Any pointer's would be highly appreciated.</p> http://stackoverflow.com/questions/938957/link-button-on-the-page-and-set-it-as-default-button-work-fine-in-ie-but-not-in 0 Link Button on the page and set it as default button, work fine in IE but not in Mozila Muhammad Akhtar 2009-06-02T11:13:55Z 2009-10-30T07:16:42Z <p>I have a <strong>link button</strong> on the page and set it as default button, It works fine in IE but not working in Mozila Firefox. Does anybody have any clue how to resolve this issue?</p> http://stackoverflow.com/questions/1634177/default-arguments-in-constructor 1 default arguments in constructor Asad Khan 2009-10-27T23:03:17Z 2009-10-27T23:10:44Z <p>Can I use default arguments in a constructor like this maybe</p> <p><code>Soldier(int entyID, int hlth = 100, int exp = 10, string nme) : entityID(entyID = globalID++), health(hlth), experience(exp), name(nme = SelectRandomName(exp)) { }</code></p> <p>I want for example exp = 10 by default but be able to override this value if I supply it in the constructor otherwise it should use the default.</p> <p>How can I do this, I know my approach does not work....</p> <p>If I supply any value in the initialization list no matter whatever I supply in constructor gets overwritten ofcourse on the other hand whenever I supply a value in constructor then why do I need a default value in the first place as every time I am supplying a value for object initiation...?</p> <p>Should I use different overloaded constructors or do you people have any other ideas....?</p> http://stackoverflow.com/questions/1625880/default-picker-value-iphone 0 Default Picker Value iphone Jeff 2009-10-26T16:48:52Z 2009-10-26T20:04:30Z <p>Is there a way to set a default value for a picker? I save the last selected row from all the pickers and I want to be able to have the pickers load those saved rows at start up. As of now I have found this code:</p> <pre><code>[settingsPagePicker selectRow:3 inComponent:0 animated:YES]; </code></pre> <p>It works but only when the user taps the picker. I need it to work when the app is first loaded. If I put this code at viewDidLoad the app will crash. Anyone know where the proper place to put this in my code to make it work?</p> <p>Thank you for your time!</p> http://stackoverflow.com/questions/584556/how-to-use-default-column-value-from-database-in-entity-framework 2 How to use Default column value from DataBase in Entity Framework? Mak 2009-02-25T03:02:59Z 2009-10-25T04:00:04Z <p>I have a Date column in table which has default value or binding as getutcdate(). I want to use this in entity framework.On generating EDM I was able to find "Default Value " property at column level but I think it is for hardcoded value. </p> <p>Please let me know how can I use default value specified in database.</p> <p>Thanks, Mak </p> http://stackoverflow.com/questions/1434053/bug-in-the-dropdown-control 1 Bug in the dropdown control? SLC 2009-09-16T16:26:15Z 2009-10-24T16:58:28Z <p>I have a dropdown control, with some values I added in using the designer.</p> <p>For example, "ANY", "Male", "Female".</p> <p>The value for Male is set to M</p> <p>The value for Female is set to F</p> <p>The value for ANY is blank.</p> <p>However, although it seems to be blank, I spent hours trying to debug a parse error...</p> <p>And to my horror I discovered it wasn't blank at all! The value was set to "ANY".</p> <p>I want the value to be blank, because my SQL query checks if the string is blank (or null).</p> <p>My program breaks when it tries to put "ANY" into a varchar(1) for obvious reasons.</p> <p>Am I doing something wrong? How can I make the default value blank?</p>