Hi folks,
i am trying to execute this query:
declare @tablename varchar(50)
set @tablename = 'test'
select * from @tablename
This produces the following error:
Msg 1087, Level 16, State 1, Line 5
Must declare the table variable "@tablename".
What's the right way to have table name populated dynamically?
TIA
...
somevar := apple
export somevar
update := $(shell echo "v=$$somevar")
all:
@echo $(update)
I was hoping to apple as output of command, however it's empty, which makes me think export and := variable expansion taking place on different phases. how to overcome this?
...
Basically, what I want to do is create a class called Variables that uses sessions to store everything in it, allowing me to quickly get and store data that needs to be used throughout the entire site without working directly with sessions.
Right now, my code looks like this:
<?php
class Variables
{
public function ...
Hi everyone,
I have a three-table system: Companies, Customers, and Matches. The matches include, for example, private notes that each party makes about the other and some options they can set regarding the other.
I have two sets of views centered around Companies and Customers for each party to look at the other and modify their notes...
Hi,
I'm learning CodeDom scripting, I started with http://www.c-sharpcorner.com/uploadfile/mgold/codedomcalculator08082005003253am/codedomcalculator.aspx
Now I'd like to allow script modify the project's form (for learning purposes only).
I suppose I need to create new field for a class I'm generating which refers "this". However I have...
Is there any way to convert a variable from string to number?
For example, I have
var str = "1";
Can I change it to
var str = 1;
...
Hello ,
I went through local variables and class variables concept.
But I had stuck at a doubt
" Why is it so that we cannot declare local variables as static " ?
For e.g
Suppose we have a play( ) function :
void play( )
{
static int i=5;
System.out.println(i);
}
It gives me error in eclipse : Illegal modifier for par...
Hi guys,
Quick question. Here is my code:
#routes
map.resources :customers, :has_many => [:addresses, :matchings]
map.connect ":controller/:action/:id"
#url path:
http://127.0.0.1:3000/customers/index/3
#customers controller
def index
@customer = Customer.find(params[:id])
end
#customers view/index.html.erb
...
<%= @customer.name ...
Hi,
For some reason I've having problems reading this session variable within an ajax document, I've got this inside online.php:
`
session_start();
if (isset($_SESSION['username']))
{
$username = $_SESSION['username'];
}
`
For some Reason this is not setting username even when the session var is being used on the host page, i ca...
I created a page using the MVC structure called 'sections' ( view is located in the app/views/sections folder, model in the model folder and the controller in the controller folder) when i request the variable $test, it works fine without any errors..
When i want to request this variable in my home.ctp, it provides me with an error, sa...
anyone know how to evalute a string twice in powershell?
from example
$l1 = yes
$l2 = no
for (i=0;i -lt 2; i++)
{
echo $1$i
}
...
Hi,
I am trying to create a Rediobuttonlist:
In the options' text I want to insert a name of organisation which is logged in. I store the name in a Session variable.
So if "A" is loggin in I want them to see:
no longer a member of A but option1
no longer a member of A but option2
no longer a member of A but option3
If "B" is...
I'm working on a web application, using the CAKEPHP framework. Herefor i need to request one variable on multiple pages (all pages have different controllers). it is oubvious that i get a error on several pages, since the variable isn't declared in all the different controllers.
Is there a workaround for this? i've already tried the ap...
I am working on an Asset Database problem using PHP / MySQL.
In this script I would like to search my assets by an asset id and have it return all related fields.
First I query the database asset table and find the asset's type. Then depending on the type I run 1 of 3 queries.
<?php
//make database connect
mysql_connect("localhost...
I am trying to create a loop statement for some of my code and am wondering how I can put a variable within another variable.
For example:
<?php
$j=1;
while ($j <= 9): {
$f$jfname = $_SESSION['F$jFirstName'];
$f$jmi = $_SESSION['F$jMI'];
$f$jlname = $_SESSION['F$jLastName'];
}
$j++; endwhile;
?>
Where the goal is to have the j va...
I'm having some difficulties with this problem.
The main idea is, I initialized a variable of class type B in class A, class A.h has the variable Z declared as public, like B *Z;
In class A.cpp, I initialized it as Z = new B();
Now, I want to access that variable from class C and I'm unable to do so. C.h includes A.h and B.h
Here goe...
Large part of squeak is implemented using squeak itself. I am curious to know if pseudo variables such as self or true are also implemented using squeak. If the answer is yes, where the implementation located?
Specifically, assume that I want to add new subclass of "Boolean" called "Other" which will represent a third option: neither tr...
So I have two classes like this:
class foo {
/* code here */
}
$foo = new foo();
class bar {
global $foo;
public function bar () {
echo $foo->something();
}
}
I want to access the methods of foo inside all methods bar, without declaring it in each method inside bar, like this:
class bar {
public function b...
int * ref () {
int tmp = 100;
return &tmp;
}
int main () {
int * a = ref();
cout << *a << endl;
}
I know the function ref () is allocated stack space. It will get destroyed as soon as the function exits. So the complier will give warning information.
But my question is why the returning result is still correct.
...
Hi everyone!
i have this code.
{if $loginUrl}
{literal}
<script type="text/javascript">
var newwindow;
var intId;
function login() {
var screenX = typeof window.screenX != 'undefined' ? window.screenX : window.screenLeft,
screenY = typeof window.screenY != 'undefined' ? window.screenY : window.sc...