
Search In
login as dba
SYNTAX-- imp userid/password@database_name file='path of dmp file' full=y
e.g- imp system/manager@orcl file='c:\dabasefile.dmp' full=y
Drivers enables the developers to build database applications in their language of choice. Drivers available in Mysql:
PHP Driver:The MySQL native driver for PHP is a replacement for the MySQL Client Library for the PHP script language.
JDBC Drive
Hello Readers,
If you want a concert a video file from one a define format to other format, you should to use following command:
ffmpeg -i INPUTVIDEONAME -c:v libx264 -profile:v baseline -c:a aac -strict experimental -ar 44100 -ac 2 -b:a 128k -
To get directory list in PHP we have define a function get_dirlist() in which we are passing a parameter which is the name of the directory. Inside this function we are executing the ls command with the help of exec() function. Using this we will get
SWIFT
Swift is a very powerful and simple programming language which is used for creating the iOS applications.Swift is a language which is designed to work with Apple's Cococa and Objective-C. The advantage of this language is that it is one the m
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,
Many times in application development using C# it is required to get the directory from a file's full path.
Let us say we need to find the directory for the following path:
string path = @"C:\Directory\File.txt";
If the requirement is to get t
Many times in application development using C# it is required to create a folder if it does not exist.
We can use the below method of C# to accomplish the same:
System.IO.Directory.CreateDirectory(folderPath);
Following is the code for creation of
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 =
Program to Reverse an array without affecting special characters in C++
using namespace std;
bool isAlphabet(char x) // Function returns true if an alphabet
{
return ( (x >= 'A' && x <= 'Z') ||
(x >= 'a' &&am