
Search In
SQL Server sysobjects Table contains one row for each object created. In other words, it has a row for every constraint, default, log, stored procedure etc in the database.The two columns most useful in this table are sysobjects.name and sysobjects.
JavaScript Array concat() method : The concat() method is used to join or combine the two or more arrays. It doesn't change the original array. It return the new array having all the elements of combined arrays.
Syntax of array concat() method :
a
Barcode is the most important part of point dale module its indicate the unique number of any product in stocks. So you will need the following kind of python code declaration in your .py file:
from openerp.osv import fields, orm
from openerp.tools
The crypt() function in PHP returns a hashed value. It uses the DES, Blowfish, or MD5 algorithms.
It returns the first two characters of the output as salt in DES-based crypt(). As salt parameter is optional but crypt() function gives a weak passwor
Hello reader's I have created a conversion format that can convert array in tree structure.
In this code i use while loop but you can either use the recursive also. So here is the function as below:-
function treeze( &$a, $parent_key, $children_
How to swap two variables in one line in C?
C program to swap two variables in single line
#include <stdio.h>
void main()
{
int a = 5;
int b = 10;
(a ^= b), (b ^= a), (a ^= b);
printf("Swapped values of a and b are %d %d",a,
What Is The Risk In Software Terminology ??
We can determined to the risk as the possibility of an occurrence, accident, warnings, position, condition or situation happening and it’s unwanted outcomes. This is a main cause of the outcomes in negativ
Many times in application development using C# it is required to to post some data to a specific URL. In this article I will show two options for implementing this :
1) Using WebClient
string url = "http://www.url.com/post.aspx";
string params =
How to swap two variables in one line in Java?
// Java program to swap two variables in single line
class Demo
{
public static void main (String[] args)
{
int a = 6, b = 11;
a = a ^ b ^ (b = a);
System.out.println("After Swa
php_uname function is used in php for getting information about the operating system ,host name, release name, version information and machine type.This method is used in php for returning a description of the current operating system in which you ar
