Displaying 7 results from an estimated 7 matches for "myview".
Did you mean:
yview
1997 Jul 24
4
Samba and ClearCase
We're trying to use samba to let our PC's mount view extended pathnames used
by clearcase but they show up as empty. If anyone's used samba and Clear
Case (by Pure Atria) and gotten it to work I'd love to hear how.
thanks,
Bill
--
---------------------------------------------------------------------
William H. Schwartz email: whschwartz@mmm.com
System
2005 May 08
3
sqlite, views, incorrect data types?
This has been driving me crazy for a few days now. I am using sqlite3
however I have also found this to be the case with 2.8.15:
I have data types text or integer on every column of every table in
the database. Now i know sqlite doesnt care much about data types,
but I believe rails does (correct me if im wrong). On pages that
query a table, everything is perfect.
BUT when I use a view
2005 Jun 27
9
FK constraints overrated?
Hello folks,
I use to think that a relational databases without foreign keys
constraints enforced strictly by the RDBMS were no good, piece of crap,
data junk.
However, I''ve also learned the hard way that FKs constraints imposes
serious difficulties when moving data around, specially between
different DBs, or for loading test data or for upgrading DBs schemas, or
for porting DBs
2006 Sep 20
3
Can this 1337 PostgreSQL Subquery Union be done in AR?
Just wondering if it''s possible, without resorting to find_by_sql.
select id, title, datetime, type from (
select id, title, added as datetime, ''items'' as type from items
union
select id, headline as title, datetime, ''news'' as type from news
) as items order by datetime desc limit 50;
I''m also curious if it''s possible in MySQL.
Joe
2006 Apr 28
4
can someone help DRY a noob? thanks...
hi all
i''m trying to pass a variable name right round the block and need a hand
to ease my aching brain.
##in my sidebar i have
<li><%= SidebarItem(''catalogue'') %></li>
<li><%= SidebarItem(''provenance'') %></li>
<li><%= SidebarItem(''status'') %></li>
##linked to a
2006 Feb 06
6
.rjs template doesn''t load?
Skipped content of type multipart/alternative-------------- next part --------------
A non-text attachment was scrubbed...
Name: PGP.sig
Type: application/pgp-signature
Size: 194 bytes
Desc: This is a digitally signed message part
Url : http://wrath.rubyonrails.org/pipermail/rails/attachments/20060206/cf123b71/PGP.bin
2011 Feb 17
16
Unindent ERB output
Hi all,
I''d like to unindent a block of ERB specifically to combat the extra
spacing being added to content inside <textarea> by the browser. Is
there such a feature in ERB?
I shall denote indentation with underscores in the pseudo code example
below.
Thanks in advance,
Khoan.
myview.erb:
<html ...>
__<%= render ''form'' %>
</html>
_form.erb:
<% form_for ... do %>
__<%= render ''unindented'' %>
<% end %>
_unindented.erb:
<textarea><%= ''this is unindented'' %></textarea>...